Created
October 13, 2025 05:49
-
-
Save Vishwas1/99b44a6af94e112ce99be5ab174ad9ca to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| { | |
| "name": "IIT Entrance Exam Admit Card", | |
| "description": "Admit card for IIT entrance exam", | |
| "$schema": "https://json-schema.org/draft/2020-12/schema", | |
| "$id": "https://gist.githubusercontent.com/Vishwas1/99b44a6af94e112ce99be5ab174ad9ca/raw/1a18cbd82f7a58a06434251548a75d4ac5607623/credentialSchema.json", | |
| "type": "object", | |
| "properties": { | |
| "credentialSubject": { | |
| "type": "object", | |
| "properties": { | |
| "id": { | |
| "title": "Credential subject id", | |
| "type": "string", | |
| "description": "Credential subject identifier" | |
| }, | |
| "attributes": { | |
| "title": "Attributes", | |
| "description": "Credential attributes", | |
| "type": "object", | |
| "properties": { | |
| "Name": { | |
| "title": "Name", | |
| "type": "string", | |
| "description": "name of the student" | |
| }, | |
| "RegNo": { | |
| "title": "Reg No", | |
| "type": "string", | |
| "description": "Registration number of the student" | |
| } | |
| }, | |
| "required": [ | |
| "Name", | |
| "RegNo" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "id", | |
| "attributes" | |
| ] | |
| } | |
| }, | |
| "required": [ | |
| "credentialSubject" | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment