{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://miladhabibi.com/.well-known/agent-docs.schema.json",
  "title": "Milad Habibi agent documentation corpus",
  "type": "object",
  "required": [
    "schema_version",
    "name",
    "generated_at",
    "documents",
    "document_count"
  ],
  "properties": {
    "schema_version": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "documents": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "id",
          "title",
          "url",
          "markdown_url",
          "content"
        ],
        "properties": {
          "id": {
            "type": "string"
          },
          "title": {
            "type": "string"
          },
          "kind": {
            "type": "string"
          },
          "content": {
            "type": "string"
          }
        }
      }
    },
    "document_count": {
      "type": "integer"
    }
  }
}
