Canonical URL

PCDSAuditorCertificate Credential

The credential issued for attestation of PCDS (Product Circularity Data Sheet) Auditors

Canonical URL
This property is deprecated. Please use the PCDSAgentCertificate certificate instead.
Property Description
familyName schema.org
The family name of the auditor.
givenName schema.org
The given name of the auditor.
certificationDate
The date that the auditor was certified.
issuedBy
The organization that certified the auditor.
Example

The following JSON object is an example of how data can be expressed in the credentialSubject section of a PCDSAuditorCertificate verifiable credential.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
{
	"id": "",
	"issuedBy": {
		"logo": "https://example.com/logo.png",
		"name": "Issuer A",
		"address": "Luxemburg",
		"certificationBodyId": "12345"
	},
	"familyName": "Doe",
	"givenName": "Jane",
	"certificationDate": "2022-03-01"
}

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
	"credentialPreview": {
		"@context": [
			"https://www.w3.org/2018/credentials/v1",
			"https://w3id.org/vc-revocation-list-2020/v1",
			{
				"description": "https://schema.org/description",
				"name": "https://schema.org/name",
				"PCDSAuditorCertificate": {
					"@id": "https://vocabulary.vc.compell.io/credentials/PCDSAuditorCertificate",
					"@context": {
						"@version": 1.1,
						"@protected": true,
						"schema": "https://schema.org/",
						"id": "@id",
						"type": "@type",
						"familyName": "schema:familyName",
						"givenName": "schema:givenName",
						"certificationDate": "schema:startDate",
						"issuedBy": {
							"@context": {
								"@protected": true,
								"@version": 1.1,
								"logo": {
									"@id": "schema:logo",
									"@type": "@id"
								},
								"name": "schema:name",
								"address": "schema:address",
								"certificationBodyId": "schema:identifier"
							},
							"@id": "schema:issuedBy"
						}
					}
				}
			}
		],
		"id": "",
		"type": [
			"VerifiableCredential",
			"PCDSAuditorCertificate"
		],
		"credentialSubject": {
			"id": "",
			"issuedBy": {
				"logo": "",
				"name": "",
				"address": "",
				"certificationBodyId": ""
			},
			"familyName": "",
			"givenName": "",
			"certificationDate": ""
		},
		"issuer": "did:...",
		"issuanceDate": "2020-12-01T07:47:01Z",
		"credentialSchema": {
			"id": "...",
			"type": "JsonSchemaValidator2021"
		},
		"description": [
			{
				"@language": "en",
				"@value": "A certificate that attests that the recipient is a certified PCDS Auditor."
			}
		],
		"name": [
			{
				"@language": "en",
				"@value": "PCDS Auditor Certificate"
			}
		]
	},
	"expires": "2023-12-01T07:47:01Z",
	"type": "CredentialOffer"
}
Copyright © 2022 Compellio S.A. All rights reserved.
Last modified on Nov 26, 2022 14:32