{
  "openapi": "3.0.1",
  "info": {
    "title": "Major Industrial Preconstruction Permit Intelligence",
    "description": "Detect major industrial projects entering environmental preconstruction permitting from official Louisiana, West Virginia, and Texas sources.",
    "version": "0.9",
    "x-build-id": "Y6pR62rPrWhoCIv0F"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/beaming_tellurium~major-industrial-preconstruction-permit-intelligence/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-beaming_tellurium-major-industrial-preconstruction-permit-intelligence",
        "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/beaming_tellurium~major-industrial-preconstruction-permit-intelligence/runs": {
      "post": {
        "operationId": "runs-sync-beaming_tellurium-major-industrial-preconstruction-permit-intelligence",
        "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/beaming_tellurium~major-industrial-preconstruction-permit-intelligence/run-sync": {
      "post": {
        "operationId": "run-sync-beaming_tellurium-major-industrial-preconstruction-permit-intelligence",
        "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",
        "properties": {
          "states": {
            "title": "States",
            "type": "array",
            "description": "Official state adapters to run.",
            "items": {
              "type": "string",
              "enum": [
                "LA",
                "WV",
                "TX"
              ]
            },
            "default": [
              "LA"
            ]
          },
          "onlyNew": {
            "title": "Only new or changed events",
            "type": "boolean",
            "description": "Deliver only records not previously delivered, while still recording every official-source observation.",
            "default": false
          },
          "includeChanged": {
            "title": "Include changed events",
            "type": "boolean",
            "description": "When Only new is enabled, include changed records as well as first-seen records.",
            "default": true
          },
          "maxResults": {
            "title": "Maximum delivered results",
            "minimum": 0,
            "maximum": 100000,
            "type": "integer",
            "description": "Output limit. Deferred records remain eligible for later delivery and do not corrupt observation history.",
            "default": 25
          },
          "company": {
            "title": "Company or facility contains",
            "type": "string",
            "description": "Optional case-insensitive company/facility filter."
          },
          "county": {
            "title": "County contains",
            "type": "string",
            "description": "Optional county filter."
          },
          "projectType": {
            "title": "Project type contains",
            "type": "string",
            "description": "Examples: data_center, power_generation, advanced_manufacturing, lng, chemical, steel_metals."
          },
          "minimumStage": {
            "title": "Minimum lifecycle stage",
            "enum": [
              "application_received",
              "administratively_complete",
              "technically_complete",
              "revised",
              "draft_or_preliminary_decision",
              "public_notice",
              "final_issued",
              "withdrawn"
            ],
            "type": "string",
            "description": "Lowest canonical permit stage to deliver.",
            "default": "application_received"
          },
          "permitNumbers": {
            "title": "Permit numbers (validation/scoped runs)",
            "type": "array",
            "description": "Optional permit-number list. Intended for focused validation or monitoring; select exactly one state when used.",
            "items": {
              "type": "string"
            },
            "default": []
          },
          "maximumTexasDocuments": {
            "title": "Maximum Texas summary PDFs",
            "minimum": 1,
            "type": "integer",
            "description": "Hard safety ceiling. The run fails instead of silently processing a partial set.",
            "default": 600
          },
          "maximumWestVirginiaDocuments": {
            "title": "Maximum West Virginia application PDFs",
            "minimum": 1,
            "type": "integer",
            "description": "Hard safety ceiling. The run fails instead of silently processing a partial set.",
            "default": 150
          },
          "documentConcurrency": {
            "title": "Official document concurrency",
            "minimum": 1,
            "maximum": 20,
            "type": "integer",
            "description": "Maximum number of official PDF downloads processed concurrently.",
            "default": 6
          },
          "observationStoreName": {
            "title": "Observation-history store",
            "type": "string",
            "description": "Named key-value store for append-only official-source observations and current source state.",
            "default": "worker3-permit-observations-v2"
          },
          "deliveryStoreName": {
            "title": "Customer-delivery store",
            "type": "string",
            "description": "Named key-value store tracking only records actually delivered to this customer's dataset.",
            "default": "worker3-permit-delivery-v2"
          },
          "healthStoreName": {
            "title": "Source-health store",
            "type": "string",
            "description": "Named key-value store retaining the latest per-state source-health reports.",
            "default": "worker3-source-health-v2"
          },
          "productionMode": {
            "title": "Enforce source-health gates",
            "type": "boolean",
            "description": "Fail closed before history or delivery when an official source fails its structural or completeness checks.",
            "default": true
          },
          "storageConcurrency": {
            "title": "Storage concurrency",
            "minimum": 1,
            "maximum": 50,
            "type": "integer",
            "description": "Maximum number of concurrent history-store reads or writes.",
            "default": 20
          },
          "qualityMinLouisianaRows": {
            "title": "Louisiana row floor",
            "minimum": 1,
            "type": "integer",
            "description": "Fail a full Louisiana run when the official source returns fewer observations.",
            "default": 5
          },
          "qualityMinWestVirginiaRows": {
            "title": "West Virginia event floor",
            "minimum": 1,
            "type": "integer",
            "description": "Fail a full West Virginia run when the official source returns fewer lifecycle observations.",
            "default": 3
          },
          "qualityMinTexasRows": {
            "title": "Texas event floor",
            "minimum": 1,
            "type": "integer",
            "description": "Fail a full Texas run when the official source returns fewer current permit observations.",
            "default": 1
          },
          "resetObservationHistory": {
            "title": "Reset observation state for touched records",
            "type": "boolean",
            "description": "Development only.",
            "default": false
          },
          "resetDeliveryHistory": {
            "title": "Reset delivery state for touched records",
            "type": "boolean",
            "description": "Development only.",
            "default": false
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}