{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/RecurYearlyByDateObject", "title": "RecurYearlyByDateObject", "type": "object", "required": [ "dayOfMonth", "month" ], "properties": { "dayOfMonth": { "type": "number", "example": 1, "description": "Schedule the event on a specific day of the month." }, "month": { "type": "string", "enum": [ "JANUARY", "FEBRUARY", "MARCH", "APRIL", "MAY", "JUNE", "JULY", "AUGUST", "SEPTEMBER", "OCTOBER", "NOVEMBER", "DECEMBER" ], "description": "Schedule the event on a specific month of the year." } } }