TestReportList

Paginated list of test reports.

SteelManufacturingAutomotiveConstructionEnergySupply ChainFortune 500

Properties

Name Type Description
total integer Total number of matching test reports.
reports array List of test report records.
View JSON Schema on GitHub

JSON Schema

steeltrack-test-report-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/united-states-steel/refs/heads/main/json-schema/steeltrack-test-report-list-schema.json",
  "title": "TestReportList",
  "description": "Paginated list of test reports.",
  "type": "object",
  "properties": {
    "total": {
      "type": "integer",
      "description": "Total number of matching test reports.",
      "example": 5
    },
    "reports": {
      "type": "array",
      "description": "List of test report records.",
      "items": {
        "$ref": "#/components/schemas/TestReport"
      }
    }
  }
}