Schema subscription-response-message.json
Show original (referenced schemas with $ref)
{
"$schema": "http://json-schema.org/draft-04/schema#",
"allOf": [
{ },
{
"properties": {
"messageType": {
"description": "Protocol message type",
"enum": [
4
],
"type": "integer"
},
"subscriptions": {
"description": "Array of OIDs which have successfully been added to the subscription list.",
"items": {
"type": "integer"
},
"type": "array"
}
},
"required": [
"subscriptions",
"messageType"
],
"type": "object"
}
],
"description": "Subscription response protocol message structure",
"title": "Subscription response protocol message",
"type": "object"
}