Lunchbox · JSON Structure

Core Login Request Structure

LoginRequest schema from Lunchbox Core API

Type: object Properties: 2 Required: 2
RestaurantOnline OrderingGuest EngagementCateringMenusOrdersLoyaltyEnterprise

LoginRequest is a JSON Structure definition published by Lunchbox, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

username password

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/lunchbox/refs/heads/main/json-structure/core-login-request-structure.json",
  "name": "LoginRequest",
  "description": "LoginRequest schema from Lunchbox Core API",
  "type": "object",
  "properties": {
    "username": {
      "type": "string",
      "example": "demo@lunchbox.io"
    },
    "password": {
      "type": "string",
      "example": "string"
    }
  },
  "required": [
    "username",
    "password"
  ]
}