Mews · Schema

BillsAddResult

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
Bills array The created bills.
View JSON Schema on GitHub

JSON Schema

mews-billsaddresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BillsAddResult",
  "title": "BillsAddResult",
  "required": [
    "Bills"
  ],
  "type": "object",
  "properties": {
    "Bills": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Bill"
      },
      "description": "The created bills."
    }
  },
  "additionalProperties": false,
  "x-schema-id": "BillsAddResult"
}