Properties
| Name | Type | Description |
|---|---|---|
| Id | string | |
| Name | string | The channel name, which must start with /u/ (e.g., /u/MyChannel) |
| Description | stringnull | |
| IsDynamic | boolean | Whether the channel was created dynamically via CometD subscription |
| CreatedDate | string | |
| LastModifiedDate | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/StreamingChannel",
"title": "StreamingChannel",
"type": "object",
"properties": {
"Id": {
"type": "string"
},
"Name": {
"type": "string",
"description": "The channel name, which must start with /u/ (e.g., /u/MyChannel)"
},
"Description": {
"type": [
"string",
"null"
]
},
"IsDynamic": {
"type": "boolean",
"description": "Whether the channel was created dynamically via CometD subscription"
},
"CreatedDate": {
"type": "string",
"format": "date-time"
},
"LastModifiedDate": {
"type": "string",
"format": "date-time"
}
}
}