SMML Elements: Catalog

The SMML catalog element corresponds to the catalog schema which is part of the physical layer. The catalog schema contains the catalog object and elements.

Catalog Elements

  • name (required property) — The name of the catalog.

  • description — The description of the catalog.

  • tags — The keywords assigned to this object. This element corresponds to the Tags field.

  • dynamicName — If a session variable is being used to specify the name of the catalog, this element references that session variable.

Syntax

{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "$ref": "#/definitions/catalog",
    "definitions": {
        "catalog": {
            "type": "object",
            "additionalProperties": false,
            "properties": {
                "name": {
                    "type": "string"
                },
                "description": {
                    "type": "string"
                },
                "tags": {
                    "type": "array",
                    "items": {
                        "type": "string"
                    }
                },
                "dynamicName": {
                    "type": "string"
                }
            },
            "required": [
                "name"
            ],
            "title": "PhysicalCatalog"
        }
    }
}