SMML Elements: Business Model

The SMML business model element corresponds to the business model schema that is part of the logical layer in a semantic model. The business model schema contains business model objects and their elements.

Business Model Elements

  • name (required property) — The name of the business model.

  • description — The description of the business model.

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

  • disable — If set to TRUE, used to disable the logical table.

Syntax

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