type.schema.json 527 B

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