Tag attribute config schema

字段类型必填默认值描述
key
string
-标签名称
value
string
-标签值
type
string
enum标签属性为选择类型
required
boolean
-
options
array
-

Example

{
  "key": "标签-1",
  "value": "tag-label-1",
  "required": true,
  "type": "enum",
  "options": [
    {
      "key": "标签-1-1",
      "value": "tag-label-1-1"
    }
  ]
}
目录