Mews · Schema

ImageUrlParameters

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
ClientToken string Token identifying the client application.
AccessToken string Access token of the client application.
Client string Name and version of the client application.
Images array Parameters of images whose URLs should be returned.
View JSON Schema on GitHub

JSON Schema

mews-imageurlparameters-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ImageUrlParameters",
  "title": "ImageUrlParameters",
  "required": [
    "AccessToken",
    "Client",
    "ClientToken",
    "Images"
  ],
  "type": "object",
  "properties": {
    "ClientToken": {
      "minLength": 1,
      "type": "string",
      "description": "Token identifying the client application."
    },
    "AccessToken": {
      "minLength": 1,
      "type": "string",
      "description": "Access token of the client application."
    },
    "Client": {
      "minLength": 1,
      "type": "string",
      "description": "Name and version of the client application."
    },
    "Images": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ImageSizeParameters"
      },
      "description": "Parameters of images whose URLs should be returned."
    }
  },
  "additionalProperties": false,
  "x-schema-id": "ImageUrlParameters"
}