{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "slug": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "shortTitle": {
      "type": "string"
    },
    "hook": {
      "type": "string"
    },
    "category": {
      "type": "string"
    },
    "riskLevel": {
      "type": "string",
      "enum": [
        "low",
        "medium",
        "high"
      ]
    },
    "visibleScreen": {
      "type": "string"
    },
    "redFlag": {
      "type": "string"
    },
    "whyItWorks": {
      "type": "string"
    },
    "saferMove": {
      "type": "string"
    },
    "ifAlreadyClicked": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "checklist": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "checklistDetails": {
      "default": [],
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string"
          },
          "why": {
            "type": "string"
          },
          "safer": {
            "type": "string"
          }
        },
        "required": [
          "title"
        ]
      }
    },
    "faq": {
      "default": [],
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "question": {
            "type": "string"
          },
          "answer": {
            "type": "string"
          }
        },
        "required": [
          "question",
          "answer"
        ]
      }
    },
    "videoUrl": {
      "default": null,
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ]
    },
    "thumbnail": {
      "default": null,
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ]
    },
    "screenImage": {
      "default": null,
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ]
    },
    "screenImageAlt": {
      "default": null,
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ]
    },
    "visualBrief": {
      "default": null,
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ]
    },
    "related": {
      "default": [],
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "toolRelevance": {
      "type": "string"
    },
    "affiliateCategory": {
      "default": null,
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ]
    },
    "seoTitle": {
      "type": "string"
    },
    "metaDescription": {
      "type": "string"
    },
    "socialTitle": {
      "type": "string"
    },
    "lastUpdated": {
      "type": "string",
      "format": "date-time"
    },
    "$schema": {
      "type": "string"
    }
  },
  "required": [
    "id",
    "slug",
    "title",
    "shortTitle",
    "hook",
    "category",
    "riskLevel",
    "visibleScreen",
    "redFlag",
    "whyItWorks",
    "saferMove",
    "ifAlreadyClicked",
    "checklist",
    "toolRelevance",
    "seoTitle",
    "metaDescription",
    "socialTitle",
    "lastUpdated"
  ]
}