{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.webgamegame.win/api/news/v1/edition.schema.json",
  "title": "News Edition",
  "type": "object",
  "required": [
    "schema_version",
    "type",
    "edition_id",
    "published_at",
    "articles"
  ],
  "properties": {
    "schema_version": {
      "const": "2.0"
    },
    "type": {
      "const": "NewsEdition"
    },
    "edition_id": {
      "type": "string"
    },
    "published_at": {
      "type": "string",
      "format": "date-time"
    },
    "articles": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "id",
          "edition_id",
          "published_at",
          "urls",
          "headline",
          "dek",
          "story",
          "infrastructure",
          "image",
          "tags"
        ]
      }
    }
  }
}
