{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AssignRoleUsersRequestContent", "title": "AssignRoleUsersRequestContent", "type": "object", "additionalProperties": false, "required": [ "users" ], "properties": { "users": { "type": "array", "description": "user_id's of the users to assign the role to.", "items": { "type": "string", "format": "user-id-with-max-length" } } } }