{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ReservationDataParameters", "title": "ReservationDataParameters", "required": [ "AccessToken", "Client", "ClientToken", "Reservations", "ServiceId" ], "type": "object", "properties": { "ClientToken": { "minLength": 1, "type": "string", "description": "Token identifying the client application." }, "AccessToken": { "minLength": 1, "type": "string", "description": "Access token of the client application." }, "Client": { "minLength": 1, "type": "string", "description": "Name and version of the client application." }, "ServiceId": { "type": "string", "description": "Unique identifier of the `Service` to be priced.", "format": "uuid" }, "Reservations": { "type": "array", "items": { "$ref": "#/components/schemas/ReservationData" }, "description": "Parameters of the reservations to price. Note that `CustomerId` is not required when pricing reservations." } }, "additionalProperties": false, "x-schema-id": "ReservationDataParameters" }