indicates that a handle or DID could not be resolved
Properties
Either a DID or an AT Protocol handle.
No description available.
View raw schema
{
"type": "object",
"required": [
"actor",
"notFound"
],
"properties": {
"actor": {
"type": "string",
"format": "at-identifier"
},
"notFound": {
"type": "boolean",
"const": true
}
},
"description": "indicates that a handle or DID could not be resolved"
}
lists the bi-directional graph relationships between one actor (not indicated in the object), and the target actors (the DID included in the object)
Properties
A decentralized identifier (DID).
if the actor is followed by this DID, contains the AT-URI of the follow record
if the actor follows this DID, this is the AT-URI of the follow record
View raw schema
{
"type": "object",
"required": [
"did"
],
"properties": {
"did": {
"type": "string",
"format": "did"
},
"following": {
"type": "string",
"format": "at-uri",
"description": "if the actor follows this DID, this is the AT-URI of the follow record"
},
"followedBy": {
"type": "string",
"format": "at-uri",
"description": "if the actor is followed by this DID, contains the AT-URI of the follow record"
}
},
"description": "lists the bi-directional graph relationships between one actor (not indicated in the object), and the target actors (the DID included in the object)"
}