Apache Nutch · Schema

ServiceInfo

Information returned by service operations.

Web CrawlerIndexingSearchApacheJavaHadoopOpen-Source

Properties

Name Type Description
dumpPaths array List of file paths for the dump output.
View JSON Schema on GitHub

JSON Schema

apache-nutch-service-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-nutch/refs/heads/main/json-schema/apache-nutch-service-info-schema.json",
  "title": "ServiceInfo",
  "description": "Information returned by service operations.",
  "type": "object",
  "properties": {
    "dumpPaths": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "List of file paths for the dump output."
    }
  },
  "required": [
    "dumpPaths"
  ]
}