Luma · Schema

V1 Organizations Admins List Get 200 Response

EventsEvent ManagementTicketingCommunityCalendarsGuestsAttendance

Properties

Name Type Description
entries array
View JSON Schema on GitHub

JSON Schema

v1_organizations_admins_list_get_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_organizations_admins_list_get_200_response.json",
  "title": "V1 Organizations Admins List Get 200 Response",
  "type": "object",
  "properties": {
    "entries": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "name": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "avatar_url": {
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "first_name": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "last_name": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "null"
              }
            ]
          },
          "api_id": {
            "type": "string",
            "deprecated": true,
            "description": "Use `id` instead."
          }
        },
        "required": [
          "id",
          "name",
          "avatar_url",
          "email",
          "first_name",
          "last_name",
          "api_id"
        ]
      }
    }
  },
  "required": [
    "entries"
  ]
}