Login / Sign Up

Booking Balance Item

This is a single PMS Balance due date and amount for PMSs that support different payment schedules.

Structure

{
  "toPay": 200.00,
  "due": "2026-02-25"
}

Properties

toPay

Type : Floating Point Numeric - Required

How much is due to be paid as a floating point number. The app will render this with two decimal places.

due

Type : Date String - Required

Date this payment schedule item is due by.

Required Type Definitions

Date String - Reveal

If a date is sent as a readable string we use the format YYYY-MM-DD

{
  "arrival": "2023-09-09",
  "validUntil": "2024-02-28"
}

Floating Point Numeric - Reveal

Float and Double values are handled as normal JSON. Depending on the precision of the language sending/receiving the data can depend on the truncation of the decimal points. However due to the context of our data, only location lat/lng numbers will normally have more than 2-3 points.

{
  "cost": 55.5,
  "lat": 50.71245750791539,
  "lng":  -2.4619866156242995
}