{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://denny.one/talks/schemas/topics.schema.json",
  "title": "Denny Huang Topic Records",
  "type": "array",
  "items": {
    "type": "object",
    "required": ["id", "title", "summary", "aliases", "url"],
    "properties": {
      "id": { "type": "string" },
      "title": { "type": "string" },
      "summary": { "type": "string" },
      "aliases": { "type": "array", "items": { "type": "string" } },
      "url": { "type": "string", "format": "uri" }
    },
    "additionalProperties": false
  }
}
