Gainsight · Schema

ScimUserInput

Properties

Name Type Description
schemas array
userName string
name object
emails array
active boolean
View JSON Schema on GitHub

JSON Schema

gainsight-scimuserinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScimUserInput",
  "title": "ScimUserInput",
  "type": "object",
  "required": [
    "schemas",
    "userName",
    "name",
    "emails"
  ],
  "properties": {
    "schemas": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "userName": {
      "type": "string"
    },
    "name": {
      "type": "object",
      "required": [
        "givenName",
        "familyName"
      ],
      "properties": {
        "givenName": {
          "type": "string"
        },
        "familyName": {
          "type": "string"
        }
      }
    },
    "emails": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "value": {
            "type": "string",
            "format": "email"
          },
          "type": {
            "type": "string"
          },
          "primary": {
            "type": "boolean"
          }
        }
      }
    },
    "active": {
      "type": "boolean"
    }
  }
}