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

site.standard.publication

standard.site

Documentation

main record

A publication record representing a blog, website, or content platform. Publications serve as containers for documents and define the overall branding and settings.

Record Key tid Timestamp-based ID

Properties

basicTheme ref site.standard.theme.basic Optional

Simplified publication theme for tools and apps to utilize when displaying content.

description string Optional

Brief description of the publication.

maxLength: 3000 bytesmaxGraphemes: 300 graphemes
icon blob Optional

Square image to identify the publication. Should be at least 256x256.

maxSize: 1.0 MB
name string Required

Name of the publication.

maxLength: 1280 bytesmaxGraphemes: 128 graphemes
preferences ref #preferences Optional

Object containing platform specific preferences (with a few shared properties).

url string uri Required

Base publication url (ex: https://standard.site). The canonical document URL is formed by combining this value with the document path.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "url",
      "name"
    ],
    "properties": {
      "url": {
        "type": "string",
        "format": "uri",
        "description": "Base publication url (ex: https://standard.site). The canonical document URL is formed by combining this value with the document path."
      },
      "icon": {
        "type": "blob",
        "accept": [
          "image/*"
        ],
        "maxSize": 1000000,
        "description": "Square image to identify the publication. Should be at least 256x256."
      },
      "name": {
        "type": "string",
        "maxLength": 1280,
        "description": "Name of the publication.",
        "maxGraphemes": 128
      },
      "basicTheme": {
        "ref": "site.standard.theme.basic",
        "type": "ref",
        "description": "Simplified publication theme for tools and apps to utilize when displaying content."
      },
      "description": {
        "type": "string",
        "maxLength": 3000,
        "description": "Brief description of the publication.",
        "maxGraphemes": 300
      },
      "preferences": {
        "ref": "#preferences",
        "type": "ref",
        "description": "Object containing platform specific preferences (with a few shared properties)."
      }
    }
  },
  "description": "A publication record representing a blog, website, or content platform. Publications serve as containers for documents and define the overall branding and settings."
}
preferences object

Platform-specific preferences for the publication, including discovery and visibility settings.

Properties

showInDiscover boolean Optional

Boolean which decides whether the publication should appear in discovery feeds.

View raw schema
{
  "type": "object",
  "properties": {
    "showInDiscover": {
      "type": "boolean",
      "default": true,
      "description": "Boolean which decides whether the publication should appear in discovery feeds."
    }
  },
  "description": "Platform-specific preferences for the publication, including discovery and visibility settings."
}

Lexicon Garden

@