{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UpdateUserPermissionsRequest", "title": "UpdateUserPermissionsRequest", "type": "object", "properties": { "role": { "type": "string", "example": "example_value" }, "accounts": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "role": { "type": "string" } } }, "example": [] } } }