SailPoint · Schema

IdentityAttribute

A public identity attribute key-value pair.

Access GovernanceComplianceIAMIdentity ManagementIdentity SecuritySecurity

Properties

Name Type Description
key string The attribute key.
name string Human-readable display name of the attribute.
value stringnull The attribute value.
View JSON Schema on GitHub

JSON Schema

sailpoint-identityattribute-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IdentityAttribute",
  "title": "IdentityAttribute",
  "type": "object",
  "description": "A public identity attribute key-value pair.",
  "properties": {
    "key": {
      "type": "string",
      "description": "The attribute key.",
      "examples": [
        "country"
      ]
    },
    "name": {
      "type": "string",
      "description": "Human-readable display name of the attribute.",
      "examples": [
        "Country"
      ]
    },
    "value": {
      "type": [
        "string",
        "null"
      ],
      "description": "The attribute value.",
      "examples": [
        "US"
      ]
    }
  }
}