{
  "name": "ListRuns",
  "plane": "data",
  "terraformEligible": false,
  "protocol": {
    "kind": "cloudJson",
    "target": "CloudElt.ListRuns",
    "service": "elt"
  },
  "requestBody": "typed",
  "responseBody": "typed",
  "requestSchema": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "additionalProperties": false,
    "properties": {
      "maxResults": {
        "default": null,
        "format": "uint32",
        "minimum": 0.0,
        "type": [
          "integer",
          "null"
        ]
      },
      "nextToken": {
        "default": null,
        "type": [
          "string",
          "null"
        ]
      },
      "pipelineName": {
        "default": null,
        "type": [
          "string",
          "null"
        ]
      }
    },
    "title": "ListRunsRequest",
    "type": "object"
  },
  "responseSchema": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "definitions": {
      "PipelineRunResponse": {
        "properties": {
          "pipelineName": {
            "type": "string"
          },
          "rowsWritten": {
            "format": "uint64",
            "minimum": 0.0,
            "type": "integer"
          },
          "runId": {
            "type": "string"
          },
          "status": {
            "type": "string"
          }
        },
        "required": [
          "pipelineName",
          "rowsWritten",
          "runId",
          "status"
        ],
        "type": "object"
      }
    },
    "properties": {
      "nextToken": {
        "type": [
          "string",
          "null"
        ]
      },
      "runs": {
        "items": {
          "$ref": "#/definitions/PipelineRunResponse"
        },
        "type": "array"
      }
    },
    "required": [
      "runs"
    ],
    "title": "ListRunsResponse",
    "type": "object"
  }
}
