Lunchbox · Schema

LoginRequest

LoginRequest schema from Lunchbox Core API

RestaurantOnline OrderingGuest EngagementCateringMenusOrdersLoyaltyEnterprise

Properties

Name Type Description
username string
password string
View JSON Schema on GitHub

JSON Schema

core-login-request-schema.json Raw ↑
{
  "$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"
  ]
}