{
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"$id": "https://schema.twindev.org/attestation/AttestationJwtProof",
	"title": "AttestationJwtProof",
	"description": "Interface describing an attestation proof.",
	"type": "object",
	"properties": {
		"@context": {
			"anyOf": [
				{
					"const": "https://schema.twindev.org/attestation/"
				},
				{
					"type": "array",
					"prefixItems": [
						{
							"const": "https://schema.twindev.org/attestation/"
						}
					],
					"items": {
						"$ref": "https://schema.twindev.org/json-ld/JsonLdContextDefinitionElement"
					},
					"minItems": 1
				}
			],
			"description": "JSON-LD Context."
		},
		"type": {
			"const": "JwtProof",
			"description": "The type of the proof."
		},
		"value": {
			"type": "string",
			"description": "The value of the proof."
		}
	},
	"required": ["@context", "type", "value"]
}
