Skip to content

Commit

Permalink
deploy: 477b4b0
Browse files Browse the repository at this point in the history
  • Loading branch information
nissimsan committed Oct 4, 2023
1 parent dabd7dd commit 52f6263
Show file tree
Hide file tree
Showing 8 changed files with 1,206 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contexts/traceability-v1.jsonld

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions credentials-with-issuer-dependent-terms.json
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,14 @@
"type": "EntryNumberCredential",
"count": 0
},
{
"type": "DigitalProductPassportDataCarrierCredential",
"count": 6
},
{
"type": "DigitalProductPassportCredential",
"count": 5
},
{
"type": "DeliveryStatementCredential",
"count": 0
Expand Down
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

0 comments on commit 52f6263

Please sign in to comment.