app.certified.badge.response

certified.app

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).

Allowed: accepted, rejected
weight string Optional

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

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "badgeAward",
      "response",
      "createdAt"
    ],
    "properties": {
      "weight": {
        "type": "string",
        "description": "Optional relative weight for accepted badges, assigned by the recipient."
      },
      "response": {
        "enum": [
          "accepted",
          "rejected"
        ],
        "type": "string",
        "description": "The recipient’s response for the badge (accepted or 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

@