feat: initial commit
This commit is contained in:
commit
a161b86c9a
705 changed files with 288162 additions and 0 deletions
26
vendor/sourcery.dny.nu/pana/vocab/w3id/identityv1/context.go
vendored
Normal file
26
vendor/sourcery.dny.nu/pana/vocab/w3id/identityv1/context.go
vendored
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
// Package identityv1 contains terms for the W3ID Identity namespace.
|
||||
package identityv1
|
||||
|
||||
import (
|
||||
_ "embed"
|
||||
)
|
||||
|
||||
//go:embed context.jsonld
|
||||
var ContextDocument []byte
|
||||
|
||||
// IRI is the remote context IRI.
|
||||
const IRI = "https://w3id.org/identity/v1"
|
||||
|
||||
// Namespace is the IRI prefix used for terms defined in this namespace.
|
||||
const Namespace = "https://w3id.org/identity#"
|
||||
|
||||
const (
|
||||
// IdentityService is an IRI, either as a string or as an object with an
|
||||
// id property.
|
||||
IdentityService = Namespace + "identityService"
|
||||
// IDP is an IRI, either as a string or as an object with an
|
||||
// id property.
|
||||
IDP = Namespace + "idp"
|
||||
// TypeIdentity is a possible value for the type property.
|
||||
TypeIdentity = Namespace + "Identity"
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue