so.sprk.sound.defs

sprk.so

Documentation

audioDetails object

Metadata about the audio content.

Properties

artist string Optional

No description available.

title string Optional

No description available.

View raw schema
{
  "type": "object",
  "properties": {
    "title": {
      "type": "string"
    },
    "artist": {
      "type": "string"
    }
  },
  "description": "Metadata about the audio content."
}
audioView object

No description available.

Properties

audio string uri Optional

A valid URI.

cid string cid Required

A content identifier (CID) referencing immutable data.

coverArt string uri Required

A valid URI.

indexedAt string datetime Required

An RFC 3339 formatted timestamp.

record unknown Required

No description available.

title string Required

No description available.

uri string at-uri Required

An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).

useCount integer Optional

No description available.

View raw schema
{
  "type": "object",
  "required": [
    "uri",
    "cid",
    "author",
    "title",
    "coverArt",
    "record",
    "indexedAt"
  ],
  "properties": {
    "cid": {
      "type": "string",
      "format": "cid"
    },
    "uri": {
      "type": "string",
      "format": "at-uri"
    },
    "audio": {
      "type": "string",
      "format": "uri"
    },
    "title": {
      "type": "string"
    },
    "author": {
      "ref": "so.sprk.actor.defs#profileViewBasic",
      "type": "ref"
    },
    "labels": {
      "type": "array",
      "items": {
        "ref": "com.atproto.label.defs#label",
        "type": "ref"
      }
    },
    "record": {
      "type": "unknown"
    },
    "details": {
      "ref": "#audioDetails",
      "type": "ref"
    },
    "coverArt": {
      "type": "string",
      "format": "uri"
    },
    "useCount": {
      "type": "integer"
    },
    "indexedAt": {
      "type": "string",
      "format": "datetime"
    }
  }
}

Lexicon Garden

@