opendb-verify-codes.schema.json 942 字节
Newer Older
study夏羽's avatar
study夏羽 已提交
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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
{
	"bsonType": "object",
	"properties": {
		"_id": {
			"description": "ID,系统自动生成"
		},
		"code": {
			"bsonType": "string",
			"description": "验证码"
		},
		"create_date": {
			"bsonType": "timestamp",
			"description": "创建时间"
		},
		"device_uuid": {
			"bsonType": "string",
			"description": "设备UUID,常用于图片验证码"
		},
		"email": {
			"bsonType": "string",
			"description": "邮箱"
		},
		"expired_date": {
			"bsonType": "timestamp",
			"description": "过期时间"
		},
		"ip": {
			"bsonType": "string",
			"description": "请求时客户端IP地址"
		},
		"mobile": {
			"bsonType": "string",
			"description": "手机号码"
		},
		"scene": {
			"bsonType": "string",
			"description": "使用验证码的场景,如:login, bind, unbind, pay"
		},
		"state": {
			"bsonType": "int",
			"description": "验证状态:0 未验证、1 已验证、2 已作废"
		}
	},
	"required": []
}