{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ExperimentTableSimplified", "title": "ExperimentTableSimplified", "properties": { "id": { "type": "string" }, "name": { "type": "string" }, "experimentId": { "type": "string" }, "createdAt": { "type": "string" }, "metadata": {}, "columns": { "items": { "properties": { "columnType": { "type": "string" }, "columnName": { "type": "string" }, "id": { "type": "string" } }, "required": [ "columnType", "columnName", "id" ], "type": "object" }, "type": "array" } }, "required": [ "id", "name", "experimentId", "createdAt", "columns" ], "type": "object", "additionalProperties": false }