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