{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateCommentRequest", "title": "CreateCommentRequest", "type": "object", "properties": { "data": { "type": "object", "properties": { "type": { "type": "string", "example": "comments" }, "attributes": { "type": "object", "required": [ "body" ], "properties": { "body": { "type": "string" } } } } } } }