@alexa/ask-expressions-spec
Version:
The JSON Schema specification for the Alexa Skills Kit Intermediate Representation (ASKIR).
29 lines (28 loc) • 837 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://amazonalexa.com/ask/2020/12/EnumItemDeclaration",
"title": "EnumItem",
"description": "Represents an item in an enum type declaration.",
"type": "object",
"additionalProperties": false,
"required": ["kind", "name"],
"properties": {
"kind": {
"const": "EnumItemDeclaration",
"title": "kind",
"description": "The expression's identifier."
},
"name": {
"description": "The name of the enum item.",
"$ref": "https://amazonalexa.com/ask/2020/12/Name",
"examples": ["en_US", "Monday"]
},
"annotations": {
"type": "array",
"items": {
"$ref": "https://amazonalexa.com/ask/2020/12/Call",
"description": "call data structures to annotate this enum item."
}
}
}
}