IdHub/idhub/templates/credentials/e-operator-claim.json

68 lines
1.9 KiB
JSON
Raw Normal View History

2024-01-25 10:55:28 +00:00
{
"@context": [
"https://www.w3.org/2018/credentials/v1",
"https://idhub.pangea.org/credentials/base/v1",
2024-02-08 09:37:31 +00:00
"https://idhub.pangea.org/credentials/e-operator-claim/v1"
2024-01-25 10:55:28 +00:00
],
"id": "{{ vc_id }}",
"type": [
"VerifiableCredential",
"VerifiableAttestation",
"EOperatorClaim"
],
"issuer": {
"id": "{{ issuer_did }}",
"name": "{{ organisation }}"
},
"issuanceDate": "{{ issuance_date }}",
"validFrom": "{{ issuance_date }}",
"validUntil": "{{ validUntil }}",
"name": [
{
"value": "Product and waste electronics operator claim",
"lang": "en"
},
{
"value": "Declaració d'operador de productes i residus electrònics",
"lang": "ca_ES"
},
{
"value": "Declaración de operador de productos y residuos electrónicos",
"lang": "es"
}
],
"description": [
{
"value": "Credential for e-product and e-waste operator claim",
"lang": "en"
},
{
"value": "Credencial per operador de productes i residus electrònics",
"lang": "ca_ES"
},
{
"value": "Credencial para operador de productos y residuos electrónicos",
"lang": "es"
}
],
"credentialSubject": {
"id": "{{ subject_did }}",
"legalName": "{{ legalName }}",
"accreditedBy": "{{ accreditedBy }}",
"operatorNumber": "{{ operatorNumber }}",
"limitJurisdiction": "{{ limitJurisdiction }}",
"accreditedFor": "{{ accreditedFor }}",
2024-02-08 09:37:31 +00:00
"role": "{{ role }}",
"email": "{{ email }}"
2024-01-25 10:55:28 +00:00
},
2024-02-14 16:08:41 +00:00
"credentialStatus": {
"id": "{{ credential_status_id}}",
2024-02-14 16:08:41 +00:00
"type": "RevocationBitmap2022",
"revocationBitmapIndex": "{{ id_credential }}"
},
2024-01-25 10:55:28 +00:00
"credentialSchema": {
"id": "https://idhub.pangea.org/vc_schemas/federation-membership.json",
"type": "FullJsonSchemaValidator2021"
}
}