Newer
Older
dmpopidor / config / schemas / main / Transitional-textarea.json
@Quentin Sonrel Quentin Sonrel on 8 Jul 2020 446 bytes Added schemas
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "description": "A textarea is aimed at receiving answers where Response format is a textarea",
  "type":"object",
  "properties": {
      "content":{
          "label": "Libellé de la question du template",
          "description": "The content of a text area is text with HTML formatting tags, excluding 'body' tags",
          "type": "string"
      }
  },
  "required": ["content"]
}