Skip to main content
Version: 3.1

StructureProperty 数据结构属性

结构声明

interface StructureProperty {
"concept": "StructureProperty", // 产品概念
"name": string, // 数据结构属性名称
"label": string, // 数据结构属性标题
"description": string, // 数据结构属性描述
"typeAnnotation": TypeAnnotation, // 类型
"required": boolean, // 是否必填
"defaultValue": string, // 默认值,JSON 字符串
"jsonName": string, // 数据结构字段 JSON 的序列化别名,JSON 字符串别名
}

示例

简单示例

{
"concept": "StructureProperty",
"name": "age",
"label": "年龄",
"description": "年龄描述",
"typeAnnotation": null,
"required": true,
"defaultValue": null,
"jsonName": null
}

详细参考Structure 数据结构-示例