A single seed URL entry.
{ "$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" } }