town.laugh.user.suggest.comedian

laugh.town

Documentation

User suggestion for a comedian to add to the database

main record

User suggestion for a comedian to add to the database

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

Timestamp of when the suggestion was created

name string Required

Comedian name

maxLength: 256 bytes
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "name",
      "link",
      "createdAt"
    ],
    "properties": {
      "link": {
        "type": "string",
        "maxLength": 1024,
        "description": "Website, social profile, or Wikipedia page"
      },
      "name": {
        "type": "string",
        "maxLength": 256,
        "description": "Comedian name"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Timestamp of when the suggestion was created"
      }
    }
  },
  "description": "User suggestion for a comedian to add to the database"
}

Lexicon Garden

@