{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LicenseDetail", "title": "LicenseDetail", "allOf": [ { "$ref": "#/components/schemas/License" }, { "type": "object", "properties": { "users": { "type": "array", "description": "Users assigned to this license.", "items": { "type": "object", "properties": { "id": { "type": "string", "description": "Person ID." }, "type": { "type": "string", "description": "User type.", "enum": [ "INTERNAL", "EXTERNAL" ] }, "displayName": { "type": "string", "description": "Display name of the user." }, "email": { "type": "string", "format": "email", "description": "Email address of the user." } } } } } } ] }