ESRI ArcGIS · Schema

User

GISGeospatialMappingLocationSpatial Analysis

Properties

Name Type Description
username string
fullName string
firstName string
lastName string
email string
description string
role string
level string
created integer
modified integer
groups array
View JSON Schema on GitHub

JSON Schema

esri-arcgis-user-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/User",
  "title": "User",
  "type": "object",
  "properties": {
    "username": {
      "type": "string"
    },
    "fullName": {
      "type": "string"
    },
    "firstName": {
      "type": "string"
    },
    "lastName": {
      "type": "string"
    },
    "email": {
      "type": "string",
      "format": "email"
    },
    "description": {
      "type": "string"
    },
    "role": {
      "type": "string",
      "enum": [
        "org_admin",
        "org_publisher",
        "org_user",
        "account_admin"
      ]
    },
    "level": {
      "type": "string"
    },
    "created": {
      "type": "integer"
    },
    "modified": {
      "type": "integer"
    },
    "groups": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/GroupRef"
      }
    }
  }
}