{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-lex/refs/heads/main/json-schema/amazon-lex-bot-schema.json", "title": "Bot", "description": "An Amazon Lex V2 bot for building conversational interfaces.", "type": "object", "properties": { "botId": { "type": "string", "description": "The unique identifier assigned to the bot.", "example": "ABCDEF123456" }, "botName": { "type": "string", "description": "The name specified for the bot.", "example": "CustomerServiceBot" }, "botStatus": { "type": "string", "description": "The current status of the bot.", "example": "Available", "enum": [ "Creating", "Available", "Inactive", "Deleting", "Failed", "Versioning", "Importing", "Updating" ] }, "description": { "type": "string", "description": "The description of the bot." }, "roleArn": { "type": "string", "description": "The Amazon Resource Name (ARN) of the role assumed by the bot." }, "creationDateTime": { "type": "string", "description": "A timestamp of the date and time the bot was created.", "format": "date-time" }, "lastUpdatedDateTime": { "type": "string", "description": "A timestamp of the date and time the bot was last updated.", "format": "date-time" } } }