Apache Nutch · JSON Structure

Apache Nutch Seed Url Structure

A single seed URL entry.

Type: object Properties: 2
Web CrawlerIndexingSearchApacheJavaHadoopOpen Source

SeedUrl is a JSON Structure definition published by Apache Nutch, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id url

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-nutch/refs/heads/main/json-structure/apache-nutch-seed-url-structure.json",
  "name": "SeedUrl",
  "description": "A single seed URL entry.",
  "type": "object",
  "properties": {
    "id": {
      "type": "int64",
      "minimum": 0,
      "maximum": 9007199254740991,
      "description": "The seed URL identifier.",
      "readOnly": true
    },
    "url": {
      "type": "string",
      "description": "The seed URL."
    }
  },
  "example": {
    "url": "https://example.com"
  }
}