{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://ai.studyau.net/data/schema.json",
  "title": "I EDU NET public article record",
  "type": "object",
  "required": ["id", "headline", "canonical_url", "language", "date_published", "date_modified", "content_text", "content_sha256"],
  "properties": {
    "id": {"type": "string", "pattern": "^iedunet-wp-[0-9]+$"},
    "wordpress_id": {"type": "integer", "minimum": 1},
    "headline": {"type": "string"},
    "summary": {"type": "string"},
    "canonical_url": {"type": "string", "format": "uri"},
    "catalog_url": {"type": "string", "format": "uri"},
    "language": {"type": "string"},
    "date_published": {"type": "string", "format": "date-time"},
    "date_modified": {"type": "string", "format": "date-time"},
    "authors": {"type": "array", "items": {"type": "object", "required": ["name"], "properties": {"name": {"type": "string"}}}},
    "categories": {"type": "array", "items": {"type": "string"}},
    "tags": {"type": "array", "items": {"type": "string"}},
    "featured_image": {"type": ["string", "null"], "format": "uri"},
    "content_text": {"type": "string"},
    "sections": {"type": "array", "items": {"type": "object", "required": ["heading", "level", "text"], "properties": {"heading": {"type": "string"}, "level": {"type": "integer", "minimum": 1, "maximum": 6}, "text": {"type": "string"}}}},
    "character_count": {"type": "integer", "minimum": 0},
    "content_sha256": {"type": "string", "pattern": "^[a-f0-9]{64}$"}
  },
  "additionalProperties": true
}
