veeva · Schema

UserListResponse

UserListResponse schema from Veeva Vault REST API

Properties

Name Type Description
responseStatus string
users array
View JSON Schema on GitHub

JSON Schema

veeva-vault-user-list-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/veeva/refs/heads/main/json-schema/veeva-vault-user-list-response-schema.json",
  "title": "UserListResponse",
  "description": "UserListResponse schema from Veeva Vault REST API",
  "type": "object",
  "properties": {
    "responseStatus": {
      "type": "string"
    },
    "users": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "user": {
            "type": "object",
            "properties": {
              "id": {
                "type": "integer"
              },
              "user_name__v": {
                "type": "string"
              },
              "user_first_name__v": {
                "type": "string"
              },
              "user_last_name__v": {
                "type": "string"
              },
              "user_email__v": {
                "type": "string",
                "format": "email"
              },
              "user_timezone__v": {
                "type": "string"
              },
              "user_locale__v": {
                "type": "string"
              },
              "is_active__v": {
                "type": "boolean"
              }
            }
          }
        }
      }
    }
  }
}