io.atcr.sailor.star

atcr.io

Documentation

A star (like) on a container image repository. Stored in the starrer's PDS, similar to Bluesky likes.

main record

A star (like) on a container image repository. Stored in the starrer's PDS, similar to Bluesky likes.

Record Key any Any valid record key

Properties

createdAt string datetime Required

Star creation timestamp

subject ref #subject Required

The repository being starred

View raw schema
{
  "key": "any",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "subject",
      "createdAt"
    ],
    "properties": {
      "subject": {
        "ref": "#subject",
        "type": "ref",
        "description": "The repository being starred"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Star creation timestamp"
      }
    }
  },
  "description": "A star (like) on a container image repository. Stored in the starrer's PDS, similar to Bluesky likes."
}
subject object

Reference to a repository owned by a user

Properties

did string did Required

DID of the repository owner

repository string Required

Repository name (e.g., 'myapp')

maxLength: 255 bytes
View raw schema
{
  "type": "object",
  "required": [
    "did",
    "repository"
  ],
  "properties": {
    "did": {
      "type": "string",
      "format": "did",
      "description": "DID of the repository owner"
    },
    "repository": {
      "type": "string",
      "maxLength": 255,
      "description": "Repository name (e.g., 'myapp')"
    }
  },
  "description": "Reference to a repository owned by a user"
}

Lexicon Garden

@