{
  "$id": "https://dnd-gm.local/schemas/host-preferences.schema.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "id",
    "language",
    "genre",
    "tone",
    "premise",
    "partySize",
    "durationMinutes",
    "contentBoundaries",
    "desiredElements"
  ],
  "properties": {
    "id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    },
    "language": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    },
    "genre": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    },
    "tone": {
      "type": "string",
      "minLength": 1,
      "maxLength": 128
    },
    "premise": {
      "type": "string",
      "minLength": 12,
      "maxLength": 2000
    },
    "partySize": {
      "type": "integer",
      "minimum": 1,
      "maximum": 8
    },
    "durationMinutes": {
      "type": "integer",
      "minimum": 15,
      "maximum": 360
    },
    "contentBoundaries": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "uniqueItems": true
    },
    "desiredElements": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "uniqueItems": true
    }
  }
}
