{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://json.schemastore.org/schema-catalog.json",
  "additionalProperties": false,
  "properties": {
    "$schema": {
      "description": "Link to https://json.schemastore.org/schema-catalog.json",
      "type": "string",
      "enum": ["https://json.schemastore.org/schema-catalog.json"]
    },
    "schemas": {
      "type": "array",
      "description": "A list of JSON schema references.",
      "items": {
        "type": "object",
        "required": ["name", "url", "description"],
        "additionalProperties": false,
        "properties": {
          "fileMatch": {
            "description": "A Minimatch glob expression for matching up file names with a schema.",
            "uniqueItems": true,
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "url": {
            "description": "An absolute URL to the schema location",
            "type": "string",
            "format": "uri"
          },
          "name": {
            "description": "The name of the schema",
            "type": "string"
          },
          "description": {
            "description": "A description of the schema",
            "type": "string"
          },
          "versions": {
            "type": "object",
            "description": "A set of specific version to schema mappings",
            "additionalProperties": {
              "type": "string",
              "format": "uri"
            }
          }
        }
      }
    },
    "version": {
      "description": "The schema version of the catalog",
      "type": "number"
    }
  },
  "required": ["schemas", "version", "$schema"],
  "title": "JSON schema for SchemaStore.org catalog files",
  "type": "object"
}
