Identifier 标识符
结构声明
- TS Declaration
- Java Class
- JSON Schema
interface Identifier {
"concept": "Identifier", // 产品概念
"namespace": string, // 命名空间,选择枚举时需要命名空间
"name": string, // 标识符名称
}
class IdentifierTreeNode {
ConceptEnum concept; // 产品概念
String namespace; // 命名空间,选择枚举时需要命名空间
String name; // 标识符名称
}
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$ref": "#/definitions/Identifier",
"definitions": {
"Identifier": {
"type": "object",
"properties": {
"concept": {
"type": "string",
"const": "Identifier"
},
"namespace": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"concept",
"namespace",
"name"
],
"additionalProperties": false
}
}
}
示例
简单示例
- JSON
- YAML
{
"concept": "Identifier",
"namespace": null,
"name": null
}
concept: Identifier
namespace: null
name: null