cloud.substratum.place.inviteOffer

official.fileorbit.cloud

Documentation

Durable household invite offer authored by the inviter (ADR 82).

main object

Durable household invite offer authored by the inviter (ADR 82).

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

expiresAt string datetime Required

An RFC 3339 formatted timestamp.

groupId string Optional

No description available.

inviteId string Required

No description available.

inviteeDid string did Required

A decentralized identifier (DID).

inviteeHandle string Optional

No description available.

status string Required

No description available.

Known values: pending, accepted, declined, expired, revoked
View raw schema
{
  "type": "object",
  "required": [
    "inviteId",
    "inviteeDid",
    "status",
    "expiresAt",
    "createdAt"
  ],
  "properties": {
    "status": {
      "type": "string",
      "knownValues": [
        "pending",
        "accepted",
        "declined",
        "expired",
        "revoked"
      ]
    },
    "groupId": {
      "type": "string"
    },
    "inviteId": {
      "type": "string"
    },
    "createdAt": {
      "type": "string",
      "format": "datetime"
    },
    "expiresAt": {
      "type": "string",
      "format": "datetime"
    },
    "inviteeDid": {
      "type": "string",
      "format": "did"
    },
    "inviteeHandle": {
      "type": "string"
    }
  },
  "description": "Durable household invite offer authored by the inviter (ADR 82)."
}

Lexicon Garden

@