veeva · JSON Structure

Veeva Vault User List Response Structure

UserListResponse schema from Veeva Vault REST API

Type: object Properties: 2

UserListResponse is a JSON Structure definition published by veeva, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

responseStatus users

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/veeva/refs/heads/main/json-structure/veeva-vault-user-list-response-structure.json",
  "name": "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": "int32"
              },
              "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"
              }
            }
          }
        }
      }
    }
  }
}