Apache JMeter · JSON Structure

Rest Api Test Run Response Structure

Response from starting a test

Type: object Properties: 3
API TestingJavaLoad TestingOpen SourcePerformance TestingStress Testing

TestRunResponse is a JSON Structure definition published by Apache JMeter, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

testId status startTime

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-jmeter/refs/heads/main/json-structure/rest-api-test-run-response-structure.json",
  "name": "TestRunResponse",
  "description": "Response from starting a test",
  "properties": {
    "testId": {
      "type": "string",
      "description": "Unique test run identifier",
      "example": "test-1234"
    },
    "status": {
      "type": "string",
      "example": "running"
    },
    "startTime": {
      "type": "integer",
      "description": "Test start timestamp",
      "example": 1718153645993
    }
  }
}