me.ngerakines.blahg.post

ngerakines.me

Documentation

A blog post

main record

A blog post

Record Key any Any valid record key

Properties

attachments array of ref #attachment Optional

Media attached to the post.

content blob Required

The content of the post.

maxSize: 1.0 MB
langs array of string language Optional

Indicates human language of text content.

maxLength: 3 items
publishedAt string datetime Required

The date and time the post was published.

title string Required

The title of the post.

maxLength: 2000 bytesmaxGraphemes: 200 graphemes
View raw schema
{
  "key": "any",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "title",
      "content",
      "publishedAt"
    ],
    "properties": {
      "langs": {
        "type": "array",
        "items": {
          "type": "string",
          "format": "language"
        },
        "maxLength": 3,
        "description": "Indicates human language of text content."
      },
      "title": {
        "type": "string",
        "maxLength": 2000,
        "description": "The title of the post.",
        "maxGraphemes": 200
      },
      "content": {
        "type": "blob",
        "accept": [
          "text/plain",
          "text/html",
          "text/markdown"
        ],
        "maxSize": 1000000,
        "description": "The content of the post."
      },
      "attachments": {
        "type": "array",
        "items": {
          "ref": "#attachment",
          "type": "ref"
        },
        "description": "Media attached to the post."
      },
      "publishedAt": {
        "type": "string",
        "format": "datetime",
        "description": "The date and time the post was published."
      }
    }
  },
  "description": "A blog post"
}
attachment object

No description available.

Properties

alt string Optional

Alt text description of the content, for accessibility.

maxLength: 10000 bytesmaxGraphemes: 1000 graphemes
content blob Required

No description available.

maxSize: 3.0 MB
View raw schema
{
  "type": "object",
  "required": [
    "content"
  ],
  "properties": {
    "alt": {
      "type": "string",
      "maxLength": 10000,
      "description": "Alt text description of the content, for accessibility.",
      "maxGraphemes": 1000
    },
    "content": {
      "type": "blob",
      "accept": [
        "image/*"
      ],
      "maxSize": 3000000
    }
  }
}

Lexicon Garden

@