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-09/schema#",
"description": "Minimal Registry Person Schema from Internet2 T&I (2020-08-17)",
"type": "object",
"properties": {
"name": {
"type": "object",
"properties": {
"family": {
"type": "string"
},
"given": {
"type": "string"
},
"middle": {
"type": "string"
},
"type": {
"type": "string"
}
}
},
"identifier": {
"type": "array",
"items": {
"type": "object",
"properties": {
"value": {
"type": "string"
},
"type": {
"type": "string"
},
"description": {
"type": "string"
}
}
}
},
"dateOfBirth": {
"type": "string",
"description": "Date of birth, string representation of dateOfBirth in TAP Core Schema Date in ISO 8601 (YYYY-MM-DD)",
"email": {
"type": "array",
"items": {
"type": "object",
"properties": {
"address": {
"type": "string"
},
"type": {
"type": "string"
},
"verified": {
"type": "string"
}
}
}
},
"telephoneNumber": {
"type": "array",
"description": "same as telephoneNumber in Core Attribute Specification",
"items": {
"type": "object",
"properties": {
"number": {
"type": "string"
},
"type": {
"type": "string"
},
"verified": {
"type": "string"
}
}
}
},
"personalPronoun": {
"type": "string",
"description": "Preferred personal pronoun"
}
}
}
}