Released docs. You are viewing the documentation published with v0.20.0. Development docs are available at Latest.
Publish JWT VC Issuer Metadata for the SD-JWT VC response format
GET
/.well-known/jwt-vc-issuer
const url = 'https://example.com/.well-known/jwt-vc-issuer';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/.well-known/jwt-vc-issuerDiscovery is not a trust anchor. The document republishes the same public keys under the provider identity the assertion names, and resolution is meaningful only when that identity is the HTTPS origin of the deployment.
Responses
Section titled “Responses”Provider identity and public verification keys
Media typeapplication/json
object
issuer
required
string
jwks_uri
required
string format: uri
Examplegenerated
{ "issuer": "example", "jwks_uri": "https://example.com"}Headers
Section titled “Headers”Cache-Control
string
Evidence responses are never cacheable.
traceparent
string
Effective W3C trace context. One valid inbound traceparent is retained; missing, invalid, or duplicate values are replaced and tracestate is never reflected.