32 lines
1.0 KiB
JSON
32 lines
1.0 KiB
JSON
{
|
|
"@context": [
|
|
"https://www.w3.org/2018/credentials/v1",
|
|
{
|
|
"name": "https://schema.org/name",
|
|
"email": "https://schema.org/email",
|
|
"membershipType": "https://schema.org/memberOf",
|
|
"individual": "https://schema.org/Person",
|
|
"organization": "https://schema.org/Organization",
|
|
"Member": "https://schema.org/Member",
|
|
"startDate": "https://schema.org/startDate",
|
|
"jsonSchema": "https://schema.org/jsonSchema",
|
|
"$ref": "https://schema.org/jsonSchemaRef"
|
|
}
|
|
],
|
|
"type": ["VerifiableCredential", "VerifiableAttestation"],
|
|
"id": "{{ vc_id }}",
|
|
"issuer": "{{ issuer_did }}",
|
|
"issuanceDate": "{{ issuance_date }}",
|
|
"credentialSubject": {
|
|
"id": "{{ subject_did }}",
|
|
"Member": {
|
|
"name": "{{ name }}",
|
|
"email": "{{ email }}",
|
|
"membershipType": "{{ membershipType }}",
|
|
"startDate": "{{ startDate }}"
|
|
},
|
|
"jsonSchema": {
|
|
"$ref": "https://gitea.pangea.org/trustchain-oc1-orchestral/schemas/member-schema.json"
|
|
}
|
|
}
|
|
} |