xyz.flatshcards.cards

flatshcards.xyz

Documentation

card record

No description available.

Record Key tid Timestamp-based ID

Properties

backLang string Required

No description available.

maxLength: 2 bytesminLength: 2 bytesmaxGraphemes: 2 graphemes
backText string Required

No description available.

maxLength: 4096 bytesminLength: 1 bytes
createdAt string datetime Required

An RFC 3339 formatted timestamp.

frontLang string Required

No description available.

maxLength: 2 bytesminLength: 2 bytesmaxGraphemes: 2 graphemes
frontText string Required

No description available.

maxLength: 4096 bytesminLength: 1 bytes
stackId string record-key Required

A valid record key for AT Protocol repositories.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "backLang",
      "backText",
      "createdAt",
      "frontLang",
      "frontText",
      "stackId"
    ],
    "properties": {
      "stackId": {
        "type": "string",
        "format": "record-key"
      },
      "backLang": {
        "type": "string",
        "maxLength": 2,
        "minLength": 2,
        "maxGraphemes": 2
      },
      "backText": {
        "type": "string",
        "maxLength": 4096,
        "minLength": 1
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "frontLang": {
        "type": "string",
        "maxLength": 2,
        "minLength": 2,
        "maxGraphemes": 2
      },
      "frontText": {
        "type": "string",
        "maxLength": 4096,
        "minLength": 1
      }
    },
    "description": "a single flashcard"
  }
}
stack record

No description available.

Record Key tid Timestamp-based ID

Properties

backLang string Optional

No description available.

maxLength: 2 bytesminLength: 2 bytesmaxGraphemes: 2 graphemes
createdAt string datetime Required

An RFC 3339 formatted timestamp.

frontLang string Optional

No description available.

maxLength: 2 bytesminLength: 2 bytesmaxGraphemes: 2 graphemes
Default: en
label string Required

No description available.

maxLength: 100 bytesminLength: 1 bytes
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "createdAt",
      "label"
    ],
    "properties": {
      "label": {
        "type": "string",
        "maxLength": 100,
        "minLength": 1
      },
      "backLang": {
        "type": "string",
        "maxLength": 2,
        "minLength": 2,
        "maxGraphemes": 2
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "frontLang": {
        "type": "string",
        "default": "en",
        "maxLength": 2,
        "minLength": 2,
        "maxGraphemes": 2
      }
    },
    "description": "a stack of flashcards"
  }
}

Lexicon Garden

@