SailPoint · Schema

OwnerReference

Reference to the owner of the object.

Access GovernanceComplianceIAMIdentity ManagementIdentity SecuritySecurity

Properties

Name Type Description
type string Owner type. Must be either left null or set to IDENTITY on input, otherwise a 400 Bad Request error will result.
id string The owner's identity ID.
name string The owner's name. If set, it must match the current value of the owner's display name, otherwise a 400 Bad Request error will result.
View JSON Schema on GitHub

JSON Schema

sailpoint-ownerreference-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/OwnerReference",
  "title": "OwnerReference",
  "type": "object",
  "description": "Reference to the owner of the object.",
  "properties": {
    "type": {
      "type": "string",
      "description": "Owner type. Must be either left null or set to IDENTITY on input, otherwise a 400 Bad Request error will result.",
      "enum": [
        "IDENTITY"
      ],
      "examples": [
        "IDENTITY"
      ]
    },
    "id": {
      "type": "string",
      "description": "The owner's identity ID.",
      "examples": [
        "2c9180a46faadee4016fb4e018c20639"
      ]
    },
    "name": {
      "type": "string",
      "description": "The owner's name. If set, it must match the current value of the owner's display name, otherwise a 400 Bad Request error will result.",
      "examples": [
        "support"
      ]
    }
  }
}