Mews · Schema

Company with billing automation relation

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
CompanyId string Unique identifier of the company.
CompanyRelations object Company relations.
View JSON Schema on GitHub

JSON Schema

mews-companywithbillingautomationrelation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CompanyWithBillingAutomationRelation",
  "title": "Company with billing automation relation",
  "required": [
    "CompanyId",
    "CompanyRelations"
  ],
  "type": "object",
  "properties": {
    "CompanyId": {
      "type": "string",
      "description": "Unique identifier of the company.",
      "format": "uuid"
    },
    "CompanyRelations": {
      "title": "Company with relations parameters",
      "allOf": [
        {
          "$ref": "#/components/schemas/CompanyRelationsParameters"
        }
      ],
      "description": "Company relations."
    }
  },
  "additionalProperties": false,
  "x-schema-id": "CompanyWithBillingAutomationRelation"
}