24 lines
717 B
Django/Jinja
24 lines
717 B
Django/Jinja
{
|
|
"@context": [
|
|
"https://www.w3.org/2018/credentials/v1",
|
|
{
|
|
"title" : "trustchain:title",
|
|
"first_name": "trustchain:firstname",
|
|
"last_name": "trustchain:lastname",
|
|
"coutry_of_origin": "trustchain:countryoforigin",
|
|
"rescue_date": "trustchain:rescuedate",
|
|
}
|
|
],
|
|
"id": "{{ vc_id }}",
|
|
"type": ["VerifiableCredential"],
|
|
"issuer": "{{ issuer_did }}",
|
|
"issuanceDate": "{{ issuance_date }}",
|
|
"credentialSubject": {
|
|
"id": "{{ subject_did }}",
|
|
"first_name": "{{ first_name }}",
|
|
"last_name": "{{ last_name }}",
|
|
"country_of_origin": "{{ country_of_origin }}",
|
|
"rescue_date": "{{ rescue_date}}"
|
|
}
|
|
}
|