Luma · Schema

V1 Calendar Add Event Post 200 Response

EventsEvent ManagementTicketingCommunityCalendarsGuestsAttendance

Properties

Name Type Description
id string
api_id string Use `id` instead.
status string
View JSON Schema on GitHub

JSON Schema

v1_calendar_add_event_post_200_response.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/luma/main/json-schema/v1_calendar_add_event_post_200_response.json",
  "title": "V1 Calendar Add Event Post 200 Response",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "api_id": {
      "type": "string",
      "deprecated": true,
      "description": "Use `id` instead."
    },
    "status": {
      "type": "string",
      "enum": [
        "approved",
        "pending"
      ]
    }
  },
  "required": [
    "id",
    "api_id",
    "status"
  ]
}