Properties
| Name | Type | Description |
|---|---|---|
| identity | array | |
| name | string | JMS server name |
| messagesMaximum | integer | Maximum number of messages |
| bytesMaximum | integer | Maximum bytes |
| targets | array | |
| persistentStore | array | Persistent store reference as identity path |
| links | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/JMSServer",
"title": "JMSServer",
"type": "object",
"properties": {
"identity": {
"type": "array",
"items": {
"type": "string"
}
},
"name": {
"type": "string",
"description": "JMS server name"
},
"messagesMaximum": {
"type": "integer",
"description": "Maximum number of messages"
},
"bytesMaximum": {
"type": "integer",
"description": "Maximum bytes"
},
"targets": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Identity"
}
},
"persistentStore": {
"type": "array",
"items": {
"type": "string"
},
"description": "Persistent store reference as identity path"
},
"links": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Link"
}
}
}
}