This specification describes a Linked Data vocabulary for asserting Verifiable Credentials related to traceability information, such as chemical properties, mechanical properties, country of origin, and other attributes used to determine the status of a products and materials in a supply chain.
We encourage contributions meeting the Contribution Guidelines. While we prefer the creation of issues and Pull Requests in the GitHub repository, discussions often occur on the public-credentials mailing list as well.
If you are only interested in the vocabulary itself, the items contained therein, and/or the example Verifiable Credentials, please see the spec itself.
If you are a developer who is interested in working directly with the vocabulary, possibly adding schemas, and/or running tests and viewing details of how the JSON-JD and resultant Verifiable Credentials are built, then read on.
To get started building, testing, or contributing to this repository, you will need Node.js
and git
.
After you have the dependencies, the first time setup is as follows:
-
checkout this repository
$ git checkout https://github.com/w3c-ccg/traceability-vocab.git
-
Once the repository is checked out, run
npm install
in the created directory to get all project dependencies$ cd traceability-vocab $ npm install
-
After the repository is checked out, and all dependencies have been installed, then you can build the vocabulary itself
$ npm runbuild:all
This can take a while, as it will run through the entire process of merging the individual schemas, creating test vectors, and ultimately creating a signed verifiable credential for each vocabulary item. If you would like to view details on the build process, please see the README located in the actual schemas build project folder.
-
Finally, once everything is built and tested, you can serve up the spec and related documentation locally:
$ npx serve docs
This repository takes a "test / code first" approach to vocabulary development and deals specifically with data types required for track and trace of supply chain data, particularly in a cross border context. Focus is especially given to schema objects that describe common supply chain elements, shared by multiple use cases, as well as to items for which inspections and audits may be required, and thereby merit creation of Verifiable Credentials to store the results of such an inspection for verification by a third party.
In order to have your contributions accepted you MUST:
- Add synthetic data generation for any new data types / vocabulary terms.
- Add any "special case" testing you believe is helpful for your data structures.
- Run all tests locally and ensure they are all passing.
- Generate the latest version of the spec to include your changes to vocabulary / data model.
- Open a Pull Request with your changes, a clear description of them in the description, and demonstrate passing CI Tests.
- Any references to schemas you wish to include in your schema should be recreated locally and referenced there. In these local schemas, only include the properties relevant to the schema you have created. For example, Person is an existing schema on schema.org, but a Person.json schema has been added to this repo, including only the relevant and used properties for the other traceability schemas. This is to hopefully make traceability schemas easier to understand and manage by not incorporating too many unnecessarily large schemas. The schemas that have been made local in this way (like Person.json) should still reference the schema.org entry like so:
"$comment": "{\"term\": \"Person\", \"@id\": \"https://schema.org/Person\"}",
Pull requests will not as a rule be merged if any conflicts exist, or if testing is incomplete.
Any changes that potentially introduce breaking or non-backwards compatible functionality MUST have a corresponding issue and discussion, and will require consensus from the editors in order to be introduced or to have any related Pull Requests accepted and merged.
A one week (7 day) period will be provided for review of pull requests related to data schemas or project functionality prior to merge to allow sufficient review time. Exceptions may be made for essential documentation, or to allow for immediate "hotfix" of security issues or functionality breaking items.
This repository hosts JSON Schema which it uses to create JSON-LD.
All JSON Schema must have an $id
property, and it must resolve to the JSON-Schema Document.
For example see https://w3id.org/traceability/schemas/Person.json.
We are currently 🚧 EXPERIMENTING 🚧 with injecting JSON-LD concepts like @id
and @type
in JSON Schema using $comment
.
For example see:
"$id": "https://w3id.org/traceability/schemas/Person.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"$comment": "{\"term\": \"Person\", \"@id\": \"https://schema.org/Person\"}",
"title": "Person",
"description": "A person",
These attributes are then used to deterministically build a JSON-LD context hosted at:
https://w3id.org/traceability/v1
This context can then be used to produce verifiable credentials for supply chain traceability, for example:
{
"@context": [
"https://www.w3.org/2018/credentials/v1",
"https://w3id.org/traceability/v1"
],
"id": "https://example.com/123",
"type": ["VerifiableCredential"],
"issuer": {
"id": "did:key:z6MkoTHsgNNrby8JzCNQ1iRLyW5QQ6R8Xuu6AA8igGrMVPUM"
},
"issuanceDate": "2020-03-10T04:24:12.164Z",
"expirationDate": "2029-03-10T04:24:12.164Z",
"credentialSubject": {
"id": "did:example:123",
"type": "Place",
"address": {
"type": "PostalAddress",
"organizationName": "Bednar - Kutch",
"streetAddress": "8440 Khalid Canyon",
"addressLocality": "Gislasonland",
"addressRegion": "Ohio",
"postalCode": "96546",
"addressCountry": "Liechtenstein"
}
},
"proof": {
"type": "Ed25519Signature2018",
"created": "2021-02-09T21:54:29.223Z",
"jws": "eyJhbGciOiJFZERTQSIsImI2NCI6ZmFsc2UsImNyaXQiOlsiYjY0Il19..1Xba7-B-YTstwnbIewQFpbMgGfOdRuoDLEBezZlb4M1qMwI9GCUAbeTCsGCPd62XLwyNjPqb9aJGj_xk7iUiBw",
"proofPurpose": "assertionMethod",
"verificationMethod": "did:key:z6MkoTHsgNNrby8JzCNQ1iRLyW5QQ6R8Xuu6AA8igGrMVPUM#z6MkoTHsgNNrby8JzCNQ1iRLyW5QQ6R8Xuu6AA8igGrMVPUM"
}
}
Inside JSON Schema you will see things like:
"$ref": "https://w3id.org/traceability/schemas/Product.json"
These are JSON Schema reference tags and they allow for nesting of types that are defined in JSON Schema.
In general, you should strive to model concepts as types that are defined in JSON Schema and composed from smaller types.
This repository will be versioned at periodic points in time with a Q1 Calendar Year target for major releases. Versioning tags will follow a pattern of [MAJOR].[MINOR].[PATCH]
Version Definitions:
- MAJOR - significant changes rolled forward from the previous major version. Major versions MAY include breaking or non-backwards compatible changes
- MINOR - backwards compatible changes that may introduce new functionality or extensions of objects that are backwards compatible
- PATCH - minor changes that are non breaking and resolve discovered issues or bugs
As a rule, versioning will follow the specification outlined in the Semantic Versioning 2.0 spec
This approach to versioning gives the ability to integrate with and provided automated testing and validation against defined types without worry of instability or breaking changes being introduced, while also limiting the frequency of possibly breaking changes to prevent a large number of incompatible versions.
This project uses lerna to manage packages and dependencies as a single project.
In addition the following key areas in the repo should be noted for understanding how to add schemas and understand the code layout:
- The index file in docs is the master public facing documentation page. It is a baseline specification, with the bulk of the contents being automatically generated after tests have been run on items
- JSON Schema for each object to be referenced is stored in the schemas folder
- Code Generation to create synthetic test data is located in generators
- Test Vectors are run against fixtures that are auto generated and located in the fixtures folder, and correspond to the defined schemas
- Contexts stores the interim combined JSON-LD vocabulary for test and verification
- Verifiable Credential Examples are autogenerated and populated into the spec. Example single credential and VC examples are located in the fixtures folder mentioned above.
All the terms, schemas and context definitions are generated from ./packages/traceability-schemas.
cd ./packages/traceability-schemas
npm i
npm run build:all
npm run test:schemas
The commands above will build the spec and test vectors deterministically from source, clean up any formatting using lint, and run all tests.
- create a JSON Schema in the schemas folder.
- add synthetic data generation for it to the generators.
- run the build using:
npm run build:all
Fix any errors found. - review the latest spec changes by serving docs:
npx serve ./docs
.
If you are unsure of how to do something please open an issue, and ask for help.
Please follow the conventions established for the other properties, for example:
UTF-8 should be used as the standard encoding for all assets in this repository, and any services utilizing these objects as schemas should support UTF-8
Wherever possible JSON-LD in use as a Verifiable Credential should be "small in size". Some harder limits will likely be established based on common and broadly distributed VC libraries but at this time be aware that a VC could be rejected from this repo for exceeding reasonable size limits
Certain items such as allOf
on the JSON Schema side of things would be quite helpful to support, so that better patterns of inheritance can be modeled. We are open to contributions that improve our support of auto-generation of JSON-LD from JSON Schema.
Wherever possible, dates should be formatted as YYYY-MM-DD
so as to be directly compatible with xsd:date
. Static Dates should be used in generated data so as to avoid unnecessary changes in the repository on build.
Some useful environment variables to make testing, generation, and validation stricter, or more verbose are detailed here:
VERBOSE_BUILD=true # sets general verbosity levels up when building
FULL_ERROR_HANDLING=true # forces hard stops at points in the process when warning or other exceptions are caught
VERBOSE_BUILD_GENERAL # increases verbosity in object generation on common objects
VERBOSE_BUILD_AG=true # industry vertical specific stops, see also VERBOSE_BUILD_STEEL and related