me.wilb.content.page

wilb.me

Documentation

A simple page with text, an image, and a link

main record

A simple page with text, an image, and a link

Record Key tid Timestamp-based ID

Properties

body string Optional

No description available.

createdAt string datetime Required

An RFC 3339 formatted timestamp.

title string Required

No description available.

maxGraphemes: 200 graphemes
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "title",
      "createdAt"
    ],
    "properties": {
      "body": {
        "type": "string"
      },
      "cover": {
        "ref": "lex:me.wilb.content.page#image",
        "type": "ref"
      },
      "links": {
        "type": "array",
        "items": {
          "ref": "lex:me.wilb.content.page#link",
          "type": "ref"
        }
      },
      "title": {
        "type": "string",
        "maxGraphemes": 200
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      }
    }
  },
  "description": "A simple page with text, an image, and a link"
}
image object

No description available.

Properties

alt string Optional

No description available.

maxGraphemes: 5000 graphemes
image blob Required

No description available.

maxSize: 5.0 MB
View raw schema
{
  "type": "object",
  "required": [
    "image"
  ],
  "properties": {
    "alt": {
      "type": "string",
      "maxGraphemes": 5000
    },
    "image": {
      "type": "blob",
      "accept": [
        "image/*"
      ],
      "maxSize": 5000000
    }
  }
}
link object

No description available.

Properties

title string Optional

No description available.

maxGraphemes: 300 graphemes
uri string uri Required

A valid URI.

View raw schema
{
  "type": "object",
  "required": [
    "uri"
  ],
  "properties": {
    "uri": {
      "type": "string",
      "format": "uri"
    },
    "title": {
      "type": "string",
      "maxGraphemes": 300
    }
  }
}

Lexicon Garden

@