{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "note", "type": "object", "required": [ "text", "created_at" ], "properties": { "text": { "type": "string", "description": "A string of text for the note." }, "created_at": { "type": "string", "format": "date-time", "description": "Time at which the attachment was created." } }, "example": { "text": "Customer spoke to Erlich previously", "created_at": "2022-10-16T10:12:02.872Z", "requested_by": { "type": "user", "id": "00000000-0000-0000-0000-000000000001" } } }