added new schema to entitlement docs

This commit is contained in:
Philip Ellis
2025-04-23 10:39:37 -04:00
parent e4d28a7f94
commit cf6a544a01
2 changed files with 26 additions and 4 deletions

View File

@@ -18,7 +18,15 @@ tags: ['Connectivity', 'Connector Command']
```javascript
{
"type": "group"
"type": "group",
"stateful": "true",
"state": {
"date": "4/23/2024"
},
"schema": {
"type": "string",
"includePermissions": true
}
}
```
@@ -33,10 +41,15 @@ tags: ['Connectivity', 'Connector Command']
}
},
"type": "group",
"deleted": false,
"attributes": {
"id": "administrator",
"name": "Administrator"
}
},
"permissions": [
"target": "SYSADMIN",
"rights": "useAccounts,retrieveAccounts"
]
}
```

View File

@@ -32,7 +32,11 @@ To use this command, you must specify this value in the `commands` array: `std:e
"id": "john.doe"
}
},
"type": "group"
"type": "group",
"schema": {
"type": "string",
"includePermissions": true
}
}
```
@@ -47,10 +51,15 @@ To use this command, you must specify this value in the `commands` array: `std:e
}
},
"type": "group",
"deleted": false,
"attributes": {
"id": "administrator",
"name": "Administrator"
}
},
"permissions": [
"target": "SYSADMIN",
"rights": "useAccounts,retrieveAccounts"
]
}
```