{
  "openapi": "3.0.1",
  "info": {
    "title": "Developer Signal Monitor",
    "description": "Monitor public npm packages, maintainers, package license changes, GitHub releases, OSV/SBOM advisories, and Docker tags for developer signals.",
    "version": "0.2",
    "x-build-id": "CuFQJKeGC8GShX7g7"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/silicon1235~developer-signal-monitor/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-silicon1235-developer-signal-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/silicon1235~developer-signal-monitor/runs": {
      "post": {
        "operationId": "runs-sync-silicon1235-developer-signal-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/silicon1235~developer-signal-monitor/run-sync": {
      "post": {
        "operationId": "run-sync-silicon1235-developer-signal-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",
        "properties": {
          "npmPackages": {
            "title": "npm packages",
            "type": "array",
            "description": "Public npm package names to monitor for latest-version and maintainer-fingerprint changes.",
            "default": [
              "apify",
              "crawlee"
            ],
            "items": {
              "type": "string"
            }
          },
          "githubRepos": {
            "title": "GitHub repositories",
            "type": "array",
            "description": "Public GitHub repositories in owner/name form to monitor for latest releases.",
            "default": [
              "apify/crawlee",
              "apify/apify-sdk-js"
            ],
            "items": {
              "type": "string"
            }
          },
          "osvPackages": {
            "title": "OSV npm packages",
            "type": "array",
            "description": "Public npm package names to check against OSV.dev vulnerabilities. Defaults to empty to avoid extra OSV API calls unless explicitly enabled.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "sbomUrls": {
            "title": "SBOM JSON URLs",
            "type": "array",
            "description": "Public CycloneDX JSON SBOM URLs to parse for embedded vulnerability records. Defaults to empty to avoid extra network calls unless explicitly enabled.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "githubAdvisoryRepos": {
            "title": "GitHub advisory repositories",
            "type": "array",
            "description": "Public GitHub repositories in owner/name form to monitor for repository security advisories. Leave empty to avoid extra GitHub API calls.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "dockerImages": {
            "title": "Docker images",
            "type": "array",
            "description": "Public Docker Hub images to monitor for latest tags, such as nginx or apify/actor-node.",
            "default": [
              "library/node"
            ],
            "items": {
              "type": "string"
            }
          },
          "previousSignalIds": {
            "title": "Previous signal IDs",
            "type": "array",
            "description": "Optional IDs from a previous run. Missing IDs are marked NEW.",
            "default": [],
            "items": {
              "type": "string"
            }
          },
          "alertKeywords": {
            "title": "Alert keywords",
            "type": "array",
            "description": "Keywords in package names, repository names, release names, release notes, or npm metadata that make a signal alert-worthy.",
            "default": [
              "major",
              "breaking",
              "security",
              "crawler",
              "scraper",
              "agent",
              "release",
              "docker",
              "image"
            ],
            "items": {
              "type": "string"
            }
          },
          "includePrereleases": {
            "title": "Include GitHub prereleases",
            "type": "boolean",
            "description": "Include prerelease GitHub releases when selecting the latest release.",
            "default": false
          },
          "snapshotKey": {
            "title": "Snapshot key",
            "type": "string",
            "description": "Key-value-store record used for scheduled change detection.",
            "default": "DEVELOPER_SIGNAL_SNAPSHOT"
          },
          "saveSnapshot": {
            "title": "Save snapshot",
            "type": "boolean",
            "description": "Save current signal IDs so the next scheduled run can detect new signals.",
            "default": true
          },
          "maxPackages": {
            "title": "Maximum npm packages",
            "minimum": 1,
            "maximum": 50,
            "type": "integer",
            "description": "Maximum npm packages to check. Values above 50 are capped by the Actor.",
            "default": 10
          },
          "maxOsvPackages": {
            "title": "Maximum OSV packages",
            "minimum": 1,
            "maximum": 50,
            "type": "integer",
            "description": "Maximum npm packages to check against OSV.dev. Values above 50 are capped by the Actor.",
            "default": 10
          },
          "maxSbomUrls": {
            "title": "Maximum SBOM URLs",
            "minimum": 1,
            "maximum": 50,
            "type": "integer",
            "description": "Maximum public SBOM JSON URLs to fetch and parse. Values above 50 are capped by the Actor.",
            "default": 10
          },
          "maxRepos": {
            "title": "Maximum GitHub repositories",
            "minimum": 1,
            "maximum": 50,
            "type": "integer",
            "description": "Maximum GitHub repositories to check. Values above 50 are capped by the Actor.",
            "default": 10
          },
          "maxDockerImages": {
            "title": "Maximum Docker images",
            "minimum": 1,
            "maximum": 50,
            "type": "integer",
            "description": "Maximum Docker Hub images to check. Values above 50 are capped by the Actor.",
            "default": 10
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}