{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://cpobjects.mycpl.net/schema/message/task.json", "title": "Task message", "description": "Task message", "type": "object", "properties": { "customer": { "description": "Customer", "type": "object", "$ref": "../customer.json" }, "name": { "description": "Name of the task: TODO SET AS TRANSLATE OBJECT", "type": "string" }, "description": { "description": "Description of the task: TODO SET AS TRANSLATE OBJECT", "type": "string" }, "date_at": { "description": "Date and time of the task", "type": "string", "format": "YYYY-MM-DD HH:MM:SS" }, "address": { "description": "Address where the task is to be done", "type": "object", "$ref": "../address.json" } } }