Mews · Schema

User

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
FirstName string First name of the user.
LastName string Last name of the user.
ImageUrl string URL of the profile image.
View JSON Schema on GitHub

JSON Schema

mews-devicecommandcreator-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DeviceCommandCreator",
  "title": "User",
  "required": [
    "LastName"
  ],
  "type": "object",
  "properties": {
    "FirstName": {
      "type": "string",
      "description": "First name of the user.",
      "nullable": true
    },
    "LastName": {
      "minLength": 1,
      "type": "string",
      "description": "Last name of the user."
    },
    "ImageUrl": {
      "type": "string",
      "description": "URL of the profile image.",
      "format": "uri",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "x-schema-id": "DeviceCommandCreator"
}