Schema for Kajabi contact notes
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/kajabi/main/json-schema/contact_notes_attributes.json", "title": "Contact Notes", "description": "Schema for Kajabi contact notes", "type": "object", "properties": { "body": { "type": "string" }, "created_at": { "type": "string", "format": "date-time", "readOnly": true, "description": "ISO 8601 date-time, read only" }, "updated_at": { "type": "string", "format": "date-time", "readOnly": true, "description": "ISO 8601 date-time, read only" } } }