Webex · Schema

UserListItem

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
userId string User ID associated with the validation response.
impacts array List of impacts for the user moves.
errors array List of errors for the user moves.
View JSON Schema on GitHub

JSON Schema

webex-userlistitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserListItem",
  "title": "UserListItem",
  "type": "object",
  "required": [
    "userId"
  ],
  "properties": {
    "userId": {
      "type": "string",
      "example": "Y2lzY29zcGFyazovL3VzL0xPQ0FUSU9OLzUyMjNiYmVkLTQyYzktNDU0ZC1hMWYzLTdmYWQ1Y2M3ZTZlMw",
      "description": "User ID associated with the validation response."
    },
    "impacts": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ErrorOrImpactItem"
      },
      "description": "List of impacts for the user moves."
    },
    "errors": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ErrorOrImpactItem"
      },
      "description": "List of errors for the user moves."
    }
  }
}