Properties
| Name | Type | Description |
|---|---|---|
| id | object | |
| title | string | |
| description | string | |
| emoji | object | |
| role_ids | array | |
| channel_ids | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/OnboardingPromptOptionResponse",
"title": "OnboardingPromptOptionResponse",
"type": "object",
"properties": {
"id": {
"$ref": "#/components/schemas/SnowflakeType"
},
"title": {
"type": "string"
},
"description": {
"type": "string"
},
"emoji": {
"$ref": "#/components/schemas/SettingsEmojiResponse"
},
"role_ids": {
"type": "array",
"items": {
"$ref": "#/components/schemas/SnowflakeType"
},
"uniqueItems": true
},
"channel_ids": {
"type": "array",
"items": {
"$ref": "#/components/schemas/SnowflakeType"
},
"uniqueItems": true
}
},
"required": [
"id",
"title",
"description",
"emoji",
"role_ids",
"channel_ids"
]
}