{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/fastdol/refs/heads/main/json-schema/fastdol-login-request-schema.json", "title": "LoginRequest", "description": "LoginRequest schema from FastDOL API", "type": "object", "properties": { "email": { "type": "string", "format": "email", "title": "Email", "example": "analyst@example.com" }, "password": { "type": "string", "title": "Password", "example": "CorrectHorseBatteryStaple1!" } }, "required": [ "email", "password" ] }