foreign.schema.json 436 B

12345678910111213141516171819202122232425
  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. "id": {
  16. "bsonType": "string"
  17. },
  18. "name": {
  19. "bsonType": "string"
  20. },
  21. "tag": {
  22. "bsonType": "string"
  23. }
  24. }
  25. }