SailPoint · Schema

EntitlementRef

Reference to an entitlement.

Access GovernanceComplianceIAMIdentity ManagementIdentity SecuritySecurity

Properties

Name Type Description
type string The entitlement object type.
id string The entitlement ID.
name string The entitlement display name.
View JSON Schema on GitHub

JSON Schema

sailpoint-entitlementref-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EntitlementRef",
  "title": "EntitlementRef",
  "type": "object",
  "description": "Reference to an entitlement.",
  "properties": {
    "type": {
      "type": "string",
      "description": "The entitlement object type.",
      "enum": [
        "ENTITLEMENT"
      ],
      "examples": [
        "ENTITLEMENT"
      ]
    },
    "id": {
      "type": "string",
      "description": "The entitlement ID.",
      "examples": [
        "2c91809773dee32014e13e122092014e"
      ]
    },
    "name": {
      "type": "string",
      "description": "The entitlement display name.",
      "examples": [
        "CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local"
      ]
    }
  }
}