{
  "$id": "http://gov.uk/schema/v1.0.0/textarea",
  "_name": "textarea",
  "title": "Textarea",
  "description": "Let users enter text that can be longer than a single line",
  "type": "object",
  "properties": {
    "_type": {
      "const": "textarea"
    },
    "maxwords": {
      "type": "number",
      "title": "Maximum words",
      "description": "Set a word limit",
      "category": [
        "userinput"
      ]
    },
    "threshold": {
      "type": "number",
      "title": "Threshold percentage",
      "description": "Display the message about maximum length or words after a user has entered a certain amount",
      "category": [
        "userinput"
      ]
    }
  },
  "allOf": [
    {
      "$ref": "http://gov.uk/schema/v1.0.0/definition/field"
    },
    {
      "$ref": "http://gov.uk/schema/v1.0.0/validations#/definitions/stringBundle"
    }
  ]
}
