town.laugh.user.suggest.edit.comedian

laugh.town

Documentation

User-suggested edits to an existing comedian record

main record

User-suggested edits to an existing comedian record

Record Key tid Timestamp-based ID

Properties

changes array of object Required

List of field changes

createdAt string datetime Required

Timestamp of when the suggestion was created

subject string at-uri Required

AT-URI reference to the town.laugh.db.comedian record

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "subject",
      "changes",
      "createdAt"
    ],
    "properties": {
      "changes": {
        "type": "array",
        "items": {
          "type": "object",
          "required": [
            "field",
            "value"
          ],
          "properties": {
            "field": {
              "type": "string",
              "maxLength": 64,
              "description": "Field name in camelCase"
            },
            "value": {
              "type": "string",
              "maxLength": 4096,
              "description": "Proposed new value"
            }
          }
        },
        "description": "List of field changes"
      },
      "subject": {
        "type": "string",
        "format": "at-uri",
        "description": "AT-URI reference to the town.laugh.db.comedian record"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Timestamp of when the suggestion was created"
      }
    }
  },
  "description": "User-suggested edits to an existing comedian record"
}

Lexicon Garden

@