Mews · Schema

Parent product category

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
Id string Unique identifier of the product category.
Names object All translations of the name.
View JSON Schema on GitHub

JSON Schema

mews-parentproductcategory-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ParentProductCategory",
  "title": "Parent product category",
  "required": [
    "Id",
    "Names"
  ],
  "type": "object",
  "properties": {
    "Id": {
      "type": "string",
      "description": "Unique identifier of the product category.",
      "format": "uuid"
    },
    "Names": {
      "title": "Localized text",
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "description": "All translations of the name.",
      "x-schema-id": "LocalizedStrings"
    }
  },
  "additionalProperties": false,
  "description": "",
  "x-schema-id": "ParentProductCategory"
}