{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ApplicationCommandStringOption",
"title": "ApplicationCommandStringOption",
"type": "object",
"properties": {
"type": {
"type": "integer",
"enum": [
3
],
"allOf": [
{
"$ref": "#/components/schemas/ApplicationCommandOptionType"
}
],
"format": "int32"
},
"name": {
"type": "string",
"minLength": 1,
"maxLength": 32
},
"name_localizations": {
"type": [
"object",
"null"
],
"additionalProperties": {
"type": "string",
"minLength": 1,
"maxLength": 32
},
"maxProperties": 34
},
"description": {
"type": "string",
"minLength": 1,
"maxLength": 100
},
"description_localizations": {
"type": [
"object",
"null"
],
"additionalProperties": {
"type": "string",
"minLength": 1,
"maxLength": 100
},
"maxProperties": 34
},
"required": {
"type": [
"boolean",
"null"
]
},
"autocomplete": {
"type": [
"boolean",
"null"
]
},
"min_length": {
"type": [
"integer",
"null"
],
"minimum": 0,
"maximum": 6000
},
"max_length": {
"type": [
"integer",
"null"
],
"minimum": 1,
"maximum": 6000
},
"choices": {
"type": [
"array",
"null"
],
"items": {
"$ref": "#/components/schemas/ApplicationCommandOptionStringChoice"
},
"maxItems": 25
}
},
"required": [
"type",
"name",
"description"
]
}