{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://cpobjects.mycpl.net/schema/prompt.json", "title": "Prompt", "description": "Prompt", "type": "object", "properties": { "token": { "description": "Unique ID of the prompt", "type": "string" }, "status": { "description": "Status of the prompt", "type": "string", "enum": ["active", "inactive", "deleted"] }, "content": { "description": "Content of the prompt", "type": "string" }, "created_at": { "description": "Date-Time of create", "$ref": "./definitions/date_time.json" }, "updated_at": { "description": "Date-Time of update", "$ref": "./definitions/date_time.json" } } }