diff --git a/credentials/utopia-agency-employee-badge/credential.json b/credentials/utopia-agency-employee-badge/credential.json new file mode 100644 index 0000000..e5bfc5c --- /dev/null +++ b/credentials/utopia-agency-employee-badge/credential.json @@ -0,0 +1,23 @@ +{ + "@context": [ + "https://www.w3.org/ns/credentials/v2", + "https://w3id.org/identification/v1rc1" + ], + "type": ["VerifiableCredential", "IdentificationDocumentCredential"], + "name": "Utopia Agency Employee Badge", + "issuer": { + "id": "https://employment.utopia.example", + "name": "Utopia Employment Agency" + }, + "validFrom": "2026-01-15T00:00:00Z", + "validUntil": "2028-01-14T23:59:59Z", + "credentialSubject": { + "type": "Person", + "givenName": "Jordan", + "familyName": "Casey", + "worksFor": { + "id": "https://parks.utopia.example/", + "name": "Utopia Department of Parks and Recreation" + } + } +} diff --git a/credentials/utopia-agency-employee-badge/queries.json b/credentials/utopia-agency-employee-badge/queries.json new file mode 100644 index 0000000..a958d16 --- /dev/null +++ b/credentials/utopia-agency-employee-badge/queries.json @@ -0,0 +1,31 @@ +{ + "default": { + "type": "QueryByExample", + "credentialQuery": [ + { + "reason": "Please present your IdentificationDocumentCredential Verifiable Credential(s) to complete the verification process.", + "example": { + "@context": [ + "https://www.w3.org/ns/credentials/v2", + "https://w3id.org/identification/v1rc1" + ], + "type": [ + "IdentificationDocumentCredential" + ], + "credentialSubject": { + "worksFor": { + "id": "https://parks.utopia.example/" + } + } + }, + "acceptedCryptosuites": [ + "Ed25519Signature2020", + "eddsa-rdfc-2022", + "ecdsa-rdfc-2019", + "bbs-2023", + "ecdsa-sd-2023" + ] + } + ] + } +}