Adobe Launch · Schema
RuleAttributes
Data CollectionEdge NetworkEvent ForwardingMarketing TechnologyTag Management
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The human-readable name of the rule. |
| enabled | boolean | Whether the rule is enabled. |
| published | boolean | Whether the rule has been published. |
| dirty | boolean | Whether the rule has unpublished changes. |
| revision_number | integer | The current revision number. |
| created_at | string | |
| updated_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "RuleAttributes",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The human-readable name of the rule."
},
"enabled": {
"type": "boolean",
"description": "Whether the rule is enabled."
},
"published": {
"type": "boolean",
"description": "Whether the rule has been published."
},
"dirty": {
"type": "boolean",
"description": "Whether the rule has unpublished changes."
},
"revision_number": {
"type": "integer",
"description": "The current revision number."
},
"created_at": {
"type": "string"
},
"updated_at": {
"type": "string"
}
}
}