https://w3id.org/agent-ontology/identity#AgentIdentity
Represents the verifiable identity of an AI Agent.
Instances of id:AgentIdentity can have the following properties:
| PROPERTY | TYPE | DESCRIPTION | RANGE |
|---|---|---|---|
| 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 |
@prefix core: <https://w3id.org/agent-ontology/core#> .
@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:AgentIdentity a owl:Class ;
rdfs:label "AgentIdentity" ;
rdfs:comment "Represents the verifiable identity of an AI Agent." ;
rdfs:subClassOf core:AgentEntity .