{
"name": "uc-proximity-policy",
"version": 1,
"sets": {
"nearby_uc": {
"source": "icmbio_ucs_federais",
"joins": [{ "dwithin": { "target": "$input", "max_m": 2000 } }]
}
},
"projections": [
{
"id": "distance_to_uc_m",
"terminal": { "type": "min_distance_m", "set": "$nearby_uc" }
}
],
"checks": [
{
"id": "uc_too_close",
"severity": "critical",
"predicate": {
"type": "threshold",
"projection": "distance_to_uc_m",
"op": "<=",
"value": 500
}
},
{
"id": "uc_buffer_zone",
"severity": "medium",
"predicate": {
"type": "threshold",
"projection": "distance_to_uc_m",
"op": "<=",
"value": 2000
}
}
],
"verdict_policy": {
"kind": "severity_mapping",
"rules": {
"critical": "non_compliant",
"high": "non_compliant",
"medium": "warning",
"low": "warning",
"info": "compliant"
}
}
}