diff --git a/schema/core-person.json b/schema/core-person.json index a66c40f..570262c 100644 --- a/schema/core-person.json +++ b/schema/core-person.json @@ -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"} @@ -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", @@ -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" },