Mews · Schema

Date filter interval

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
Start string Starting date of the interval in ISO 8601 format.
End string Ending date of the interval in ISO 8601 format.
View JSON Schema on GitHub

JSON Schema

mews-datefilterinterval-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DateFilterInterval",
  "title": "Date filter interval",
  "required": [
    "End",
    "Start"
  ],
  "type": "object",
  "properties": {
    "Start": {
      "minLength": 1,
      "type": "string",
      "description": "Starting date of the interval in ISO 8601 format.",
      "format": "date"
    },
    "End": {
      "minLength": 1,
      "type": "string",
      "description": "Ending date of the interval in ISO 8601 format.",
      "format": "date"
    }
  },
  "additionalProperties": false,
  "x-schema-id": "DateFilterInterval"
}