{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "TestResultRow", "type": "object", "properties": { "columns": { "type": "array", "items": { "$ref": "#/definitions/TestResultColumn" }, "description": "Generated columns.", "example": [ { "name": "id", "value": "12345" } ] } }, "description": "Generated table row, part of the test result.", "example": { "columns": [ { "name": "id", "value": "12345" } ] }, "required": [ "columns" ] }