{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ValidateCustomerCredentialsObject", "title": "ValidateCustomerCredentialsObject", "type": "object", "required": [ "email", "password" ], "properties": { "email": { "type": "string", "description": "Customer email address." }, "password": { "type": "string", "description": "Customer password." }, "channel_id": { "type": "integer", "description": "ChannelId to check the customer credentials against - If this field is empty we will use channel 1." } }, "x-internal": false }