{
  "openapi": "3.0.1",
  "info": {
    "title": "No-Spec Vendor JSON API Response Drift Watcher",
    "description": "Watch public JSON GET endpoints for response-shape drift without an OpenAPI spec. The Actor learns the shape from the response, compares it against a stored baseline, and reports each field-level change with a breaking flag.",
    "version": "0.1",
    "x-build-id": "oNwxfn4dJsjaJz6O7"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/kingii98~no-spec-vendor-json-api-response-drift-watcher/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-kingii98-no-spec-vendor-json-api-response-drift-watcher",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/kingii98~no-spec-vendor-json-api-response-drift-watcher/runs": {
      "post": {
        "operationId": "runs-sync-kingii98-no-spec-vendor-json-api-response-drift-watcher",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/kingii98~no-spec-vendor-json-api-response-drift-watcher/run-sync": {
      "post": {
        "operationId": "run-sync-kingii98-no-spec-vendor-json-api-response-drift-watcher",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "required": [
          "endpoints"
        ],
        "properties": {
          "endpoints": {
            "title": "Endpoints",
            "minItems": 1,
            "maxItems": 25,
            "type": "array",
            "description": "1 to 25 public JSON GET URLs. No authentication, no browser and no proxy: the Actor sends a plain GET and reads the JSON body. If you leave this field empty, the Actor checks the two public example endpoints shown below.",
            "default": [
              "https://jsonplaceholder.typicode.com/todos/1",
              "https://registry.npmjs.org/-/package/left-pad/dist-tags"
            ],
            "items": {
              "type": "string"
            }
          },
          "baselineStore": {
            "title": "Baseline record key",
            "type": "string",
            "description": "Name of the record that holds the shape baseline in the named key-value store 'json-api-shape-baseline'. Use one key for each monitored fleet of endpoints. The record is written once, at the end of the run.",
            "default": "SHAPE_BASELINE"
          },
          "ignorePaths": {
            "title": "Ignore paths",
            "minItems": 0,
            "maxItems": 50,
            "type": "array",
            "description": "JSON pointers to ignore, for example /meta/timestamp or /items/-/viewCount. A pointer also ignores everything below it. Use the token '-' for any array element. Ignored fields change neither the shape hash nor the diff.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "sampleDepth": {
            "title": "Sample depth",
            "minimum": 1,
            "maximum": 12,
            "type": "integer",
            "description": "Maximum object depth for shape inference. The walk stops below this depth, and the record reports shapeTruncated.",
            "default": 6
          },
          "arraySampleSize": {
            "title": "Array sample size",
            "minimum": 1,
            "maximum": 200,
            "type": "integer",
            "description": "Maximum number of elements read from each array. All elements of one array share the shape pointer that ends with '-'.",
            "default": 20
          },
          "breakingRules": {
            "title": "Breaking rules",
            "minItems": 0,
            "maxItems": 5,
            "uniqueItems": true,
            "type": "array",
            "description": "Which change classes count as breaking. The default is: field removed, type changed, nullability added. A nullability change counts as breaking only when the field became nullable.",
            "items": {
              "type": "string",
              "enum": [
                "added",
                "removed",
                "type-changed",
                "nullability-changed",
                "enum-changed"
              ],
              "enumTitles": [
                "Field added",
                "Field removed",
                "Type changed",
                "Nullability added",
                "Enum values changed"
              ]
            },
            "default": [
              "removed",
              "type-changed",
              "nullability-changed"
            ]
          },
          "concurrency": {
            "title": "Concurrency",
            "minimum": 1,
            "maximum": 25,
            "type": "integer",
            "description": "Maximum number of endpoints fetched at the same time.",
            "default": 5
          },
          "timeoutSecs": {
            "title": "Request timeout (seconds)",
            "minimum": 2,
            "maximum": 120,
            "type": "integer",
            "description": "Per-request timeout for each GET. An endpoint that exceeds it gets the TIMEOUT reason code.",
            "default": 20
          },
          "maxRedirects": {
            "title": "Maximum redirects",
            "minimum": 0,
            "maximum": 20,
            "type": "integer",
            "description": "Maximum redirect hops followed for each endpoint. Every hop is checked again against the private-address rules. A chain that repeats a URL gets the REDIRECT_LOOP reason code.",
            "default": 5
          },
          "maxResponseBytes": {
            "title": "Maximum response bytes",
            "minimum": 1000,
            "maximum": 5000000,
            "type": "integer",
            "description": "Per-endpoint body cap. A larger body gets the RESPONSE_TOO_LARGE reason code and is not parsed.",
            "default": 5000000
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}