{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://data.forkcast.org/schemas/record-manifest.schema.json",
  "type": "object",
  "required": ["id", "kind", "title", "updatedAt", "sources", "artifacts"],
  "properties": {
    "id": { "type": "string" },
    "kind": { "enum": ["call", "topic", "thread", "upgrade", "proposal", "devnet"] },
    "title": { "type": "string" },
    "updatedAt": { "type": "string" },
    "dummy": { "type": "boolean" },
    "sources": { "type": "array" },
    "artifacts": { "type": "array" }
  }
}
