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.
fix:Income and sport certificate template and data
- Loading branch information
ManojNathIC
committed
Nov 28, 2024
1 parent
2a16b38
commit e109e96
Showing
3 changed files
with
166 additions
and
169 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,164 +1,161 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema", | ||
"type": "object", | ||
"properties": { | ||
"sportsParticipationCertificate": { | ||
"$ref": "#/definitions/sportsParticipationCertificate" | ||
} | ||
}, | ||
"required": ["sportsParticipationCertificate"], | ||
"title": "SportsParticipationCertificate", | ||
"definitions": { | ||
"sportsParticipationCertificate": { | ||
"$id": "#/properties/sportsParticipationCertificate", | ||
"type": "object", | ||
"title": "SportsParticipationCertificate Schema", | ||
"required": [ | ||
"studentId", | ||
"firstName", | ||
"lastName", | ||
"schoolName", | ||
"class", | ||
"eventName", | ||
"eventStartDate", | ||
"eventEndDate", | ||
"typeofSport", | ||
"orgName", | ||
"certificateNumber" | ||
], | ||
"uniqueIndexFields": ["studentId"], | ||
"properties": { | ||
"studentId": { | ||
"type": "string", | ||
"title": "Student Identifier" | ||
}, | ||
"schoolId": { | ||
"type": "string", | ||
"title": "School Identifier" | ||
}, | ||
"firstName": { | ||
"type": "string", | ||
"title": "First Name" | ||
}, | ||
"middleName": { | ||
"type": "string", | ||
"title": "Middle Name" | ||
}, | ||
"lastName": { | ||
"type": "string", | ||
"title": "Last Name" | ||
}, | ||
"schoolName": { | ||
"type": "string", | ||
"title": "School Name" | ||
}, | ||
"class": { | ||
"type": "string", | ||
"title": "Class" | ||
}, | ||
"addressLine1": { | ||
"type": "string", | ||
"title": "Address Line 1" | ||
}, | ||
"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" | ||
}, | ||
"organizingVenue": { | ||
"type": "string", | ||
"title": "Organizing Venue" | ||
}, | ||
"eventName": { | ||
"type": "string", | ||
"title": "Event Name" | ||
}, | ||
"eventStartDate": { | ||
"type": "string", | ||
"format": "date", | ||
"title": "Event Start Date" | ||
}, | ||
"eventEndDate": { | ||
"type": "string", | ||
"format": "date", | ||
"title": "Event End Date" | ||
}, | ||
"typeofSport": { | ||
"type": "string", | ||
"title": "Type of Sport" | ||
}, | ||
"rank": { | ||
"type": "string", | ||
"title": "Rank" | ||
}, | ||
"orgName": { | ||
"type": "string", | ||
"title": "Organization Name" | ||
}, | ||
"orgCode": { | ||
"type": "string", | ||
"title": "Organization Code" | ||
}, | ||
"orgType": { | ||
"type": "string", | ||
"title": "Organization Type" | ||
}, | ||
"orgOfficerName": { | ||
"type": "string", | ||
"title": "Organization Officer Name" | ||
}, | ||
"orgOfficerRank": { | ||
"type": "string", | ||
"title": "Organization Officer Rank" | ||
}, | ||
"orgDistrict": { | ||
"type": "string", | ||
"title": "Organization District" | ||
}, | ||
"orgPin": { | ||
"type": "string", | ||
"title": "Organization PIN Code" | ||
}, | ||
"orgState": { | ||
"type": "string", | ||
"title": "Organization State" | ||
}, | ||
"orgCountry": { | ||
"type": "string", | ||
"title": "Organization Country" | ||
}, | ||
"certificateNumber": { | ||
"type": "string", | ||
"title": "Certificate Number" | ||
}, | ||
"certificateNo": { | ||
"type": "string", | ||
"title": "Certificate No" | ||
}, | ||
"certificateId": { | ||
"type": "string", | ||
"title": "Certificate Id" | ||
} | ||
"$schema": "http://json-schema.org/draft-07/schema", | ||
"type": "object", | ||
"properties": { | ||
"sportsParticipationCertificate": { | ||
"$ref": "#/definitions/sportsParticipationCertificate" | ||
} | ||
}, | ||
"required": ["sportsParticipationCertificate"], | ||
"title": "SportsParticipationCertificate", | ||
"definitions": { | ||
"sportsParticipationCertificate": { | ||
"$id": "#/properties/sportsParticipationCertificate", | ||
"type": "object", | ||
"title": "SportsParticipationCertificate Schema", | ||
"required": [ | ||
"studentId", | ||
"firstName", | ||
"lastName", | ||
"schoolName", | ||
"class", | ||
"eventName", | ||
"eventStartDate", | ||
"eventEndDate", | ||
"typeofSport", | ||
"orgName", | ||
"certificateNumber" | ||
], | ||
"uniqueIndexFields": ["studentId"], | ||
"properties": { | ||
"studentId": { | ||
"type": "string", | ||
"title": "Student Identifier" | ||
}, | ||
"schoolId": { | ||
"type": "string", | ||
"title": "School Identifier" | ||
}, | ||
"firstName": { | ||
"type": "string", | ||
"title": "First Name" | ||
}, | ||
"middleName": { | ||
"type": "string", | ||
"title": "Middle Name" | ||
}, | ||
"lastName": { | ||
"type": "string", | ||
"title": "Last Name" | ||
}, | ||
"schoolName": { | ||
"type": "string", | ||
"title": "School Name" | ||
}, | ||
"class": { | ||
"type": "string", | ||
"title": "Class" | ||
}, | ||
"addressLine1": { | ||
"type": "string", | ||
"title": "Address Line 1" | ||
}, | ||
"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" | ||
}, | ||
"organizingVenue": { | ||
"type": "string", | ||
"title": "Organizing Venue" | ||
}, | ||
"eventName": { | ||
"type": "string", | ||
"title": "Event Name" | ||
}, | ||
"eventStartDate": { | ||
"type": "string", | ||
"title": "Event Start Date" | ||
}, | ||
"eventEndDate": { | ||
"type": "string", | ||
"title": "Event End Date" | ||
}, | ||
"typeofSport": { | ||
"type": "string", | ||
"title": "Type of Sport" | ||
}, | ||
"rank": { | ||
"type": "string", | ||
"title": "Rank" | ||
}, | ||
"orgName": { | ||
"type": "string", | ||
"title": "Organization Name" | ||
}, | ||
"orgCode": { | ||
"type": "string", | ||
"title": "Organization Code" | ||
}, | ||
"orgType": { | ||
"type": "string", | ||
"title": "Organization Type" | ||
}, | ||
"orgOfficerName": { | ||
"type": "string", | ||
"title": "Organization Officer Name" | ||
}, | ||
"orgOfficerRank": { | ||
"type": "string", | ||
"title": "Organization Officer Rank" | ||
}, | ||
"orgDistrict": { | ||
"type": "string", | ||
"title": "Organization District" | ||
}, | ||
"orgPin": { | ||
"type": "string", | ||
"title": "Organization PIN Code" | ||
}, | ||
"orgState": { | ||
"type": "string", | ||
"title": "Organization State" | ||
}, | ||
"orgCountry": { | ||
"type": "string", | ||
"title": "Organization Country" | ||
}, | ||
"certificateNumber": { | ||
"type": "string", | ||
"title": "Certificate 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
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