at.inlay.pack

inlay.at

Documentation

A list of type to component exports

main record

A list of type to component exports

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Optional

An RFC 3339 formatted timestamp.

exports array of ref #export Required

Type to component mappings

name string Required

Short slug for the pack (e.g. "core", "ui")

maxLength: 64 bytes
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "name",
      "exports"
    ],
    "properties": {
      "name": {
        "type": "string",
        "maxLength": 64,
        "description": "Short slug for the pack (e.g. \"core\", \"ui\")"
      },
      "exports": {
        "type": "array",
        "items": {
          "ref": "#export",
          "type": "ref"
        },
        "description": "Type to component mappings"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      }
    }
  },
  "description": "A list of type to component exports"
}
export object

No description available.

Properties

component string at-uri Required

AT-URI of the component record

type string nsid Required

NSID of the type being exported

View raw schema
{
  "type": "object",
  "required": [
    "type",
    "component"
  ],
  "properties": {
    "type": {
      "type": "string",
      "format": "nsid",
      "description": "NSID of the type being exported"
    },
    "component": {
      "type": "string",
      "format": "at-uri",
      "description": "AT-URI of the component record"
    }
  }
}

Lexicon Garden

@