{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://littlescreen.online/littlescreen-reference/schema/fallacy-card.schema.json",
  "title": "LittleScreen Fallacy Card",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "id",
    "name",
    "dangerLevel",
    "definition",
    "simpleExample",
    "vrExample",
    "response"
  ],
  "properties": {
    "id": {
      "type": "string",
      "pattern": "^[a-z0-9]+(?:-[a-z0-9]+)*$"
    },
    "name": {
      "type": "string",
      "minLength": 3
    },
    "dangerLevel": {
      "type": "string",
      "enum": ["Low", "Medium", "High"]
    },
    "definition": {
      "type": "string",
      "minLength": 12
    },
    "simpleExample": {
      "type": "string",
      "minLength": 8
    },
    "vrExample": {
      "type": "string",
      "minLength": 8
    },
    "response": {
      "type": "string",
      "minLength": 8
    }
  }
}
