at.colocate.post

colocate.at

Documentation

main record

No description available.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

images array of ref #image Optional

No description available.

maxLength: 4 items
text string Required

No description available.

maxLength: 100000 bytesmaxGraphemes: 10000 graphemes
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "text",
      "createdAt"
    ],
    "properties": {
      "text": {
        "type": "string",
        "maxLength": 100000,
        "maxGraphemes": 10000
      },
      "images": {
        "type": "array",
        "items": {
          "ref": "#image",
          "type": "ref"
        },
        "maxLength": 4
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      }
    }
  }
}
image object

No description available.

Properties

alt string Required

No description available.

maxLength: 20000 bytesmaxGraphemes: 2000 graphemes
image blob Required

No description available.

maxSize: 5.0 MB
View raw schema
{
  "type": "object",
  "required": [
    "image",
    "alt"
  ],
  "properties": {
    "alt": {
      "type": "string",
      "maxLength": 20000,
      "maxGraphemes": 2000
    },
    "image": {
      "type": "blob",
      "accept": [
        "image/jpeg",
        "image/png",
        "image/webp"
      ],
      "maxSize": 5000000
    }
  }
}

Lexicon Garden

@