Backfill in-progress. Some lexicons and records may be missing or incomplete.

garden.lexicon.example

lexicon.garden

Documentation

main record

An example value for a lexicon schema

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

The user-supplied date and time the example was created.

description string Optional

A description of the example.

lexicon string nsid Required

The NSID that the example is of.

value unknown Required

The example itself.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "lexicon",
      "value",
      "createdAt"
    ],
    "properties": {
      "value": {
        "type": "unknown",
        "description": "The example itself."
      },
      "lexicon": {
        "type": "string",
        "format": "nsid",
        "description": "The NSID that the example is of."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "The user-supplied date and time the example was created."
      },
      "description": {
        "type": "string",
        "description": "A description of the example."
      }
    }
  },
  "description": "An example value for a lexicon schema"
}

Lexicon Garden

@