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 Apr 3, 2020
1 parent f1785e1 commit bb65584
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions schema/core-person.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Minimal Registry Person Schema from Internet2 T&I",
"description": "Minimal Registry Person Schema from Internet2 T&I",
"title": "JSON Schema for Minimal Registry Person from Internet2 T&I",
"description": "JSON Schema for Minimal Registry Person from Internet2 T&I",
"type": "object",
"properties": {
"name": {"$ref": "#/components/schemas/name"},
"logon-id": {"$ref": "#/components/schemas/logon-id"},
"iam-id": {"$ref": "#/components/schemas/iam-id"},
"prior-id": {"$ref": "#/components/schemas/prior-id"},
"sor-id": {"$ref": "#/components/schemas/sor-id"},
"subj-id": {"$ref": "#/components/schemas/subj-id"},
"datefbirth": {"$ref": "#/components/schemas/dateofbirth"},
"logonId": {"$ref": "#/components/schemas/logon-id"},
"iamId": {"$ref": "#/components/schemas/iam-id"},
"priorId": {"$ref": "#/components/schemas/prior-id"},
"sorId": {"$ref": "#/components/schemas/sor-id"},
"subjId": {"$ref": "#/components/schemas/subj-id"},
"datOfBirth": {"$ref": "#/components/schemas/dateofbirth"},
"email": {"$ref": "#/components/schemas/email"},
"phone": {"$ref": "#/components/schemas/phone"},
"personalPronoun": {"$ref": "#/components/schemas/personalPronoun"}
Expand All @@ -27,24 +27,24 @@
}
},

"logon-id": {
"logonId": {
"type": "string",
"description": "same as identifier/network in Core Attribute Specification. Mapped to target system ID, (__NAME__, in ConnID)"
},

"iam-id": {
"iamId": {
"type": "string",
"description": "same as identifier/enterprise in Core Attribute Specification; created on inbound mapping(?)"
},

"prior-id": {
"priorId": {
"type": "array",
"items": {
"type": "string"
}
},

"sor-id": {
"sorId": {
"type": "array",
"items": {
"type": "object",
Expand All @@ -55,12 +55,12 @@
}
},

"subj-id": {
"subjId": {
"type": "string",
"description": "Preferred personal pronoun"
},

"dateofbirth": {
"dateOfBirth": {
"type": "string",
"description": "Date of birth, string representtion of dateOfBirth in Core Attribute Specification"
},
Expand Down

0 comments on commit bb65584

Please sign in to comment.