id:DecentralizedIdentifier leaf node


URI

https://w3id.org/agent-ontology/identity#DecentralizedIdentifier

Label

DecentralizedIdentifier

Description

A Decentralized Identifier (DID) associated with an Agent.

Usage

Instances of id:DecentralizedIdentifier can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class id:AgentIdentity
id:did owl:DatatypeProperty The string value of the Decentralized Identifier. xsd:string
id:title owl:DatatypeProperty xsd:string
id:version owl:DatatypeProperty xsd:string
id:hasDID owl:ObjectProperty Links an AgentIdentity to its Decentralized Identifier. id:DecentralizedIdentifier
id:managedByKMS owl:ObjectProperty Indicates the Key Management System responsible for an Agent's keys. id:KeyManagementSystem

Implementation

@prefix id: <https://w3id.org/agent-ontology/identity#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

id:DecentralizedIdentifier a owl:Class ;
    rdfs:label "DecentralizedIdentifier" ;
    rdfs:comment "A Decentralized Identifier (DID) associated with an Agent." ;
    rdfs:subClassOf id:AgentIdentity .