| Name |
Type |
Description |
Notes |
| id |
String |
Unique crawl identifier |
|
| project_id |
String |
Project identifier |
|
| status |
String |
Crawl status |
|
| started_at |
Time |
Crawl start timestamp |
|
| completed_at |
Time |
Crawl completion timestamp |
[optional] |
| pages_crawled |
Integer |
Number of pages crawled |
[optional] |
| error_message |
String |
Error message if crawl failed |
[optional] |
require 'rankvectors'
instance = RankVectors::Crawl.new(
id: crawl-123,
project_id: proj-123,
status: completed,
started_at: 2025-01-15T10:00Z,
completed_at: 2025-01-15T10:05Z,
pages_crawled: 150,
error_message: Connection timeout
)