Properties
| Name | Type | Description |
|---|---|---|
| Name | string | |
| Query | string | |
| ApiVersion | number | |
| IsActive | boolean | |
| NotifyForFields | string | |
| NotifyForOperationCreate | boolean | |
| NotifyForOperationUpdate | boolean | |
| NotifyForOperationDelete | boolean | |
| NotifyForOperationUndelete | boolean | |
| Description | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PushTopicInput",
"title": "PushTopicInput",
"type": "object",
"properties": {
"Name": {
"type": "string",
"maxLength": 25
},
"Query": {
"type": "string"
},
"ApiVersion": {
"type": "number"
},
"IsActive": {
"type": "boolean"
},
"NotifyForFields": {
"type": "string",
"enum": [
"Select",
"Where",
"Referenced",
"All"
]
},
"NotifyForOperationCreate": {
"type": "boolean"
},
"NotifyForOperationUpdate": {
"type": "boolean"
},
"NotifyForOperationDelete": {
"type": "boolean"
},
"NotifyForOperationUndelete": {
"type": "boolean"
},
"Description": {
"type": "string"
}
}
}