{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CampaignUpdateRequest", "title": "CampaignUpdateRequest", "type": "object", "properties": { "patch": { "type": "object", "properties": { "$set": { "type": "object", "properties": { "status": { "type": "string", "example": "ARCHIVED" }, "runSchedule": { "$ref": "#/components/schemas/RunSchedule" } } } } } } }