LambdaTest · Schema

LambdaTest Build

Represents a test build grouping one or more test sessions on LambdaTest.

TestingCross-Browser TestingSeleniumCypressPlaywrightMobile TestingAutomationQAVisual Regression

Properties

Name Type Description
build_id integer Unique numeric identifier for the build.
build_name string Name of the build as set by the user.
username string Username of the user who created the build.
status_ind string Current status of the build.
create_timestamp string ISO 8601 timestamp when the build was created.
end_timestamp string ISO 8601 timestamp when the build ended.
project_id number Project this build belongs to.
tags array User-defined tags associated with the build.
public_url string Shareable public URL for the build (present when publicurl=true).
duration number Total build duration in seconds.
dashboard_url string URL to view the build on the LambdaTest dashboard.
View JSON Schema on GitHub

JSON Schema

lambdatest-build-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/lambdatest/main/json-schema/lambdatest-build-schema.json",
  "title": "LambdaTest Build",
  "description": "Represents a test build grouping one or more test sessions on LambdaTest.",
  "type": "object",
  "properties": {
    "build_id": {
      "type": "integer",
      "description": "Unique numeric identifier for the build.",
      "example": 1212
    },
    "build_name": {
      "type": "string",
      "description": "Name of the build as set by the user.",
      "example": "my-build"
    },
    "username": {
      "type": "string",
      "description": "Username of the user who created the build.",
      "example": "john smith"
    },
    "status_ind": {
      "type": "string",
      "description": "Current status of the build.",
      "enum": ["running", "queued", "completed", "timeout", "error"],
      "example": "completed"
    },
    "create_timestamp": {
      "type": "string",
      "format": "date-time",
      "description": "ISO 8601 timestamp when the build was created.",
      "example": "2018-12-23T14:30:14.000Z"
    },
    "end_timestamp": {
      "type": "string",
      "format": "date-time",
      "description": "ISO 8601 timestamp when the build ended.",
      "example": "2018-12-25T12:46:38.000Z"
    },
    "project_id": {
      "type": "number",
      "description": "Project this build belongs to.",
      "example": 24
    },
    "tags": {
      "type": "array",
      "items": { "type": "string" },
      "description": "User-defined tags associated with the build.",
      "example": ["tag1", "tag2", "tag3"]
    },
    "public_url": {
      "type": "string",
      "format": "uri",
      "description": "Shareable public URL for the build (present when publicurl=true).",
      "example": "https://automation.lambdatest.com/share?shareId=asdas"
    },
    "duration": {
      "type": "number",
      "description": "Total build duration in seconds.",
      "example": 156
    },
    "dashboard_url": {
      "type": "string",
      "format": "uri",
      "description": "URL to view the build on the LambdaTest dashboard.",
      "example": "https://automation.lambdatest.com/build?&build=1"
    }
  },
  "required": ["build_id", "status_ind"]
}