Luma · Schema
V1 Calendars Update Post Request
EventsEvent ManagementTicketingCommunityCalendarsGuestsAttendance
Properties
| Name | Type | Description |
|---|---|---|
| calendar_id | string | Calendar ID, this usually starts with cal-. |
| name | string | Name of the calendar. |
| slug | string | URL slug for the calendar page (e.g. 'my-community' → lu.ma/my-community). |
| description | string | Short description of the calendar. |
| avatar_url | string | Specify an image that has been uploaded to the Luma CDN. |
| tint_color | string | Tint color for the calendar in hex format (e.g. '#E3CBEF'). |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/luma/main/json-schema/v1_calendars_update_post_request.json",
"title": "V1 Calendars Update Post Request",
"type": "object",
"properties": {
"calendar_id": {
"type": "string",
"description": "Calendar ID, this usually starts with cal-."
},
"name": {
"description": "Name of the calendar.",
"type": "string"
},
"slug": {
"description": "URL slug for the calendar page (e.g. 'my-community' \u2192 lu.ma/my-community).",
"type": "string"
},
"description": {
"description": "Short description of the calendar.",
"type": "string"
},
"avatar_url": {
"description": "Specify an image that has been uploaded to the Luma CDN.",
"type": "string",
"format": "uri"
},
"tint_color": {
"description": "Tint color for the calendar in hex format (e.g. '#E3CBEF').",
"type": "string"
}
},
"required": [
"calendar_id"
]
}