RapidAPI · Schema

TestUpdateInput

API MarketplaceAPI ManagementAPI TestingAPI GatewayAPI DesignEnterprise

Properties

Name Type Description
name string Updated test name
description string Updated test description
steps array Updated list of test steps
View JSON Schema on GitHub

JSON Schema

rapidapi-testupdateinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TestUpdateInput",
  "title": "TestUpdateInput",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Updated test name"
    },
    "description": {
      "type": "string",
      "description": "Updated test description"
    },
    "steps": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TestStepInput"
      },
      "description": "Updated list of test steps"
    }
  }
}