{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/basiq/refs/heads/main/json-schema/createuserrequest.json", "title": "CreateUserRequest", "type": "object", "properties": { "email": { "type": "string", "format": "email", "description": "User email address" }, "mobile": { "type": "string", "description": "User mobile number in E.164 format" }, "firstName": { "type": "string" }, "lastName": { "type": "string" } } }