Files
api-specs/idn/beta/schemas/BulkUpdateAuthUser.yaml
2022-09-02 10:59:29 -04:00

29 lines
659 B
YAML

type: object
properties:
authUserPatches:
description: >-
Map of id of the auth user to a JsonPatchOperation describing what to patch on that auth user.
type: object
additionalProperties:
$ref: '../schemas/JsonPatchOperation.yaml'
example: {
"2c91808d7b98f877017ba8263dc07d54": [
{
"op": "replace",
"path": "/capabilities",
"value": [
"ORG_ADMIN"
]
}
],
"2c91808d7b98f877017ba8263dd77d5c": [
{
"op": "replace",
"path": "/capabilities",
"value": [
"ORG_ADMIN"
]
}
]
}