Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
{"title": "Minimal Registry Person Schema from Internet2 T&I",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Minimal Registry Person Schema from Internet2 T&I",
"type": "object",
"properties": {
"name": {
"type": "object",
"properties": {
"familyName": {"type": "string"},
"givenName": {"type": "string"},
"middleName": {"type": "string"},
"nameType": {"type": "string"}
}
},
"logonId": {
"type": "string",
"description": "same as identifier/network in Core Attribute Specification. Mapped to target system ID, (__NAME__, in ConnID)"
},
"iamId": {
"type": "string",
"description": "same as identifier/enterprise in Core Attribute Specification; created on inbound mapping(?)"
},
"priorId": {
"type": "array",
"items": {
"type": "string"
}
},
"sorId": {
"type": "array",
"items": {
"type": "object",
"properties": {
"source": {"type": "string"},
"id": {"type": "string"}
}
}
},
"subjId": {
"type": "string",
"description": "Preferred personal pronoun"
},
"dateOfBirth": {
"type": "string",
"description": "Date of birth, string representtion of dateOfBirth in Core Attribute Specification"
},
"email": {
"type": "array",
"items": {
"type": "object",
"properties": {
"emailAddress": {"type": "string"},
"emailType": {"type": "string"} }
}
},
"phone": {
"type": "array",
"description": "same as telephoneNumber in Core Attribute Specification",
"items": {
"type": "object",
"properties": {
"phoneNumber": {"type": "string"},
"phoneType": {"type": "string"}
}
}
},
"personalPronoun": {
"type": "string",
"description": "Preferred personal pronoun"}
}
}