User

User schema

AnalyticsCustomer ExperienceDigital MarketingPersonalizationCampaign ManagementJourney Orchestration

Properties

Name Type Description
id integer
loginId string
email string
firstName string
lastName string
admin boolean
View JSON Schema on GitHub

JSON Schema

analytics-api-user-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adobe-experience-cloud/refs/heads/main/json-schema/analytics-api-user-schema.json",
  "title": "User",
  "description": "User schema",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer"
    },
    "loginId": {
      "type": "string"
    },
    "email": {
      "type": "string"
    },
    "firstName": {
      "type": "string"
    },
    "lastName": {
      "type": "string"
    },
    "admin": {
      "type": "boolean"
    }
  }
}