Mews · Schema

Dependent rate pricing parameters

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
BaseRateId string Unique identifier of the base rate.
RelativeAdjustment number Relative amount which shows the difference between this rate and the base rate.
AbsoluteAdjustment number Specific amount which shows the difference between this rate and the base rate.
View JSON Schema on GitHub

JSON Schema

mews-dependentratepricingparameters-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DependentRatePricingParameters",
  "title": "Dependent rate pricing parameters",
  "required": [
    "BaseRateId"
  ],
  "type": "object",
  "properties": {
    "BaseRateId": {
      "minLength": 1,
      "type": "string",
      "description": "Unique identifier of the base rate.",
      "x-schema-id": "HybridIdentifier"
    },
    "RelativeAdjustment": {
      "type": "number",
      "description": "Relative amount which shows the difference between this rate and the base rate.",
      "format": "double"
    },
    "AbsoluteAdjustment": {
      "type": "number",
      "description": "Specific amount which shows the difference between this rate and the base rate.",
      "format": "double"
    }
  },
  "additionalProperties": false,
  "x-schema-id": "DependentRatePricingParameters"
}