{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/veeam/main/json-schema/JobModel.json", "title": "JobModel", "allOf": [ { "discriminator": { "mapping": { "Backup": "#/components/schemas/BackupJobModel" }, "propertyName": "type" }, "oneOf": [ { "$ref": "#/components/schemas/BackupJobModel" } ] }, { "$ref": "#/components/schemas/BaseJobModel" } ] }