{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://deckyard.app/schema/v3/slide-types/poll-slide.schema.json",
  "title": "poll-slide slide content",
  "type": "object",
  "properties": {
    "question": {
      "type": "string",
      "maxLength": 200,
      "title": "Question"
    },
    "option1": {
      "type": "string",
      "maxLength": 120,
      "title": "Answer A"
    },
    "option2": {
      "type": "string",
      "maxLength": 120,
      "title": "Answer B"
    },
    "option3": {
      "type": "string",
      "maxLength": 120,
      "title": "Answer C"
    },
    "option4": {
      "type": "string",
      "maxLength": 120,
      "title": "Answer D"
    },
    "background": {
      "type": "string",
      "title": "Background"
    },
    "onClose": {
      "type": "string",
      "enum": [
        "stay",
        "next",
        "goto",
        ""
      ],
      "title": "When closed"
    },
    "onCloseTarget": {
      "type": "string",
      "maxLength": 100,
      "title": "Target slide ID",
      "description": "Only used when \"Go to specific slide\" is selected."
    },
    "a11yTitle": {
      "type": "string",
      "maxLength": 140,
      "title": "Accessibility title",
      "description": "Optional. Screen readers announce this when the slide becomes active. Prefer a short, descriptive phrase."
    },
    "a11ySummary": {
      "type": "string",
      "maxLength": 280,
      "title": "Accessibility summary",
      "description": "Optional extra context for screen readers (announced after the title). Keep it brief."
    },
    "slideBgImage": {
      "type": "string",
      "title": "Background image",
      "description": "Optional. Fills the whole slide behind the content. Large images are resized automatically; use the focus control to pick which part stays visible when cropped."
    },
    "slideBgFit": {
      "type": "string",
      "enum": [
        "cover",
        "contain",
        ""
      ],
      "title": "Background fit"
    },
    "slideBgFocusX": {
      "anyOf": [
        {
          "type": "number"
        },
        {
          "const": ""
        }
      ],
      "title": "Background focus X"
    },
    "slideBgFocusY": {
      "anyOf": [
        {
          "type": "number"
        },
        {
          "const": ""
        }
      ],
      "title": "Background focus Y"
    },
    "slideBgOverlay": {
      "type": "string",
      "enum": [
        "auto",
        "none",
        "light",
        "dark",
        "gradient-top",
        "gradient-bottom",
        ""
      ],
      "title": "Background overlay",
      "description": "Auto adds a subtle scrim only when the image is too busy for readable text. Gradient options darken one edge behind the text."
    },
    "slideBgText": {
      "type": "string",
      "enum": [
        "auto",
        "light",
        "dark",
        ""
      ],
      "title": "Text colour",
      "description": "Auto picks the theme text colour with the best contrast for the background image. Light/dark force it. (Legacy \"default\" is treated as the theme default.)"
    },
    "slideLogo": {
      "type": "string",
      "enum": [
        "none",
        "top-right",
        ""
      ],
      "title": "Theme logo",
      "description": "Show the active theme logo in a corner of this slide."
    }
  },
  "additionalProperties": true,
  "required": [
    "question",
    "option1",
    "option2"
  ]
}