Apache Nutch · Schema

SeedUrl

A single seed URL entry.

Web CrawlerIndexingSearchApacheJavaHadoopOpen Source

Properties

Name Type Description
id integer The seed URL identifier.
url string The seed URL.
View JSON Schema on GitHub

JSON Schema

apache-nutch-seed-url-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-seed-url-schema.json",
  "title": "SeedUrl",
  "description": "A single seed URL entry.",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "format": "int64",
      "minimum": 0,
      "maximum": 9007199254740991,
      "description": "The seed URL identifier.",
      "readOnly": true
    },
    "url": {
      "type": "string",
      "description": "The seed URL."
    }
  },
  "example": {
    "url": "https://example.com"
  }
}