Properties
| Name | Type | Description |
|---|---|---|
| data | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/EventCreateRequest",
"title": "EventCreateRequest",
"type": "object",
"required": [
"data"
],
"properties": {
"data": {
"type": "object",
"properties": {
"type": {
"type": "string",
"example": "events"
},
"attributes": {
"type": "object",
"properties": {
"title": {
"type": "string"
},
"event_type": {
"type": "string"
},
"external_id": {
"type": "string"
},
"custom_fields": {
"type": "array",
"items": {
"type": "object"
}
}
}
},
"relationships": {
"type": "object",
"properties": {
"event_template": {
"type": "object"
}
}
}
}
}
}
}