Unified.to · Schema

ScimPhoto

IntegrationsUnified API

Properties

Name Type Description
display string
primary boolean
type string
value string
View JSON Schema on GitHub

JSON Schema

unified-to-scimphoto-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScimPhoto",
  "title": "ScimPhoto",
  "properties": {
    "display": {
      "type": "string"
    },
    "primary": {
      "type": "boolean"
    },
    "type": {
      "enum": [
        "photo",
        "thumbnail"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    },
    "value": {
      "type": "string"
    }
  },
  "type": "object"
}