Bricks Schema 中文文档:图像控件

📄 原始资料  |  展开查看原始 JSON(image.json){ “$schema”: “https://json-schema.org/draft/2020-12/schema”, “$id”: “bricks://controls/image”, “schemaVersion”: “2.3”, “title”: “Image Control”, “description”: “Image settings”, “controlProperties”: [ “type”, “hasRequired”, “label”, “tab”, “group” ], “type…

📄 原始资料  |  展开查看原始 JSON(image.json)
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "bricks://controls/image",
  "schemaVersion": "2.3",
  "title": "Image Control",
  "description": "Image settings",
  "controlProperties": [
    "type",
    "hasRequired",
    "label",
    "tab",
    "group"
  ],
  "type": "object",
  "properties": {
    "id": {
      "type": [
        "string",
        "integer"
      ]
    },
    "filename": {
      "type": "string"
    },
    "url": {
      "type": "string"
    },
    "size": {
      "type": "string"
    },
    "full": {
      "type": "string"
    },
    "useDynamicData": {
      "type": "string"
    }
  },
  "titleZh": "图像控件",
  "descriptionZh": "图像设置。"
}

前言

图像设置。

基本信息

  • 英文名称Image Control
  • 中文名称:图像控件
  • Schema IDbricks://controls/image
  • Schema 版本2.3
  • 类型object

属性

  • id (["string", "integer"])
  • filename (string)
  • url (string)
  • size (string)
  • full (string)
  • useDynamicData (string)

Schema 定义

完整 JSON 定义

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "bricks://controls/image",
  "schemaVersion": "2.3",
  "title": "Image Control",
  "description": "Image settings",
  "controlProperties": [
    "type",
    "hasRequired",
    "label",
    "tab",
    "group"
  ],
  "type": "object",
  "properties": {
    "id": {
      "type": [
        "string",
        "integer"
      ]
    },
    "filename": {
      "type": "string"
    },
    "url": {
      "type": "string"
    },
    "size": {
      "type": "string"
    },
    "full": {
      "type": "string"
    },
    "useDynamicData": {
      "type": "string"
    }
  },
  "titleZh": "图像控件",
  "descriptionZh": "图像设置。"
}

补充说明

更多细节可参考 Bricks 官方 Academy 文档