mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 20:37:47 +00:00
54 lines
1.1 KiB
YAML
54 lines
1.1 KiB
YAML
type: object
|
|
properties:
|
|
entitlementIds:
|
|
type: array
|
|
description: List of entitlement ids to update
|
|
maxItems: 50
|
|
items:
|
|
type: string
|
|
example:
|
|
[
|
|
"2c91808a7624751a01762f19d665220d",
|
|
"2c91808a7624751a01762f19d67c220e",
|
|
"2c91808a7624751a01762f19d692220f"
|
|
]
|
|
jsonPatch:
|
|
type: array
|
|
items:
|
|
$ref: '../../v3/schemas/JsonPatchOperation.yaml'
|
|
example:
|
|
[
|
|
{
|
|
"op": "replace",
|
|
"path": "/privileged",
|
|
"value": false
|
|
},
|
|
{
|
|
"op": "replace",
|
|
"path": "/requestable",
|
|
"value": false
|
|
}
|
|
]
|
|
example:
|
|
{
|
|
"entitlementIds": [
|
|
"2c91808a7624751a01762f19d665220d",
|
|
"2c91808a7624751a01762f19d67c220e",
|
|
"2c91808a7624751a01762f19d692220f"
|
|
],
|
|
"jsonPatch": [
|
|
{
|
|
"op": "replace",
|
|
"path": "/privileged",
|
|
"value": false
|
|
},
|
|
{
|
|
"op": "replace",
|
|
"path": "/requestable",
|
|
"value": false
|
|
}
|
|
]
|
|
}
|
|
required:
|
|
- entitlementIds
|
|
- jsonPatch |