SailPoint · Schema

RoleCriteriaLevel3

Third-level (leaf) role criteria expression.

Access GovernanceComplianceIAMIdentity ManagementIdentity SecuritySecurity

Properties

Name Type Description
operation string
key object
stringValue stringnull
View JSON Schema on GitHub

JSON Schema

sailpoint-rolecriterialevel3-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RoleCriteriaLevel3",
  "title": "RoleCriteriaLevel3",
  "type": "object",
  "description": "Third-level (leaf) role criteria expression.",
  "properties": {
    "operation": {
      "type": "string",
      "enum": [
        "EQUALS",
        "NOT_EQUALS",
        "CONTAINS",
        "STARTS_WITH",
        "ENDS_WITH"
      ]
    },
    "key": {
      "$ref": "#/components/schemas/RoleCriteriaKey"
    },
    "stringValue": {
      "type": [
        "string",
        "null"
      ]
    }
  }
}