Webex · Schema

updateOrgObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
schemas array Input JSON schemas.
displayName string New full name of the organization.
preferredLanguage string It is the default preferredLanguage for user creation in this org. It is set in ISO639 format.
View JSON Schema on GitHub

JSON Schema

webex-updateorgobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/updateOrgObject",
  "title": "updateOrgObject",
  "type": "object",
  "required": [
    "schemas",
    "displayName"
  ],
  "properties": {
    "schemas": {
      "type": "array",
      "items": {
        "type": "string",
        "example": "urn:cisco:codev:identity:organization:core:1.0"
      },
      "description": "Input JSON schemas."
    },
    "displayName": {
      "type": "string",
      "example": "Acme_New, Inc.",
      "description": "New full name of the organization."
    },
    "preferredLanguage": {
      "type": "string",
      "example": "en_US",
      "description": "It is the default preferredLanguage for user creation in this org. It is set in ISO639 format."
    }
  }
}