at.dholms.bulletin.post

spacy.dholms.at

Documentation

main record

No description available.

Record Key tid Timestamp-based ID

Properties

color string Optional

No description available.

Known values: yellow, pink, blue, green, lavender
createdAt string datetime Required

An RFC 3339 formatted timestamp.

image blob Optional

No description available.

maxSize: 500.0 KB
imageAlt string Optional

No description available.

maxLength: 3000 bytesmaxGraphemes: 300 graphemes
position object Optional

No description available.

rotation integer Optional

Clockwise rotation in tenths of a degree.

minimum: -25maximum: 25
text string Required

No description available.

maxLength: 3000 bytesmaxGraphemes: 300 graphemes
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "text",
      "createdAt"
    ],
    "properties": {
      "text": {
        "type": "string",
        "maxLength": 3000,
        "maxGraphemes": 300
      },
      "color": {
        "type": "string",
        "knownValues": [
          "yellow",
          "pink",
          "blue",
          "green",
          "lavender"
        ]
      },
      "image": {
        "type": "blob",
        "accept": [
          "image/jpeg",
          "image/png",
          "image/webp"
        ],
        "maxSize": 500000
      },
      "imageAlt": {
        "type": "string",
        "maxLength": 3000,
        "maxGraphemes": 300
      },
      "position": {
        "type": "object",
        "required": [
          "x",
          "y"
        ],
        "properties": {
          "x": {
            "type": "integer",
            "maximum": 1000,
            "minimum": 0
          },
          "y": {
            "type": "integer",
            "maximum": 1000,
            "minimum": 0
          }
        }
      },
      "rotation": {
        "type": "integer",
        "maximum": 25,
        "minimum": -25,
        "description": "Clockwise rotation in tenths of a degree."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      }
    }
  }
}

Lexicon Garden

@