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 Jan 14, 2020
1 parent 9a3b9fa commit e95f37d
Showing 1 changed file with 19 additions and 8 deletions.
27 changes: 19 additions & 8 deletions schema/core-person.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@
"name": {"$ref": "#/components/schemas/name"},
"logon-id": {"$ref": "#/components/schemas/logon-id"},
"iam-id": {"$ref": "#/components/schemas/iam-id"},
"priorSubject-id": {"$ref": "#/components/schemas/priorSubject-id"},
"ext-id": {"$ref": "#/components/schemas/ext-id"},
"prior-id": {"$ref": "#/components/schemas/prior-id"},
"sor-id": {"$ref": "#/components/schemas/sor-id"},
"sub-id": {"$ref": "#/components/schemas/sub-id"
"birthDate": {"$ref": "#/components/schemas/birthDate"},
"email": {"$ref": "#/components/schemas/email"},
"phone": {"$ref": "#/components/schemas/phone"},
Expand All @@ -29,21 +30,25 @@
"nameType": {"type": "string"}
}
},

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

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

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

"sor-id": {
"type": "array",
"items": {
"type": "object",
Expand All @@ -53,9 +58,13 @@
"source": {"type": "string"},
"id": {"type": "string"}
}

}
},
},

"sub-id": {
"type": "string",
"description": "Identifier used in federated scenarios, now SAML identifier profile 'subject-id'",
},

"birthDate": {"type": "string"},
"email": {
"type": "array",
Expand All @@ -66,6 +75,7 @@
}
}
},

"phone": {
"type": "array",
"description": "same as telephoneNumber in Core Attribute Specification",
Expand All @@ -77,6 +87,7 @@
}
}
},

"personalPronoun": {"type": "string"}
}
}
Expand Down

0 comments on commit e95f37d

Please sign in to comment.