SMML要素: カタログ
SMMLカタログ要素は、物理レイヤーの一部であるカタログ・スキーマに対応します。カタログ・スキーマには、カタログ・オブジェクトおよび要素が含まれます。
Catalogの要素
-
name
(必須プロパティ) — カタログの名前。 -
description
— カタログの説明。 -
tags
— このオブジェクトに割り当てられたキーワード。この要素は、「タグ」フィールドに対応します。 -
dynamicName
— セッション変数を使用してカタログの名前が指定されている場合、この要素はそのセッション変数を参照します。
構文
{
"$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"
}
}
}