Skip to content

Commit

Permalink
move files
Browse files Browse the repository at this point in the history
Signed-off-by: Mirko Mollik <mirko.molliksprind.org>
Signed-off-by: Mirko Mollik <mirkomollik@gmail.com>
  • Loading branch information
Mirko Mollik authored and cre8 committed Oct 28, 2024
1 parent 2b5a8d2 commit 8c343b5
Show file tree
Hide file tree
Showing 91 changed files with 3 additions and 141 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions viewer/scripts/profiles/merge.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ export function mergeProfiles() {
values: {}
};
// write the content of the file to the json object
readdirSync(join(folder, subFolder)).filter(file => file !== structureFile).forEach((file) => {
readdirSync(join(folder, subFolder + 's')).filter(file => file !== structureFile).forEach((file) => {
// write the content of the file to the json object
const content = JSON.parse(readFileSync(join(folder, subFolder, file), 'utf8'));
const content = JSON.parse(readFileSync(join(folder, subFolder + 's', file), 'utf8'));
content['$schema'] = content['$schema'].replace('../..', `/main/${githubPath}`);
const name = capitalizeWords(subFolder.replace(/-/g, ' '));
input[name].values[content.Name] = content;
Expand Down
140 changes: 1 addition & 139 deletions viewer/src/assets/schemas/fields.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,143 +2,5 @@
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "fields.json",
"type": "object",
"definitions": {
"Credential-Format": {
"description": "The used Credential Format",
"type": "string",
"enum": [
"ACDC",
"AnonCred",
"CESR/CESR Proof",
"CWT",
"Gordian Envelope",
"ICAO DTC",
"Idemix attribute-based credential",
"JWP",
"JWT-VC",
"JWT",
"LDP-VC",
"MDOC",
"SD-JWT-VC",
"SD-JWT",
"VC (1.1)",
"x509"
]
},
"Signing-Algorithm": {
"description": "The used Signing Algorithm",
"type": "string",
"enum": [
"BBS+ with public key binding",
"BoundBBS+",
"CL",
"ECDSA",
"EdDSA",
"PS",
"RSA",
"Schnorr"
]
},
"Status-Algorithm": {
"description": "The used Status Algorithm",
"type": "string",
"enum": [
"BBF18-cryptographic accumulator based on RSA",
"CRL - certificate revocation list",
"Indy Revocation",
"JWT/CWT status list",
"Non-Revocation Token",
"RSA-B - cryptographic accumulator based on RSA",
"SLTD database (travel and identity documents)",
"Status List 2021",
"VB20 - cryptographic accumulator based on pairings",
"Validity Credential",
"medium-term expiration",
"short-term expiration"
]
},
"Key-Management": {
"description": "The used Key Management",
"type": "string",
"enum": [
".well-known/jwt-issuer",
"cose key",
"credential as secret",
"did:cheqd",
"did:ebsi",
"did:indy",
"did:ion (long form)",
"did:ion (short form)",
"did:jwk",
"did:keri",
"did:key",
"did:peer",
"did:web",
"jwks_uri",
"link secrets",
"pub key in X.509 cert",
"raw public keys (jwk)",
"raw public keys (none jwk)"
]
},
"Issuance-Protocol": {
"description": "The used Issuance Protocol",
"type": "string",
"enum": [
"ACDC",
"ISO 23220-3",
"Issue Credential v1",
"Issue Credential v2",
"OpenID4VCI"
]
},
"Presentation-Protocol": {
"description": "The used Presentation Protocol",
"type": "string",
"enum": [
"OpenID4VP",
"Present Proof v2",
"Present Proof v1.0"
]
},
"Trust-Management": {
"description": "The used Trust Management",
"type": "string",
"enum": [
"EBSI Trust Registries",
"IRMA (Yivi) Schemes",
"OpenID Connect Federation",
"TRAIN",
"Trusted Lists",
"Verified issuer certificate authority list (VICAL)",
"Verifier knows Issuers",
"X.509 certificates"
]
},
"Credential-Profile": {
"description": "The used Credential Profile",
"type": "string",
"enum": [
"AnonCreds with cardano blockchain",
"AnonCreds with did:cheqd",
"AnonCreds with did:indy",
"AnonCreds with did:web",
"Decentralized Identity Interop Profile",
"EBSI",
"HAIP",
"ICAO DTC",
"IRMA (Yivi) wallet",
"ISO mDL",
"JFFLabs x VC-EDU PlugFest2 (LDP)",
"JFFLabs x VC-EDU PlugFest2 (VC)",
"JSON-LD VCs with BBS (Credential is Secret)",
"JSON-LD VCs with BBS (Holder DID)",
"JWT VC Presentation Profile 2",
"JWT VC Presentation Profile",
"NGI Atlantic for OpenID4VCs",
"SD-JWT VCs (w/ X.509 for Issuers)",
"x.509"
]
}
}
"definitions": {}
}

0 comments on commit 8c343b5

Please sign in to comment.