Skip to content

Commit

Permalink
Update core-person.json
Browse files Browse the repository at this point in the history
  • Loading branch information
khazelton authored Jul 25, 2018
1 parent ea8c210 commit 1ebc188
Showing 1 changed file with 56 additions and 23 deletions.
79 changes: 56 additions & 23 deletions schema/core-person.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,14 @@
"name": {
"$ref": "#/components/schemas/name"
},
"userName": {
"$ref": "#/components/schemas/userName"
"userLogon": {
"$ref": "#/components/schemas/userLogon"
},
"institutionalId": {
"$ref": "#/components/schemas/institutionalId"
},
"priorInstId": {
"$ref": "#/components/schemas/priorInstId"
},
"identifier": {
"$ref": "#/components/schemas/identifier"
Expand All @@ -26,6 +29,9 @@
},
"phone": {
"$ref": "#/components/schemas/phone"
},
"personalPronoun": {
"$ref": "#/components/schemas/personalPronoun"
}
},
"components":
Expand All @@ -49,48 +55,75 @@
}
}
},
"userName": {
"userLogon": {
"type": "string"
},
"institutionalId": {
"type": "string"
},
"priorInstId": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"source": {
"type": "string"
}
}
}
},
"identifier": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"source": {
"type": "string"
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"source": {
"type": "string"
}
}
}
},
"birthDate": {
"type": "string"
},
"email": {
"type": "object",
"properties": {
"emailAddress": {
"type": "array",
"items": {
"type": "object",
"properties": {
"emailAddress": {
"type": "string"
},
"emailType": {
"emailType": {
"type": "string"
}
}
},
}
},
"phone": {
"type": "object",
"properties": {
"phoneNumber": {
"type": "string"
},
"phoneType": {
"type": "string"
"type": "array",
"items": {
"type": "object",
"properties": {
"phoneNumber": {
"type": "string"
},
"phoneType": {
"type": "string"
}
}
}
},
"personalPronoun": {
"type": "string"
}
}
}
}
}

0 comments on commit 1ebc188

Please sign in to comment.