Mews · Schema

Service order note parameters

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
ServiceOrderId string Unique identifier of the `Service order` to which note will be added.
Text string Content of the service order note.
View JSON Schema on GitHub

JSON Schema

mews-serviceordernoteaddparameters-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ServiceOrderNoteAddParameters",
  "title": "Service order note parameters",
  "required": [
    "ServiceOrderId",
    "Text"
  ],
  "type": "object",
  "properties": {
    "ServiceOrderId": {
      "type": "string",
      "description": "Unique identifier of the `Service order` to which note will be added.",
      "format": "uuid"
    },
    "Text": {
      "minLength": 1,
      "type": "string",
      "description": "Content of the service order note."
    }
  },
  "additionalProperties": false,
  "x-schema-id": "ServiceOrderNoteAddParameters"
}