Skip to content
Permalink
f9119579a0
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
60 lines (54 sloc) 1.76 KB
{"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 (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 representtion of dateOfBirth in Core Attribute Specification"
},
"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"}
}
}
}
}
}