Luma · Schema

V1 Users Get Self Get 200 Response

EventsEvent ManagementTicketingCommunityCalendarsGuestsAttendance

Properties

Name Type Description
id string
name object
avatar_url string
email string
first_name object
last_name object
View JSON Schema on GitHub

JSON Schema

v1_users_get_self_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_users_get_self_get_200_response.json",
  "title": "V1 Users Get Self Get 200 Response",
  "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"
        }
      ]
    }
  },
  "required": [
    "id",
    "name",
    "avatar_url",
    "email",
    "first_name",
    "last_name"
  ]
}