@alexa/ask-expressions-spec
Version:
The JSON Schema specification for the Alexa Skills Kit Intermediate Representation (ASKIR).
25 lines (24 loc) • 758 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://amazonalexa.com/ask/2020/12/Correction",
"title": "Correction",
"description": "Represents a Correction.",
"type": "object",
"additionalProperties": false,
"required": ["kind", "actual", "expected"],
"properties": {
"kind": {
"const": "Correction",
"title": "kind",
"description": "The expression's identifier."
},
"actual": {
"description": "Block of expressions for actual dialog flow.",
"$ref": "https://amazonalexa.com/ask/2020/12/CorrectionBlock"
},
"expected": {
"description": "Block of expressions for expected dialog flow.",
"$ref": "https://amazonalexa.com/ask/2020/12/CorrectionBlock"
}
}
}