@alexa/ask-expressions-spec
Version:
The JSON Schema specification for the Alexa Skills Kit Intermediate Representation (ASKIR).
31 lines (30 loc) • 876 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://amazonalexa.com/ask/2020/12/Sample",
"title": "Sample",
"description": "Represents a sample.",
"type": "object",
"additionalProperties": false,
"required": ["kind", "expressions"],
"properties": {
"kind": {
"const": "Sample",
"title": "kind",
"description": "The expression's identifier."
},
"expressions": {
"$ref": "https://amazonalexa.com/ask/2020/12/SampleBlock"
},
"type": {
"description": "The return type of the last expression of this Sample.",
"$ref": "https://amazonalexa.com/ask/2020/12/TypeReference"
},
"annotations": {
"type": "array",
"items": {
"$ref": "https://amazonalexa.com/ask/2020/12/Call",
"description": "call data structures to annotate this sample."
}
}
}
}