Skip to main content

VerificationResult

Loading ....

Source :

{
"$id": "agntcy.identity.core.v1alpha1.VerificationResult.jsonschema.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"description": "[here]: https://www.w3.org/TR/vc-data-model-2.0/#verification",
"patternProperties": {
"^(controlled_identifier_document)$": {
"description": "A controlled identifier document that is associated with the verification method\n used to verify the securing mechanism (i,e the DID)",
"type": "string"
},
"^(media_type)$": {
"description": "The media type of the Verifiable Credential (ex: application/vc)",
"type": "string"
}
},
"properties": {
"controlledIdentifierDocument": {
"description": "A controlled identifier document that is associated with the verification method\n used to verify the securing mechanism (i,e the DID)",
"type": "string"
},
"controller": {
"description": "The controller of the verification method associated with the securing mechanism,\n usually it represents the issuer.",
"type": "string"
},
"document": {
"$ref": "agntcy.identity.core.v1alpha1.VerifiableCredential.jsonschema.json",
"description": "A conforming document which represents the Verifiable Credential"
},
"errors": {
"description": "A list represents zero or more errors generated by the verification process",
"items": {
"$ref": "agntcy.identity.core.v1alpha1.ErrorInfo.jsonschema.json"
},
"type": "array"
},
"mediaType": {
"description": "The media type of the Verifiable Credential (ex: application/vc)",
"type": "string"
},
"status": {
"description": "A boolean status",
"type": "boolean"
},
"warnings": {
"description": "A list represents zero or more warnings generated by the verification process",
"items": {
"$ref": "agntcy.identity.core.v1alpha1.ErrorInfo.jsonschema.json"
},
"type": "array"
}
},
"title": "The result returned from the verification process defined [here]",
"type": "object"
}