Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Digital Product Passport #883

Merged
merged 7 commits into from
Oct 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,224 @@
$linkedData:
term: DigitalProductPassportCredential
'@id': https://w3id.org/traceability#DigitalProductPassportCredential
title: Digital Product Passport Data Carrier Credential
tags:
- eCommerce
- Other
description: European Commission Digital Product Passport.
type: object
properties:
'@context':
type: array
readOnly: true
const:
- https://www.w3.org/2018/credentials/v1
- https://w3id.org/traceability/v1
default:
- https://www.w3.org/2018/credentials/v1
- https://w3id.org/traceability/v1
items:
type: string
enum:
- https://www.w3.org/2018/credentials/v1
- https://w3id.org/traceability/v1
type:
type: array
readOnly: true
const:
- VerifiableCredential
- DigitalProductPassportCredential
default:
- VerifiableCredential
- DigitalProductPassportCredential
items:
type: string
enum:
- VerifiableCredential
- DigitalProductPassportCredential
id:
type: string
issuanceDate:
type: string
expirationDate:
type: string
issuer:
title: Issuer Organization
description: Commercial invoice issuing organization.
type: object
properties:
type:
type: array
readOnly: true
const:
- Organization
default:
- Organization
items:
type: string
enum:
- Organization
id:
title: Issuer's Identifier
description: Issuing organization identifier, typically a Decentralized Identifier (DID).
type: string
format: uri
name:
title: Organization Name
description: Issuing organization name.
type: string
additionalProperties: true
required:
- type
- id
- name
credentialSchema:
type: object
properties:
id:
title: Id
description: The URL of the schema file with which to validate the shape of the JSON object.
type: string
format: uri
example: https://w3id.org/traceability/openapi/components/schemas/credentials/DigitalProductPassportCredential.yml
type:
title: Type
description: The type of validation to be run against the defined schema.
const: OpenApiSpecificationValidator2022
credentialSubject:
title: Digital Product Passport
type: object
properties:
type:
type: array
readOnly: true
const:
- DigitalProductPassport
default:
- DigitalProductPassport
items:
type: string
enum:
- DigitalProductPassport
product:
title: Product
description: Basic product data.
type: object
properties:
type:
type: array
readOnly: true
const:
- Product
default:
- Product
items:
type: string
enum:
- Product
image:
title: Product Image
type: string
name:
title: Product Name
type: string
description:
title: Product Description
type: string
id:
title: Product Identifier
type: string
format: uri
url:
title: Product Website
type: string
format: uri
brand:
title: Brand
description: Brand Owner
type: object
properties:
type:
type: array
readOnly: true
const:
- Organization
default:
- Organization
items:
type: string
enum:
- Organization
name:
title: Product Name
type: string
id:
title: Product Identifier
type: string
format: uri
url:
title: Product Website
type: string
format: uri
required:
- type
- name
- id
required:
- type
- name
- id
required:
- type
- product
additionalProperties: true
required:
- '@context'
- type
- id
- issuanceDate
- issuer
- credentialSubject
example: |-
{
"@context": [
"https://www.w3.org/2018/credentials/v1",
"https://w3id.org/traceability/v1"
],
"type": [
"VerifiableCredential",
"DigitalProductPassportCredential"
],
"id": "urn:uuid:e6adbeb6-2n1s-4662-bd84-322d903ae735",
"issuer": {
"type": [
"Organization"
],
"id": "did:web:byacre.com",
"name": "byACRE"
},
"issuanceDate": "2023-06-23T10:00:00.000Z",
"credentialSubject": {
"type": [
"DigitalProductPassport"
],
"product": {
"type": [
"Product"
],
"image": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mP8z8BQDwAEhQGAhKmMIQAAAABJRU5ErkJggg==,
"name": "Nordic Pioneer",
"description": "Versatile, light weight and eco-friendly rollator",
"id": "https://www.byacre.com/nordic-pioneer/",
"gtin": "https://id.gs1.org/01/012345678901112",
"brand": {
"type": [
"Organization"
],
"name": "byACRE",
"id": "did:web:byacre.com",
"url": "https://byacre.com"
}
}
}
}
Loading
Loading