type.schema.json 527 字节
Newer Older
雪洛's avatar
雪洛 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
// 文档教程: https://uniapp.dcloud.net.cn/uniCloud/schema
{
  "bsonType": "object",
  "required": [],
  "permission": {
    "read": true,
    "create": true,
    "update": true,
    "delete": true
  },
  "properties": {
    "_id": {
      "description": "ID,系统自动生成"
    },
    "num": {
      "bsonType": "int"
    },
    "tag": {
      "bsonType": "string",
      "maxLength": 50,
      "minLength": 0
    },
    "date": {
      "bsonType": "date"
    },
    "point": {
      "bsonType": "object"
    }
  }
}