so.sprk.graph.defs

sprk.so

Documentation

notFoundActor object

indicates that a handle or DID could not be resolved

Properties

actor string at-identifier Required

Either a DID or an AT Protocol handle.

notFound boolean Required

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"
}
relationship object

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

did string did Required

A decentralized identifier (DID).

followedBy string at-uri Optional

if the actor is followed by this DID, contains the AT-URI of the follow record

following string at-uri Optional

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)"
}

Lexicon Garden

@