source_node_id
stringclasses 5
values | target_node_id
stringclasses 3
values | relationship_type
stringclasses 4
values | properties_json
stringclasses 5
values | valid_from
timestamp[ms] | valid_to
timestamp[ms] | created_at
timestamp[ms] |
---|---|---|---|---|---|---|
PVG_AIRPORT | FRA_AIRPORT | ROUTE_TO | {"capacity": "normal", "route_type": "commercial"} | 2020-03-16T00:00:00 | null | 2020-03-16T00:00:00 |
PVG_AIRPORT | IST_AIRPORT | ROUTE_TO | {"capacity": "limited", "route_type": "charter"} | 2020-03-16T00:00:00 | null | 2020-03-16T00:00:00 |
IST_AIRPORT | FRA_AIRPORT | ROUTE_TO | {"capacity": "limited", "route_type": "charter"} | 2020-03-16T00:00:00 | null | 2020-03-16T00:00:00 |
PPE_MANUFACTURER | PVG_AIRPORT | OPERATES_FROM | {"shipment_type": "medical"} | 2020-03-16T00:00:00 | null | 2020-03-16T00:00:00 |
AIRLINE_CARGO | FRA_AIRPORT | OPERATES_AT | {"operation_type": "hub"} | 2020-03-16T00:00:00 | null | 2020-03-16T00:00:00 |
CUSTOMS_FRA | FRA_AIRPORT | CONTROLS | {"authority_type": "customs"} | 2020-03-16T00:00:00 | null | 2020-03-16T00:00:00 |
Dataset Card for dwb2023/crisis_prediction_edges
Purpose
Stores the edges (relationships) between nodes in the crisis prediction graph, representing connections like routes, impacts, and dependencies.
Schema Description
Field Name | Data Type | Description |
---|---|---|
source_node_id | string | ID of the source node |
target_node_id | string | ID of the target node |
relationship_type | string | Type of relationship (e.g., "IMPACTS", "ROUTED_THROUGH") |
properties_json | string | JSON string containing edge properties |
valid_from | timestamp[ms] | When the relationship became valid |
valid_to | timestamp[ms] | When the relationship expired/will expire |
created_at | timestamp[ms] | When the edge was created |
Example Entry
{
"source_node_id": "HKG_AIRPORT",
"target_node_id": "FRA_AIRPORT",
"relationship_type": "ROUTED_THROUGH",
"properties_json": {"capacity": "500t", "frequency": "daily"},
"valid_from": 1706745600000,
"valid_to": 1709251200000,
"created_at": 1706745600000
}
- Downloads last month
- 26