Mews · Schema

Product order item data

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
ProductId string Unique identifier of the `Product`.
AgeCategoryId string Unique identifier of the `AgeCategory`.
View JSON Schema on GitHub

JSON Schema

mews-productorderitemdata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProductOrderItemData",
  "title": "Product order item data",
  "required": [
    "ProductId"
  ],
  "type": "object",
  "properties": {
    "ProductId": {
      "type": "string",
      "description": "Unique identifier of the `Product`.",
      "format": "uuid"
    },
    "AgeCategoryId": {
      "type": "string",
      "description": "Unique identifier of the `AgeCategory`.",
      "format": "uuid",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "x-schema-id": "ProductOrderItemData"
}