{
  "$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"
    }
  }
}
