Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique identifier for the lookup table |
| name | string | Name of the lookup table |
| rowCount | integer | Number of rows in the lookup table |
| columnCount | integer | Number of columns in the lookup table |
| createdAt | string | When the lookup table was created |
| lastModified | string | When the lookup table was last updated |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/LookupTable",
"title": "LookupTable",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the lookup table"
},
"name": {
"type": "string",
"description": "Name of the lookup table"
},
"rowCount": {
"type": "integer",
"description": "Number of rows in the lookup table"
},
"columnCount": {
"type": "integer",
"description": "Number of columns in the lookup table"
},
"createdAt": {
"type": "string",
"format": "date-time",
"description": "When the lookup table was created"
},
"lastModified": {
"type": "string",
"format": "date-time",
"description": "When the lookup table was last updated"
}
}
}