Gainsight · Schema
Feature
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Feature identifier |
| name | string | Feature name |
| type | string | Feature type |
| url | string | URL pattern for the feature |
| totalUserCount | integer | Total users who used this feature |
| totalEventCount | integer | Total usage events for this feature |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Feature",
"title": "Feature",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Feature identifier"
},
"name": {
"type": "string",
"description": "Feature name"
},
"type": {
"type": "string",
"description": "Feature type"
},
"url": {
"type": "string",
"description": "URL pattern for the feature"
},
"totalUserCount": {
"type": "integer",
"description": "Total users who used this feature"
},
"totalEventCount": {
"type": "integer",
"description": "Total usage events for this feature"
}
}
}