Documentation ¶
Overview ¶
Package common provides primitives to interact with the openapi HTTP API.
Code generated by github.com/deepmap/oapi-codegen version v1.11.0 DO NOT EDIT.
Index ¶
- func GetSwagger() (swagger *openapi3.T, err error)
- func PathToRawSpec(pathToFile string) map[string]func() ([]byte, error)
- func ValidateDIDMethod(method DIDMethod) (profileapi.Method, error)
- func ValidateKMSConfig(config *KMSConfig) (*kms.Config, error)
- func ValidateKMSType(kmsType KMSConfigType) (kms.Type, error)
- func ValidateVCFormat(format VCFormat) (vcsverifiable.Format, error)
- func ValidateVPFormat(format VPFormat) (vcsverifiable.Format, error)
- type AuthorizationDetails
- type CredentialDefinition
- type DIDMethod
- type KMSConfig
- type KMSConfigType
- type VCFormat
- type VPFormat
- type WalletInitiatedFlowData
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GetSwagger ¶
GetSwagger returns the Swagger specification corresponding to the generated code in this file. The external references of Swagger specification are resolved. The logic of resolving external references is tightly connected to "import-mapping" feature. Externally referenced files must be embedded in the corresponding golang packages. Urls can be supported but this task was out of the scope.
func PathToRawSpec ¶
Constructs a synthetic filesystem for resolving external references when loading openapi specifications.
func ValidateDIDMethod ¶
func ValidateDIDMethod(method DIDMethod) (profileapi.Method, error)
func ValidateKMSType ¶
func ValidateKMSType(kmsType KMSConfigType) (kms.Type, error)
func ValidateVCFormat ¶
func ValidateVCFormat(format VCFormat) (vcsverifiable.Format, error)
func ValidateVPFormat ¶
func ValidateVPFormat(format VPFormat) (vcsverifiable.Format, error)
Types ¶
type AuthorizationDetails ¶
type AuthorizationDetails struct { // REQUIRED when Format parameter is not present. String specifying a unique identifier of the Credential being described in the credential_configurations_supported map in the Credential Issuer Metadata. The referenced object in the credential_configurations_supported map conveys the details, such as the format, for issuance of the requested Credential. It MUST NOT be present if format parameter is present. CredentialConfigurationId *string `json:"credential_configuration_id,omitempty"` // Object containing the detailed description of the credential type. CredentialDefinition *CredentialDefinition `json:"credential_definition,omitempty"` // For Token response only. Array of strings, each uniquely identifying a Credential that can be issued using the Access Token returned in this response. Each of these Credentials corresponds to the same entry in the credential_configurations_supported Credential Issuer metadata but can contain different claim values or a different subset of claims within the claims set identified by that Credential type. CredentialIdentifiers *[]string `json:"credential_identifiers,omitempty"` // REQUIRED when CredentialConfigurationId parameter is not present. String identifying the format of the Credential the Wallet needs. This Credential format identifier determines further claims in the authorization details object needed to identify the Credential type in the requested format. It MUST NOT be present if credential_configuration_id parameter is present. Format *string `json:"format,omitempty"` // An array of strings that allows a client to specify the location of the resource server(s) allowing the Authorization Server to mint audience restricted access tokens. Locations *[]string `json:"locations,omitempty"` // String that determines the authorization details type. MUST be set to "openid_credential" for OIDC4VC. Type string `json:"type"` }
Model to convey the details about the Credentials the Client wants to obtain.
type CredentialDefinition ¶ added in v1.8.0
type CredentialDefinition struct { // For ldp_vc only. Array as defined in https://www.w3.org/TR/vc-data-model/#contexts. Context *[]string `json:"@context,omitempty"` // An object containing a list of name/value pairs, where each name identifies a claim offered in the Credential. The value can be another such object (nested data structures), or an array of such objects. CredentialSubject *map[string]interface{} `json:"credentialSubject,omitempty"` // Array designating the types a certain credential type supports Type []string `json:"type"` }
Object containing the detailed description of the credential type.
type DIDMethod ¶
type DIDMethod string
DID method of the DID to be used for signing.
const ( DIDMethodKey DIDMethod = "key" DIDMethodOrb DIDMethod = "orb" DIDMethodWeb DIDMethod = "web" )
Defines values for DIDMethod.
func MapToDIDMethod ¶
func MapToDIDMethod(method profileapi.Method) (DIDMethod, error)
type KMSConfig ¶
type KMSConfig struct { // Prefix of database used by local kms. DbPrefix *string `json:"dbPrefix,omitempty"` // Type of database used by local kms. DbType *string `json:"dbType,omitempty"` // URL to database used by local kms. DbURL *string `json:"dbURL,omitempty"` // KMS endpoint. Endpoint *string `json:"endpoint,omitempty"` // Path to secret lock used by local kms. SecretLockKeyPath *string `json:"secretLockKeyPath,omitempty"` // Type of kms used to create and store DID keys. Type KMSConfigType `json:"type"` }
Model for KMS configuration.
type KMSConfigType ¶
type KMSConfigType string
Type of kms used to create and store DID keys.
const ( KMSConfigTypeAws KMSConfigType = "aws" KMSConfigTypeLocal KMSConfigType = "local" KMSConfigTypeWeb KMSConfigType = "web" )
Defines values for KMSConfigType.
func MapToKMSConfigType ¶
func MapToKMSConfigType(kmsType kms.Type) (KMSConfigType, error)
type VPFormat ¶
type VPFormat string
Supported VP formats.
func MapToVPFormat ¶
func MapToVPFormat(format vcsverifiable.Format) (VPFormat, error)
type WalletInitiatedFlowData ¶ added in v1.2.0
type WalletInitiatedFlowData struct { ClaimEndpoint string `json:"claim_endpoint"` CredentialTemplateId string `json:"credential_template_id"` OpState string `json:"op_state"` ProfileId string `json:"profile_id"` ProfileVersion string `json:"profile_version"` Scopes *[]string `json:"scopes"` }
WalletInitiatedFlowData defines model for WalletInitiatedFlowData.