{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/RecurWeeklyObject", "title": "RecurWeeklyObject", "type": "object", "required": [ "sunday" ], "properties": { "sunday": { "type": "boolean", "example": true, "description": "Frequency of occurrence in weeks and select the day - Sunday." }, "monday": { "type": "boolean", "example": true, "description": "Frequency of occurrence in weeks and select the day - Monday." }, "tuesday": { "type": "boolean", "example": true, "description": "Frequency of occurrence in weeks and select the day - Tuesday." }, "wednesday": { "type": "boolean", "example": true, "description": "Frequency of occurrence in weeks and select the day - Wednesday." }, "thursday": { "type": "boolean", "example": true, "description": "Frequency of occurrence in weeks and select the day - Thursday." }, "friday": { "type": "boolean", "example": true, "description": "Frequency of occurrence in weeks and select the day - Friday." }, "saturday": { "type": "boolean", "example": true, "description": "Frequency of occurrence in weeks and select the day - Saturday." } } }