abbshr / Git-Contacts

A Contacts Backend base on Git
1 stars 0 forks source link

Card format #2

Open evianzhow opened 9 years ago

evianzhow commented 9 years ago

字段格式规定如下:

{
  "id": String,
  "firstname": String,
  "lastname": String,
  "mobile": Array of Strings,
  "phone": Array of Strings,
  "email": Array of Strings,
  "birthday": String(YYYY-MM-DD),
  "address": String,
  "im": {
    "type": String
  },
  "owner": String
}
abbshr commented 9 years ago

我把idowner单独放到meta字段里

{
  "meta": {
    "id": String,
    "owner": String
  },
  "firstname": String,
  "lastname": String,
  "mobile": Array of Strings,
  "phone": Array of Strings,
  "email": Array of Strings,
  "birthday": String(YYYY-MM-DD),
  "address": String,
  "im": {
    "type": String
  }
}