{
  "$comment": "Generated from the Site Pipeline Pydantic models. Do not edit by hand; regenerate with `make schemas`.",
  "$defs": {
    "ProvidersDataEntry": {
      "additionalProperties": false,
      "description": "Entry in ``data/providers.json``.",
      "properties": {
        "baseUrl": {
          "anyOf": [
            {
              "minLength": 1,
              "type": "string"
            },
            {
              "type": "null"
            }
          ],
          "default": null,
          "description": "Base URL of the provider service when records can link back to a human-browsable upstream origin.",
          "title": "Baseurl"
        },
        "displayName": {
          "anyOf": [
            {
              "minLength": 1,
              "type": "string"
            },
            {
              "type": "null"
            }
          ],
          "default": null,
          "description": "Human-readable provider label shown in generated metadata or diagnostics.",
          "examples": [
            "GitHub Releases"
          ],
          "title": "Displayname"
        },
        "fetchedAt": {
          "description": "Timestamp when this provider descriptor was fetched or refreshed.",
          "format": "date-time",
          "title": "Fetchedat",
          "type": "string"
        },
        "key": {
          "description": "Stable provider identifier used by aggregate entries that originate from this provider.",
          "examples": [
            "github-releases"
          ],
          "minLength": 1,
          "title": "Key",
          "type": "string"
        },
        "type": {
          "description": "Provider implementation type, such as `github` or another fetcher backend label.",
          "examples": [
            "github"
          ],
          "minLength": 1,
          "title": "Type",
          "type": "string"
        }
      },
      "required": [
        "key",
        "type",
        "fetchedAt"
      ],
      "title": "ProvidersDataEntry",
      "type": "object",
      "x-buildish-contract": {
        "category": "emitted",
        "ownership": "pipeline-derived"
      }
    }
  },
  "$id": "https://buildish.org/components/site-pipeline/schemas/providers-data-v1.schema.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false,
  "description": "Public staged aggregate file at ``data/providers.json``.",
  "properties": {
    "items": {
      "description": "Provider summary entries emitted into `data/providers.json`.",
      "items": {
        "$ref": "#/$defs/ProvidersDataEntry"
      },
      "title": "Items",
      "type": "array"
    }
  },
  "required": [
    "items"
  ],
  "title": "Site Pipeline data/providers.json v1",
  "type": "object",
  "x-buildish-contract": {
    "category": "emitted",
    "filePath": "data/providers.json",
    "ownership": "pipeline-derived",
    "summary": "Loaded provider inventory with display names, base URLs, and fetch timestamps."
  }
}
