Lightspeed · Schema

id-cards-apiCreateIdCardBatchRequest

id-cards-apiCreateIdCardBatchRequest schema from Lightspeed Restaurant K Series API

POSRetailRestaurantEcommerce

Properties

Name Type Description
name string The name of the ID card batch.
View JSON Schema on GitHub

JSON Schema

restaurant-k-series-id-cards-api-create-id-card-batch-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "id-cards-apiCreateIdCardBatchRequest",
  "description": "id-cards-apiCreateIdCardBatchRequest schema from Lightspeed Restaurant K Series API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/lightspeed-pos/refs/heads/main/json-schema/restaurant-k-series-id-cards-api-create-id-card-batch-request-schema.json",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the ID card batch.",
      "example": "Sample Batch Name",
      "pattern": ".*\\S.*",
      "maxLength": 255
    }
  },
  "required": [
    "name"
  ]
}