Properties
| Name | Type | Description |
|---|---|---|
| RateId | string | The unique identifier of the `Rate` to update. |
| NegativeOccupancyAdjustment | object | Amount added to the price when occupancy is less than the Space Category Capacity. Use a negative value to provide a discount for under-occupancy. Set to 'null' if not updated. |
| ExtraOccupancyAdjustment | object | Amount added to the price when the Space Category Capacity is exceeded. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/RateCapacityOffsetUpdateParameters",
"title": "RateCapacityOffsetUpdateParameters",
"required": [
"RateId"
],
"type": "object",
"properties": {
"RateId": {
"type": "string",
"description": "The unique identifier of the `Rate` to update.",
"format": "uuid"
},
"NegativeOccupancyAdjustment": {
"title": "Decimal update value",
"allOf": [
{
"$ref": "#/components/schemas/DecimalUpdateValue"
}
],
"description": "Amount added to the price when occupancy is less than the Space Category Capacity. Use a negative value to provide a discount for under-occupancy. Set to 'null' if not updated.",
"nullable": true
},
"ExtraOccupancyAdjustment": {
"title": "Decimal update value",
"allOf": [
{
"$ref": "#/components/schemas/DecimalUpdateValue"
}
],
"description": "Amount added to the price when the Space Category Capacity is exceeded.",
"nullable": true
}
},
"additionalProperties": false,
"x-schema-id": "RateCapacityOffsetUpdateParameters"
}