{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/IntegrationSemVer", "title": "IntegrationSemVer", "type": "object", "description": "Semver denotes the major.minor version of an integration release", "additionalProperties": false, "properties": { "major": { "type": "integer", "description": "Major is the major number of a semver", "default": 1 }, "minor": { "type": "integer", "description": "Minior is the minior number of a semver", "default": 1 } } }