IBM WebSphere · Schema
Topic
Application ServerCloud NativeEnterprise JavaJ2EEMicroservicesMiddleware
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Administrative topic object name |
| topicString | string | Topic string |
| description | string | |
| type | string | |
| durableSubscriptions | string | |
| publish | string | |
| subscribe | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Topic",
"title": "Topic",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Administrative topic object name",
"example": "Example Title"
},
"topicString": {
"type": "string",
"description": "Topic string",
"example": "example_value"
},
"description": {
"type": "string",
"example": "A sample description."
},
"type": {
"type": "string",
"enum": [
"local",
"cluster"
],
"example": "local"
},
"durableSubscriptions": {
"type": "string",
"enum": [
"allowed",
"inhibited"
],
"example": "allowed"
},
"publish": {
"type": "string",
"enum": [
"allowed",
"inhibited"
],
"example": "allowed"
},
"subscribe": {
"type": "string",
"enum": [
"allowed",
"inhibited"
],
"example": "allowed"
}
}
}