coop.hypha.spores.item.specialSpore

hypha.coop

Documentation

A special spore capture record. Each steal creates a new record with a TID key. Current holder is determined by the most recent createdAt timestamp across all backlinked records for a given origin (subject).

main record

A special spore capture record. Each steal creates a new record with a TID key. Current holder is determined by the most recent createdAt timestamp across all backlinked records for a given origin (subject).

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

When this capture occurred.

subject string did Required

Origin garden DID. Used for backlink indexing to find all captures of this spore.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "subject",
      "createdAt"
    ],
    "properties": {
      "subject": {
        "type": "string",
        "format": "did",
        "description": "Origin garden DID. Used for backlink indexing to find all captures of this spore."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "When this capture occurred."
      }
    }
  },
  "description": "A special spore capture record. Each steal creates a new record with a TID key. Current holder is determined by the most recent createdAt timestamp across all backlinked records for a given origin (subject)."
}

Lexicon Garden

@