segment · Schema
TrackingPlanRule
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The event name this rule applies to. |
| description | string | A description of the event. |
| rules | object | The JSON Schema rules for the event properties. |
| version | number | The version of the rule. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TrackingPlanRule",
"title": "TrackingPlanRule",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The event name this rule applies to."
},
"description": {
"type": "string",
"description": "A description of the event."
},
"rules": {
"type": "object",
"description": "The JSON Schema rules for the event properties.",
"additionalProperties": true
},
"version": {
"type": "number",
"description": "The version of the rule."
}
}
}