Uploading the Credential Schema
{
"name": "KYC Verifiable Credential",
"type": "KYC Verifiable Credential",
"credentialSubject": {
"type": "object",
"properties": {
"age": {
"type": "number",
"title": "age"
},
"firstName": {
"type": "string",
"title": "first_name"
},
"lastName": {
"type": "string",
"title": "last_name"
}
},
"required": ["age", "firstName", "lastName"]
}
}Last updated