LICENSING_RECORDS
Description
This table stores the license counts and the frequency at which these counts should be pushed to the Platform.
Columns
| Column Name | Data Type | Description |
| id | BIGINT | A unique identifier for each record in the table. This is the primary key and is automatically incremented. |
| featureName | VARCHAR(255) | The name of the feature for which the license count is being submitted (e.g., "Detect_UAT_Entitlement"). |
| count | INT | The numerical value of the license count that was submitted to the Platform. |
| pushedStatus | VARCHAR(50) | Indicates the status of the license count submission to the Platform. Possible values include 'SUCCESS' if the push was successful, or 'FAILED' if it encountered an error. |
| licenseStatus | VARCHAR(50) | Provides additional status information returned by the Platform API regarding the license itself (e.g., 'VALID', 'INVALID', 'EXPIRED'). |
| countTimestamp | timestamp | The timestamp indicating when the license count was calculated within the Detect system before being submitted. |
Primary Key
- ID