Properties
| Name | Type | Description |
|---|---|---|
| created_at | string | |
| description | string | |
| has_subchannels | boolean | |
| id | string | |
| is_active | boolean | |
| is_private | boolean | |
| members | object | |
| name | string | |
| parent_id | string | |
| raw | object | |
| updated_at | string | |
| web_url | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/MessagingChannel",
"title": "MessagingChannel",
"properties": {
"created_at": {
"format": "date-time",
"type": "string"
},
"description": {
"type": "string"
},
"has_subchannels": {
"type": "boolean"
},
"id": {
"type": "string"
},
"is_active": {
"type": "boolean"
},
"is_private": {
"type": "boolean"
},
"members": {
"$ref": "#/components/schemas/property_MessagingChannel_members"
},
"name": {
"type": "string"
},
"parent_id": {
"type": "string"
},
"raw": {
"additionalProperties": true,
"type": "object"
},
"updated_at": {
"format": "date-time",
"type": "string"
},
"web_url": {
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}