RoutingTable (type)

{
  "additionalProperties": false, 
  "description": "Routing table.", 
  "id": "RoutingTable", 
  "module_id": "PolicyConnectivityStatistics", 
  "properties": {
    "count": {
      "description": "Entry count.", 
      "readonly": true, 
      "title": "Entry count", 
      "type": "int"
    }, 
    "edge_node": {
      "description": "Transport node ID.", 
      "readonly": true, 
      "title": "Transport node ID", 
      "type": "string"
    }, 
    "error_message": {
      "description": "Routing table fetch error message, populated only if status if failure.", 
      "readonly": true, 
      "title": "Routing table fetch error.", 
      "type": "string"
    }, 
    "route_entries": {
      "description": "Route entries.", 
      "items": {
        "$ref": "RoutingEntry
      }, 
      "required": true, 
      "title": "Route entries", 
      "type": "array"
    }, 
    "status": {
      "description": "Routing table fetch status from Transport node.", 
      "enum": [
        "SUCCESS", 
        "FAILURE", 
        "NOT_FOUND"
      ], 
      "readonly": true, 
      "title": "Routing table fetch status.", 
      "type": "string"
    }
  }, 
  "title": "Routing table", 
  "type": "object"
}