Get graded compliance reports for a node.
          Get a set of graded and scored compliance reports for a node.
          
            Copied to Clipboard
            
            [
  {
    "grade": "review",
    "total": 26873320,
    "devices": [
      "xr9kv-atl",
      "xr9kv-atl",
      "xr9kv-atl"
    ],
    "records": [
      {
        "deviceName": "xr9kv-atl",
        "reportId": "5c35355dbebaa82eaf8113f0",
        "nodePath": "base/US East/Atlanta",
        "timestamp": "2019-04-12T14:42:47.958Z",
        "score": -60810582.74393793,
        "grade": "review"
      }
    ]
  },
  {
    "grade": "pass",
    "total": 72778480,
    "devices": [
      "xr9kv-atl",
      "xr9kv-atl"
    ],
    "records": [
      {
        "deviceName": "xr9kv-atl",
        "reportId": "5c35355dbebaa82eaf8113f0",
        "nodePath": "base/US East/Atlanta",
        "timestamp": "2019-04-12T14:42:47.958Z",
        "score": 31967105.47039312,
        "grade": "pass"
      },
      {
        "deviceName": "xr9kv-atl",
        "reportId": "5c35355dbebaa82eaf8113f0",
        "nodePath": "base",
        "timestamp": "2019-04-12T14:42:47.958Z",
        "score": 8361100.568991467,
        "grade": "review"
      }
    ]
  },
  {
    "grade": "review",
    "total": 71401131,
    "devices": [
      "xr9kv-atl",
      "xr9kv-atl",
      "xr9kv-atl",
      "xr9kv-atl"
    ],
    "records": [
      {
        "deviceName": "xr9kv-atl",
        "reportId": "5c35355dbebaa82eaf8113f0",
        "nodePath": "base",
        "timestamp": "2019-04-12T14:42:47.958Z",
        "score": 84517204.24027592,
        "grade": "pass"
      },
      {
        "deviceName": "xr9kv-atl",
        "reportId": "5c35355dbebaa82eaf8113f0",
        "nodePath": "base/US East",
        "timestamp": "2019-04-12T14:42:47.958Z",
        "score": -72069442.8839927,
        "grade": "fail"
      },
      {
        "deviceName": "xr9kv-atl",
        "reportId": "5c35355dbebaa82eaf8113f0",
        "nodePath": "base",
        "timestamp": "2019-04-12T14:42:47.958Z",
        "score": 66667243.26702586,
        "grade": "review"
      },
      {
        "deviceName": "xr9kv-atl",
        "reportId": "5c35355dbebaa82eaf8113f0",
        "nodePath": "base/US East/Atlanta",
        "timestamp": "2019-04-12T14:42:47.958Z",
        "score": 26181652.7041066,
        "grade": "review"
      },
      {
        "deviceName": "xr9kv-atl",
        "reportId": "5c35355dbebaa82eaf8113f0",
        "nodePath": "base/US East/Atlanta",
        "timestamp": "2019-04-12T14:42:47.958Z",
        "score": 22783505.376865685,
        "grade": "fail"
      }
    ]
  },
  {
    "grade": "review",
    "total": 40403014,
    "devices": [
      "xr9kv-atl",
      "xr9kv-atl"
    ],
    "records": [
      {
        "deviceName": "xr9kv-atl",
        "reportId": "5c35355dbebaa82eaf8113f0",
        "nodePath": "base",
        "timestamp": "2019-04-12T14:42:47.958Z",
        "score": 92899552.72576171,
        "grade": "review"
      },
      {
        "deviceName": "xr9kv-atl",
        "reportId": "5c35355dbebaa82eaf8113f0",
        "nodePath": "base/US East/Atlanta",
        "timestamp": "2019-04-12T14:42:47.958Z",
        "score": -24876513.251133263,
        "grade": "fail"
      },
      {
        "deviceName": "xr9kv-atl",
        "reportId": "5c35355dbebaa82eaf8113f0",
        "nodePath": "base/US East/Atlanta",
        "timestamp": "2019-04-12T14:42:47.958Z",
        "score": 96990286.66825485,
        "grade": "pass"
      },
      {
        "deviceName": "xr9kv-atl",
        "reportId": "5c35355dbebaa82eaf8113f0",
        "nodePath": "base/US East",
        "timestamp": "2019-04-12T14:42:47.958Z",
        "score": 34835245.14965889,
        "grade": "review"
      },
      {
        "deviceName": "xr9kv-atl",
        "reportId": "5c35355dbebaa82eaf8113f0",
        "nodePath": "base",
        "timestamp": "2019-04-12T14:42:47.958Z",
        "score": -89720314.166104,
        "grade": "pass"
      }
    ]
  }
]
           
          
            Copied to Clipboard
            
            {
  "title": "graded_compliance_reports",
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "grade": {
        "type": "string",
        "examples": [
          "pass",
          "review",
          "fail"
        ]
      },
      "total": {
        "type": "integer",
        "minimum": 0
      },
      "devices": {
        "type": "array",
        "items": {
          "$ref": "deviceData#/definitions/deviceName"
        }
      },
      "records": {
        "type": "array",
        "items": {
          "type": "object",
          "properties": {
            "deviceName": {
              "$ref": "deviceData#/definitions/deviceName"
            },
            "reportId": {
              "$ref": "common#/definitions/mongoObjectId"
            },
            "nodePath": {
              "title": "nodePath",
              "$ref": "goldenConfigData#/definitions/goldenConfigNodePath"
            },
            "timestamp": {
              "$ref": "common#/definitions/timestamp"
            },
            "score": {
              "type": "number"
            },
            "grade": {
              "type": "string",
              "examples": [
                "pass",
                "review",
                "fail"
              ]
            }
          }
        }
      }
    }
  }
}