{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ApplicationCommandSubcommandOptionResponse", "title": "ApplicationCommandSubcommandOptionResponse", "type": "object", "properties": { "type": { "type": "integer", "enum": [ 1 ], "allOf": [ { "$ref": "#/components/schemas/ApplicationCommandOptionType" } ], "format": "int32" }, "name": { "type": "string" }, "name_localized": { "type": [ "string", "null" ] }, "name_localizations": { "type": [ "object", "null" ], "additionalProperties": { "type": "string" } }, "description": { "type": "string" }, "description_localized": { "type": [ "string", "null" ] }, "description_localizations": { "type": [ "object", "null" ], "additionalProperties": { "type": "string" } }, "required": { "type": [ "boolean", "null" ] }, "options": { "type": [ "array", "null" ], "items": { "oneOf": [ { "$ref": "#/components/schemas/ApplicationCommandAttachmentOptionResponse" }, { "$ref": "#/components/schemas/ApplicationCommandBooleanOptionResponse" }, { "$ref": "#/components/schemas/ApplicationCommandChannelOptionResponse" }, { "$ref": "#/components/schemas/ApplicationCommandIntegerOptionResponse" }, { "$ref": "#/components/schemas/ApplicationCommandMentionableOptionResponse" }, { "$ref": "#/components/schemas/ApplicationCommandNumberOptionResponse" }, { "$ref": "#/components/schemas/ApplicationCommandRoleOptionResponse" }, { "$ref": "#/components/schemas/ApplicationCommandStringOptionResponse" }, { "$ref": "#/components/schemas/ApplicationCommandUserOptionResponse" } ] } } }, "required": [ "type", "name", "description" ] }