{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "PartnerUser", "description": "PartnerUser schema from Thanx Partner API", "$id": "https://raw.githubusercontent.com/api-evangelist/thanx/refs/heads/main/json-schema/partner-api-partner-user-schema.json", "type": "object", "properties": { "id": { "type": "string", "example": "92b7b0dac4" }, "email": { "type": "string", "format": "email", "example": "jane.smith@example.com" }, "phone": { "type": "string", "example": "+14158672345" }, "first_name": { "type": "string", "example": "Jane" }, "last_name": { "type": "string", "example": "Smith" } } }