{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CommentsResponse", "title": "CommentsResponse", "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "type": { "type": "string" }, "attributes": { "type": "object", "properties": { "body": { "type": "string" }, "created_at": { "type": "string", "format": "date-time" }, "created_by": { "type": "string" } } } } } } } }