blue.registry.inviteResponse

registry.blue

Documentation

Accepts or declines a collaboration invite. Stored in the collaborator's repo.

main record

Accepts or declines a collaboration invite. Stored in the collaborator's repo.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

Timestamp of the response.

invite string at-uri Required

AT-URI of the invite record in the owner's repo.

status string Required

Whether the invite was accepted or declined.

Known values: accepted, declined
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "invite",
      "status",
      "createdAt"
    ],
    "properties": {
      "invite": {
        "type": "string",
        "format": "at-uri",
        "description": "AT-URI of the invite record in the owner's repo."
      },
      "status": {
        "type": "string",
        "description": "Whether the invite was accepted or declined.",
        "knownValues": [
          "accepted",
          "declined"
        ]
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Timestamp of the response."
      }
    }
  },
  "description": "Accepts or declines a collaboration invite. Stored in the collaborator's repo."
}

Lexicon Garden

@