LoginRequest schema from Lunchbox Core API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "LoginRequest", "description": "LoginRequest schema from Lunchbox Core API", "$id": "https://raw.githubusercontent.com/api-evangelist/lunchbox/refs/heads/main/json-schema/core-login-request-schema.json", "type": "object", "properties": { "username": { "type": "string", "format": "email", "example": "[email protected]" }, "password": { "type": "string", "example": "string" } }, "required": [ "username", "password" ] }