Mews · Schema

Credit rating parameters

Credit rating to define creditworthiness of the company.

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
Basic object Indicates the credit status of a company. CreditOk (Company can book services.) PaymentRequiredUpfront (Company must pay upfront.) LocalDecisionRequired (Requires local approval.)
View JSON Schema on GitHub

JSON Schema

mews-creditratingparameters-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreditRatingParameters",
  "title": "Credit rating parameters",
  "type": "object",
  "properties": {
    "Basic": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CreditRatingBasicEnum"
        }
      ],
      "description": "Indicates the credit status of a company.\n\nCreditOk (Company can book services.)\n\nPaymentRequiredUpfront (Company must pay upfront.)\n\nLocalDecisionRequired (Requires local approval.)",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "description": "Credit rating to define creditworthiness of the company.",
  "x-schema-id": "CreditRatingParameters"
}