Properties
| Name | Type | Description |
|---|---|---|
| token | string | The unique token identifier for the Segment. |
| title | string | The title of the Segment. |
| filter | string | The VQL filter expression for the Segment. |
| priority | integer | The priority order of the Segment. |
| workspace_token | string | The token of the Workspace this Segment belongs to. |
| created_at | string | The date and time the Segment was created. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Segment",
"type": "object",
"properties": {
"token": {
"type": "string",
"description": "The unique token identifier for the Segment."
},
"title": {
"type": "string",
"description": "The title of the Segment."
},
"filter": {
"type": "string",
"description": "The VQL filter expression for the Segment."
},
"priority": {
"type": "integer",
"description": "The priority order of the Segment."
},
"workspace_token": {
"type": "string",
"description": "The token of the Workspace this Segment belongs to."
},
"created_at": {
"type": "string",
"description": "The date and time the Segment was created."
}
}
}