Mews · Schema

Rule action product data

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
ActionType object
ProductId string Unique identifier of product.
View JSON Schema on GitHub

JSON Schema

mews-ruleactionproductdata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RuleActionProductData",
  "title": "Rule action product data",
  "required": [
    "ActionType",
    "ProductId"
  ],
  "type": "object",
  "properties": {
    "ActionType": {
      "$ref": "#/components/schemas/RuleActionType"
    },
    "ProductId": {
      "type": "string",
      "description": "Unique identifier of product.",
      "format": "uuid"
    }
  },
  "additionalProperties": false,
  "x-schema-id": "RuleActionProductData"
}