{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PatchUserLicenses", "title": "PatchUserLicenses", "type": "object", "properties": { "email": { "type": "string", "example": "john.andersen@example.com", "description": "Email address of the user." }, "personId": { "type": "string", "example": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS9mNWIzNjE4Ny1jOGRkLTQ3MjctOGIyZi1mOWM0NDdmMjkwNDY", "description": "A unique identifier for the user." }, "orgId": { "type": "string", "example": "Y2lzY29zcGFyazovL3VzL09SR0FOSVpBVElPTi85NmFiYzJhYS0zZGNjLTExZTUtYTE1Mi1mZTM0ODE5Y2RjOWE", "description": "The ID of the organization to which the licenses and siteUrls belong. If not specified, the organization ID from the OAuth token is used." }, "licenses": { "type": "array", "items": { "$ref": "#/components/schemas/LicenseRequest" }, "description": "An array of licenses to be assigned to the user." }, "siteUrls": { "type": "array", "items": { "$ref": "#/components/schemas/SiteUrlsRequest" }, "description": "An array of siteUrls to be assigned to the user." } } }