{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://tabulariumai.com/llm-resource.schema.json",
  "title": "TabulariumAI LLM Resource",
  "description": "Schema for additional resources published in llm-index.json.",
  "type": "object",
  "required": [
    "name",
    "url",
    "type"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Stable identifier for the resource."
    },
    "url": {
      "type": "string",
      "format": "uri",
      "description": "Public URL for the resource."
    },
    "type": {
      "type": "string",
      "enum": [
        "overview",
        "documentation",
        "api",
        "schema",
        "dataset",
        "faq",
        "policy"
      ],
      "description": "Resource classification."
    },
    "contentType": {
      "type": "string",
      "description": "HTTP content type returned by the resource."
    },
    "description": {
      "type": "string",
      "description": "Short human-readable summary."
    },
    "public": {
      "type": "boolean",
      "description": "Whether the resource is publicly accessible without authentication."
    }
  },
  "additionalProperties": true
}
