Default Verification Service Link
info
Please note that this content is under development and is not ready for implementation. This status message will be updated as content development progresses.
Description
The DefaultVerificationServiceLink
object defines the default link and parameters of the verification service used when verifying credentials within the verify page of the Mock App system.
The typical flow is as follows:
- A user runs through the scanning app flow.
- The resulting credential is passed to the verify page of the Mock App system.
- The verify page uses the verification service defined in the
Default Verification Service Link
object to verify the credential.
This object ensures that the Mock App system has a consistent and predefined method for credential verification.
Example
{
"defaultVerificationServiceLink": {
"title": "Default Verification Service",
"context": "Default Verification Service",
"type": "application/json",
"href": "http://localhost:3332/agent/routeVerificationCredential",
"hreflang": ["en"],
"apiKey": "test123"
}
}
Definitions
Property | Required | Description | Type |
---|---|---|---|
title | No | The title of the verification service. | String |
context | No | The context or description of the verification service. | String |
href | Yes | The URL of the verification service endpoint. | String |
hreflang | No | An array of language codes that the service supports. | String[] |
apiKey | Yes | The API key required to access the verification service. | String |
type | No | The MIME type of the expected response, e.g., "application/json". | String |