{ "$id": "https://github.com/howlowck/common-catalog-schema/schema-versions.json", "$schema": "http://json-schema.org/draft-07/schema#", "title": "All Versions of the Common Catalog Schema", "type": "object", "oneOf": [ { "allOf": [ { "properties": { "version": { "const": "0.3.0" } } }, { "$ref": "https://raw.githubusercontent.com/howlowck/common-catalog-schema/main/json-schemas/schema-0.3.0.json" } ] }, { "allOf": [ { "properties": { "version": { "const": "0.2.1" } } }, { "$ref": "https://raw.githubusercontent.com/howlowck/common-catalog-schema/main/json-schemas/schema-0.2.1.json" } ] }, { "description": "This is the fallback to the latest version (the first one in this schema) in case no version is specified.", "allOf": [ { "oneOf": [ { "properties": { "version": { "type": "string", "maxLength": 0 } }, "required": [ "version" ] }, { "not": { "properties": { "version": {} }, "required": [ "version" ] } } ] }, { "$ref": "#/oneOf/0/allOf/1" } ] } ] }