Backfill in-progress. Some lexicons and records may be missing or incomplete.

place.atwork.listing

atwork.place

Documentation

main record

A job listing

Record Key tid Timestamp-based ID

Properties

banner blob Optional

Larger horizontal image to display behind job listing view.

maxSize: 1.0 MB
description string Required

The description of the job listing.

maxLength: 10000 bytesmaxGraphemes: 10000 graphemes
notAfter string datetime Required

Client-declared timestamp when the job listing expires.

notBefore string datetime Required

Client-declared timestamp when the job listing becomes visible.

title string Required

The title of the job listing.

maxLength: 200 bytes
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "title",
      "notBefore",
      "notAfter",
      "description"
    ],
    "properties": {
      "title": {
        "type": "string",
        "maxLength": 200,
        "description": "The title of the job listing."
      },
      "banner": {
        "type": "blob",
        "accept": [
          "image/png",
          "image/jpeg"
        ],
        "maxSize": 1000000,
        "description": "Larger horizontal image to display behind job listing view."
      },
      "facets": {
        "type": "array",
        "items": {
          "ref": "app.bsky.richtext.facet",
          "type": "ref"
        },
        "description": "Annotations of text (mentions, URLs, hashtags, etc)."
      },
      "notAfter": {
        "type": "string",
        "format": "datetime",
        "description": "Client-declared timestamp when the job listing expires."
      },
      "applyLink": {
        "type": "string",
        "format": "uri",
        "description": "URL where applicants can apply for the job."
      },
      "locations": {
        "type": "array",
        "items": {
          "refs": [
            "community.lexicon.location.hthree"
          ],
          "type": "union"
        },
        "description": "Locations that are relevant to the job listing."
      },
      "notBefore": {
        "type": "string",
        "format": "datetime",
        "description": "Client-declared timestamp when the job listing becomes visible."
      },
      "description": {
        "type": "string",
        "maxLength": 10000,
        "description": "The description of the job listing.",
        "maxGraphemes": 10000
      }
    }
  },
  "description": "A job listing"
}

Lexicon Garden

@