{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ApplicationCommandIntegerOptionResponse", "title": "ApplicationCommandIntegerOptionResponse", "type": "object", "properties": { "type": { "type": "integer", "enum": [ 4 ], "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" ] }, "autocomplete": { "type": [ "boolean", "null" ] }, "choices": { "type": [ "array", "null" ], "items": { "$ref": "#/components/schemas/ApplicationCommandOptionIntegerChoiceResponse" } }, "min_value": { "oneOf": [ { "type": "null" }, { "$ref": "#/components/schemas/Int53Type" } ] }, "max_value": { "oneOf": [ { "type": "null" }, { "$ref": "#/components/schemas/Int53Type" } ] } }, "required": [ "type", "name", "description" ] }