update: uni-id-address

This commit is contained in:
handongxun 2021-01-28 14:19:12 +08:00
parent 9a35beca25
commit 407843108f

View File

@ -13,22 +13,27 @@
"name": {
"bsonType": "string",
"description": "收货人",
"title": "收货人"
"title": "收货人",
"trim": "both"
},
"alias": {
"bsonType": "string",
"description": "地址别名,例如:家、公司、学校",
"title": "地址别名"
"title": "地址别名",
"trim": "both"
},
"mobile": {
"bsonType": "string",
"description": "手机号码,加密存储",
"title": "手机号"
"title": "手机号",
"pattern": "^\\+?[0-9-]{3,20}$",
"trim": "both"
},
"mobile_area_code": {
"bsonType": "string",
"description": "国际区号,中国大陆为 +86",
"title": "国际区号"
"title": "国际区号",
"trim": "both"
},
"province_code": {
"bsonType": "string",
@ -55,26 +60,32 @@
"address": {
"bsonType": "string",
"description": "省市区后面的详细住址,包含街道小区房间号",
"title": "详细住址"
"title": "详细住址",
"trim": "both"
},
"formatted_address": {
"bsonType": "string",
"description": "完整地址信息,包括省市区及街道小区房间号"
"description": "完整地址信息,包括省市区及街道小区房间号",
"trim": "both"
},
"zip_code": {
"bsonType": "string",
"description": "邮编",
"title": "邮编"
"title": "邮编",
"trim": "both"
},
"email": {
"bsonType": "string",
"description": "邮箱",
"title": "邮箱"
"title": "邮箱",
"format": "email",
"trim": "both"
},
"default": {
"bsonType": "bool",
"description": "是否为默认地址",
"title": "默认地址"
"title": "默认地址",
"defaultValue": false
}
}
},