app.certified.badge.response

lexicon.store View official

Documentation

Recipient response to a badge award.

main record

Recipient response to a badge award.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

Client-declared timestamp when this record was originally created

response string Required

The recipient’s response for the badge (accepted or rejected).

Known values: accepted, rejected
weight string Optional

Optional relative weight for accepted badges, assigned by the recipient.

maxLength: 50 bytes
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "badgeAward",
      "response",
      "createdAt"
    ],
    "properties": {
      "weight": {
        "type": "string",
        "maxLength": 50,
        "description": "Optional relative weight for accepted badges, assigned by the recipient."
      },
      "response": {
        "type": "string",
        "description": "The recipient’s response for the badge (accepted or rejected).",
        "knownValues": [
          "accepted",
          "rejected"
        ]
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Client-declared timestamp when this record was originally created"
      },
      "badgeAward": {
        "ref": "app.certified.badge.award",
        "type": "ref",
        "description": "Reference to the badge award."
      }
    }
  },
  "description": "Recipient response to a badge award."
}

Lexicon Garden

@