Files
APP/uniCloud-aliyun/database/jq-usr-device.schema.json

24 lines
443 B
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 文档教程: https://uniapp.dcloud.net.cn/uniCloud/schema
{
"bsonType": "object",
"required": [],
"permission": {
"read": true,
"create": true,
"update": true,
"delete": true
},
"properties": {
"_id": {
"description": "ID系统自动生成"
},
"phone":{
"bsonType": "string",
"description": "用户手机号"
},
"pushcid":{
"bsonType": "string",
"description": "用户的推送cid"
}
}
}