{
  "title": "input",
  "type": "object",
  "$schema": "http://json-schema.org/draft-04/schema",
  "description": "The input objects specified by the [definitionEditor](definitionEditor.md).",
  "properties": {
    "hint": {
      "type": "string",
      "description": "A string value representing a hint for the input."
    },
    "parameters": {
      "type": "array",
      "description": "An array of parameter objects.",
      "items": {
        "type": "object",
        "$ref": "parameter_schema.json"
      }
    },
    "prompt": {
      "type": "string",
      "description": "A string value representing the prompt for the input."
    }
  },
  "additionalProperties": false
}
