Skip to content

Commit

Permalink
Fix/format-page (#98)
Browse files Browse the repository at this point in the history
* add separate page for each profile

Signed-off-by: Mirko <[email protected]>

* add definition

Signed-off-by: Mirko <[email protected]>

* update ci versions

Signed-off-by: Mirko <[email protected]>

---------

Signed-off-by: Mirko <[email protected]>
  • Loading branch information
cre8 authored Feb 7, 2024
1 parent d1d259e commit 7413f13
Show file tree
Hide file tree
Showing 27 changed files with 2,119 additions and 271 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/count.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Count files in data/Credential-Profile folder
id: file_count
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18

Expand All @@ -43,10 +43,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18

Expand All @@ -57,7 +57,7 @@ jobs:
run: cd viewer && npm run build -- --configuration production

- name: upload artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: viewer
path: viewer/dist/browser
Expand All @@ -72,12 +72,12 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Download artifact from build job
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: viewer

- name: Setup Pages
uses: actions/configure-pages@v3
uses: actions/configure-pages@v4

- name: Upload artifact
uses: actions/upload-pages-artifact@v1
Expand Down
7 changes: 4 additions & 3 deletions data/Credential-Format/ACDC-(KERI).json
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{
"$schema": "../../schemas/Credential-Format.json",
"Credential Format": "ACDC (KERI)",
"Specification": "https://datatracker.ietf.org/doc/html/draft-ssmith-acdc-00",
"Standardization (Body, Process)": "IETF (intention to go to Blockchain WG)",
"Credential Format": "ACDC",
"Specification": "https://trustoverip.github.io/tswg-acdc-specification/",
"Standardization (Body, Process)": "",
"Encoding Scheme": "CESR",
"Rich Schemas/Semantic": false,
"Crypto Agility": true,
"Selective Disclosure": true,
"Predicates": false
Expand Down
9 changes: 6 additions & 3 deletions data/Credential-Format/AnonCred.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
{
"$schema": "../../schemas/Credential-Format.json",
"Credential Format": "AnonCred",
"Implementation Support (e.g. Libraries) / Active Community": "https://github.com/hyperledger/indy-shared-rs\n\nCommunity plans to pull anon creds implementation out of Indy and facilitate multi independent implementations through the specification (see respective cell)",
"Specification": "https://anoncreds-wg.github.io/anoncreds-spec/",
"Implementation Support (e.g. Libraries) / Active Community": "https://github.com/hyperledger/anoncreds-rs",
"Specification": "https://hyperledger.github.io/anoncreds-spec/",
"Standardization (Body, Process)": "Community Spec (draft)",
"Encoding Scheme": "JSON",
"Rich Schemas/Semantic": false,
"Crypto Agility": false,
"Selective Disclosure": true,
"Predicates": true,
"Compatibility with Signing Algorithms": "CL",
"Compatibility with Key Management Methods (Issuer)": "did:indy\nCosmos (https://cheqd.io/blog/anoncreds-indy-pendence)\nHyperledger Fabric (https://github.com/crubn/fabric-aries)\nmemory ledger, file, immudb (https://github.com/findy-network)"
"Compatibility with Key Management Methods (Issuer)": [
"did:indy",
"did:cheqd"
]
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,7 @@
"Selective Disclosure": true,
"Predicates": true,
"Compatibility with Signing Algorithms": "CL",
"Compatibility with Key Management Methods (Issuer)": "raw public keys (none jwk)"
"Compatibility with Key Management Methods (Issuer)": [
"raw public keys (none jwk)"
]
}
5 changes: 4 additions & 1 deletion schemas/Credential-Format.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,10 @@
"$comment": "TBD: https://github.com/openwallet-foundation/credential-format-comparison-sig/issues/44"
},
"Compatibility with Key Management Methods (Issuer)": {
"type": "string",
"type": "array",
"items": {
"type": "string"
},
"description": "What key management methods can the credential format be combined with?",
"$comment": "TBD: https://github.com/openwallet-foundation/credential-format-comparison-sig/issues/43"
}
Expand Down
16 changes: 16 additions & 0 deletions schemas/defs.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,22 @@
"Standardization": {
"type": "string",
"description": "Under which Standardization Body and which standards track/status is it standardized?"
},
"LinkElement": {
"type": "object",
"additionalProperties": false,
"properties": {
"name": {
"type": "string"
},
"link": {
"type": "string",
"format": "uri",
"qt-uri-protocols": ["https"]
}
},
"required": ["link", "name"],
"title": "LinkElement"
}
}
}
Loading

0 comments on commit 7413f13

Please sign in to comment.