Mews · Schema

Account note update parameters

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
AccountNoteId string Unique identifier of the account note.
Content object Content of the account note (or `null` if the content should not be updated).
Classifications object Classification of the account note.
View JSON Schema on GitHub

JSON Schema

mews-accountnoteupdateparameters-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountNoteUpdateParameters",
  "title": "Account note update parameters",
  "required": [
    "AccountNoteId",
    "Classifications"
  ],
  "type": "object",
  "properties": {
    "AccountNoteId": {
      "type": "string",
      "description": "Unique identifier of the account note.",
      "format": "uuid"
    },
    "Content": {
      "title": "String update value",
      "maxLength": 1000,
      "minLength": 1,
      "allOf": [
        {
          "$ref": "#/components/schemas/StringUpdateValue"
        }
      ],
      "description": "Content of the account note (or `null` if the content should not be updated).",
      "nullable": true
    },
    "Classifications": {
      "title": "Account note update classifications",
      "allOf": [
        {
          "$ref": "#/components/schemas/AccountNoteUpdateClassifications"
        }
      ],
      "description": "Classification of the account note."
    }
  },
  "additionalProperties": false,
  "x-schema-id": "AccountNoteUpdateParameters"
}