{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Schedule", "title": "Schedule", "type": "object", "properties": { "schedule_type": { "type": "string", "description": "Type of the schedule, can be either CRON_TYPE or MINUTES_TYPE", "example": "example_value" } }, "required": [ "schedule_type" ], "discriminator": { "propertyName": "schedule_type", "mapping": { "CRON_TYPE": "CronSchedule", "SCHEDULE_TYPE": "MinutesSchedule" } } }