github.com/hyperledger/aries-framework-go@v0.3.2/pkg/doc/verifiable/jsonld.go (about)

     1  /*
     2  Copyright SecureKey Technologies Inc. All Rights Reserved.
     3  SPDX-License-Identifier: Apache-2.0
     4  */
     5  
     6  package verifiable
     7  
     8  const (
     9  	// ContextURI is the required JSON-LD context for VCs and VPs.
    10  	ContextURI = "https://www.w3.org/2018/credentials/v1"
    11  	// ContextID is the non-fragment part of the JSON-LD schema ID for VCs and VPs.
    12  	ContextID = "https://www.w3.org/2018/credentials"
    13  	// VCType is the required Type for Verifiable Credentials.
    14  	VCType = "VerifiableCredential"
    15  	// VPType is the required Type for Verifiable Credentials.
    16  	VPType = "VerifiablePresentation"
    17  )