{
  "openapi": "3.0.1",
  "info": {
    "title": "AI Training Policy Drift Monitor",
    "description": "Monitor public vendor terms, privacy, and AI policy pages for AI-training, customer-content, opt-out, and data-use clause drift.",
    "version": "0.0",
    "x-build-id": "oZssGFQinquO9gygp"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/defenestrator~ai-training-policy-drift-monitor/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-defenestrator-ai-training-policy-drift-monitor",
        "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/defenestrator~ai-training-policy-drift-monitor/runs": {
      "post": {
        "operationId": "runs-sync-defenestrator-ai-training-policy-drift-monitor",
        "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/defenestrator~ai-training-policy-drift-monitor/run-sync": {
      "post": {
        "operationId": "run-sync-defenestrator-ai-training-policy-drift-monitor",
        "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": [
          "policyUrls"
        ],
        "properties": {
          "policyUrls": {
            "title": "Public policy page URLs",
            "type": "array",
            "description": "Public HTTP(S) terms, privacy, data-use, or AI policy pages to monitor. You may enter strings or objects with url, label, and policyType. Private/internal/localhost URLs are blocked.",
            "items": {
              "type": "object",
              "properties": {
                "url": {
                  "type": "string",
                  "title": "Public policy URL",
                  "description": "Public HTTP(S) terms/privacy/AI policy URL to fetch."
                },
                "label": {
                  "type": "string",
                  "title": "Label",
                  "description": "Human-readable vendor or policy name for output rows."
                },
                "policyType": {
                  "type": "string",
                  "title": "Policy type",
                  "description": "Optional policy category such as terms, privacy, AI policy, or data use."
                }
              },
              "required": [
                "url"
              ]
            },
            "default": [
              {
                "label": "Anthropic Commercial Terms",
                "url": "https://www.anthropic.com/legal/commercial-terms",
                "policyType": "terms"
              },
              {
                "label": "AWS AI Services Opt-Out Policy",
                "url": "https://docs.aws.amazon.com/organizations/latest/userguide/orgs_manage_policies_ai-opt-out.html",
                "policyType": "AI opt-out documentation"
              }
            ]
          },
          "previousSnapshots": {
            "title": "Previous dataset rows for drift detection",
            "type": "array",
            "description": "Optional rows from a previous run. The Actor compares text hashes, clause hashes, signal sets, risk levels, and scores to flag policy drift.",
            "items": {
              "type": "object"
            },
            "default": []
          },
          "includeAllRows": {
            "title": "Include non-alert rows",
            "type": "boolean",
            "description": "When false, only alert/drift/error rows are pushed to the dataset. The run-level OUTPUT summary still includes totals.",
            "default": true
          },
          "alertRiskThreshold": {
            "title": "Risk score alert threshold",
            "minimum": 1,
            "maximum": 100,
            "type": "integer",
            "description": "Rows at or above this score are marked alert=true. Material drift can also force an alert.",
            "default": 45
          },
          "riskIncreaseThreshold": {
            "title": "Risk increase alert threshold",
            "minimum": 0,
            "maximum": 100,
            "type": "integer",
            "description": "When previousSnapshots are supplied, flag an alert if the risk score increases by at least this many points.",
            "default": 15
          },
          "maxPages": {
            "title": "Maximum pages per run",
            "minimum": 1,
            "maximum": 100,
            "type": "integer",
            "description": "Upper bound to keep scheduled runs cheap and predictable.",
            "default": 25
          },
          "maxBytes": {
            "title": "Maximum bytes fetched per page",
            "minimum": 50000,
            "maximum": 3000000,
            "type": "integer",
            "description": "Hard cap on bytes read from each public URL before text extraction.",
            "default": 750000
          },
          "maxTextChars": {
            "title": "Maximum extracted text characters scanned",
            "minimum": 5000,
            "maximum": 500000,
            "type": "integer",
            "description": "Safety cap for clause scanning after HTML-to-text extraction.",
            "default": 120000
          },
          "maxRedirects": {
            "title": "Maximum redirects per URL",
            "minimum": 0,
            "maximum": 10,
            "type": "integer",
            "description": "Each redirect destination is rechecked for public HTTP(S) safety before fetching.",
            "default": 5
          },
          "timeoutMs": {
            "title": "Fetch timeout milliseconds",
            "minimum": 5000,
            "maximum": 60000,
            "type": "integer",
            "description": "Per-request timeout for public policy pages.",
            "default": 30000
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}