forked from tekdi/ubi-vc-issuance-mw
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
ManojNathIC
committed
Nov 28, 2024
1 parent
e4da20a
commit 5e78268
Showing
2 changed files
with
127 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,132 +1,130 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema", | ||
"type": "object", | ||
"properties": { | ||
"janAadharCertificate": { | ||
"$ref": "#/definitions/janAadharCertificate" | ||
} | ||
}, | ||
"required": ["janAadharCertificate"], | ||
"title": "JanAadharCertificate", | ||
"definitions": { | ||
"janAadharCertificate": { | ||
"$id": "#/properties/janAadharCertificate", | ||
"type": "object", | ||
"title": "JanAadharCertificate Schema", | ||
"required": [ | ||
"studentId", | ||
"familyIdentificationNumber", | ||
"firstName", | ||
"lastName", | ||
"gender", | ||
"dob", | ||
"personalIdentificationNumber", | ||
"addressLine1", | ||
"vtc", | ||
"district", | ||
"state", | ||
"country" | ||
], | ||
"uniqueIndexFields": ["studentId"], | ||
"properties": { | ||
"studentId": { | ||
"type": "string", | ||
"title": "Student Identifier" | ||
}, | ||
"schoolId": { | ||
"type": "string", | ||
"title": "School Identifier" | ||
}, | ||
"familyIdentificationNumber": { | ||
"type": "string", | ||
"title": "Family Identification Number" | ||
}, | ||
"firstName": { | ||
"type": "string", | ||
"title": "First Name" | ||
}, | ||
"middleName": { | ||
"type": "string", | ||
"title": "Middle Name" | ||
}, | ||
"lastName": { | ||
"type": "string", | ||
"title": "Last Name" | ||
}, | ||
"gender": { | ||
"type": "string", | ||
"title": "Gender" | ||
}, | ||
"dob": { | ||
"type": "string", | ||
"format": "date", | ||
"title": "Date of Birth" | ||
}, | ||
"personalIdentificationNumber": { | ||
"type": "string", | ||
"title": "Personal Identification Number" | ||
}, | ||
"familyBankAccountNumber": { | ||
"type": "string", | ||
"title": "Family Bank Account Number" | ||
}, | ||
"addressLine1": { | ||
"type": "string", | ||
"title": "Address Line 1" | ||
}, | ||
"addressLine2": { | ||
"type": "string", | ||
"title": "Address Line 2" | ||
}, | ||
"vtc": { | ||
"type": "string", | ||
"title": "Village/Town/City" | ||
}, | ||
"district": { | ||
"type": "string", | ||
"title": "District" | ||
}, | ||
"pin": { | ||
"type": "string", | ||
"title": "PIN Code" | ||
}, | ||
"state": { | ||
"type": "string", | ||
"title": "State" | ||
}, | ||
"country": { | ||
"type": "string", | ||
"title": "Country" | ||
}, | ||
"relationwithFamilyLeader": { | ||
"type": "string", | ||
"title": "Relation with Family Leader" | ||
}, | ||
"orgName": { | ||
"type": "string", | ||
"title": "Organization Name" | ||
}, | ||
"orgType": { | ||
"type": "string", | ||
"title": "Organization Type" | ||
}, | ||
"idNumber": { | ||
"type": "string", | ||
"title": "ID Number" | ||
}, | ||
"certificateNo": { | ||
"type": "string", | ||
"title": "Certificate No" | ||
}, | ||
"certificateId": { | ||
"type": "string", | ||
"title": "Certificate Id" | ||
} | ||
"$schema": "http://json-schema.org/draft-07/schema", | ||
"type": "object", | ||
"properties": { | ||
"janAadharCertificate": { | ||
"$ref": "#/definitions/janAadharCertificate" | ||
} | ||
}, | ||
"required": ["janAadharCertificate"], | ||
"title": "JanAadharCertificate", | ||
"definitions": { | ||
"janAadharCertificate": { | ||
"$id": "#/properties/janAadharCertificate", | ||
"type": "object", | ||
"title": "JanAadharCertificate Schema", | ||
"required": [ | ||
"studentId", | ||
"familyIdentificationNumber", | ||
"firstName", | ||
"lastName", | ||
"gender", | ||
"dateOfBirth", | ||
"personalIdentificationNumber", | ||
"addressLine1", | ||
"vtc", | ||
"district", | ||
"state", | ||
"country" | ||
], | ||
"uniqueIndexFields": ["studentId"], | ||
"properties": { | ||
"studentId": { | ||
"type": "string", | ||
"title": "Student Identifier" | ||
}, | ||
"schoolId": { | ||
"type": "string", | ||
"title": "School Identifier" | ||
}, | ||
"familyIdentificationNumber": { | ||
"type": "string", | ||
"title": "Family Identification Number" | ||
}, | ||
"firstName": { | ||
"type": "string", | ||
"title": "First Name" | ||
}, | ||
"middleName": { | ||
"type": "string", | ||
"title": "Middle Name" | ||
}, | ||
"lastName": { | ||
"type": "string", | ||
"title": "Last Name" | ||
}, | ||
"gender": { | ||
"type": "string", | ||
"title": "Gender" | ||
}, | ||
"dateOfBirth": { | ||
"type": "string", | ||
"title": "Date of Birth" | ||
}, | ||
"personalIdentificationNumber": { | ||
"type": "string", | ||
"title": "Personal Identification Number" | ||
}, | ||
"familyBankAccountNumber": { | ||
"type": "string", | ||
"title": "Family Bank Account Number" | ||
}, | ||
"addressLine1": { | ||
"type": "string", | ||
"title": "Address Line 1" | ||
}, | ||
"addressLine2": { | ||
"type": "string", | ||
"title": "Address Line 2" | ||
}, | ||
"vtc": { | ||
"type": "string", | ||
"title": "Village/Town/City" | ||
}, | ||
"district": { | ||
"type": "string", | ||
"title": "District" | ||
}, | ||
"pin": { | ||
"type": "string", | ||
"title": "PIN Code" | ||
}, | ||
"state": { | ||
"type": "string", | ||
"title": "State" | ||
}, | ||
"country": { | ||
"type": "string", | ||
"title": "Country" | ||
}, | ||
"relationwithFamilyLeader": { | ||
"type": "string", | ||
"title": "Relation with Family Leader" | ||
}, | ||
"orgName": { | ||
"type": "string", | ||
"title": "Organization Name" | ||
}, | ||
"orgType": { | ||
"type": "string", | ||
"title": "Organization Type" | ||
}, | ||
"idNumber": { | ||
"type": "string", | ||
"title": "ID Number" | ||
}, | ||
"certificateNo": { | ||
"type": "string", | ||
"title": "Certificate No" | ||
}, | ||
"certificateId": { | ||
"type": "string", | ||
"title": "Certificate Id" | ||
} | ||
} | ||
}, | ||
"_osConfig": { | ||
"inviteRoles": ["anonymous"] | ||
} | ||
}, | ||
"_osConfig": { | ||
"inviteRoles": ["anonymous"] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters