{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UserIntegrationMappings", "title": "User (Integration Mappings)", "type": "object", "x-box-resource-id": "user_integration_mappings_reference", "x-box-tag": "users", "description": "A user representation for integration mappings\nAPI purposes. Fields name and login are not required.", "allOf": [ { "$ref": "#/components/schemas/User--Base" }, { "properties": { "name": { "type": "string", "description": "The display name of this user", "example": "Aaron Levie", "maxLength": 50, "nullable": false }, "login": { "type": "string", "format": "email", "description": "The primary email address of this user", "example": "ceo@example.com", "nullable": false } } } ] }