Commit b2801381 authored by Mark Canterbury's avatar Mark Canterbury
Browse files

Fixed JSON linting

parent e20eec24
Loading
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -2,7 +2,12 @@
root = true

# ASN.1, XML: 4 space indents
[**.{asn,asn1,xml,xsd,json}]
[**.{asn,asn1,xml,xsd}]
indent_style = space
indent_size = 4
trim_trailing_whitespace = true

[**.json]
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
+31 −32
Original line number Diff line number Diff line
@@ -34,4 +34,3 @@
    }
  }
}
  
 No newline at end of file
+196 −197
Original line number Diff line number Diff line
@@ -207,4 +207,3 @@
    }
  }
}
  
 No newline at end of file
+6 −4
Original line number Diff line number Diff line
{
  "CommsIDtoVINRecords": [
        { "VIN" : "1G9Y817H34LSP7293" }
    {
      "VIN": "1G9Y817H34LSP7293"
    }
  ]
}
+85 −65
Original line number Diff line number Diff line
{
  "VINtoCommsIDRecords": [
    {
            "CommsID" : { "IMEI" : "00440123456789" },
      "CommsID": {
        "IMEI": "00440123456789"
      },
      "AssociationTime": {
        "PeriodInTime": {
          "StartTime": "2022-01-16T15:57:00Z",
@@ -10,55 +12,73 @@
      }
    },
    {
            "CommsID" : { "IMSI" : "999990123456789" },
      "CommsID": {
        "IMSI": "999990123456789"
      },
      "AssociationTime": {
        "PointInTime": "2022-01-16T15:57:00Z"
      }
    },
    {
            "CommsID" : { "ICCID" : "89999012345678901234" },
      "CommsID": {
        "ICCID": "89999012345678901234"
      },
      "AssociationTime": {
        "PointInTime": "2022-01-16T15:57:00Z"
      }
    },
    {
            "CommsID" : { "PEIIMEI" : "00440123456789" },
      "CommsID": {
        "PEIIMEI": "00440123456789"
      },
      "AssociationTime": {
        "PointInTime": "2022-01-16T15:57:00Z"
      }
    },
    {
            "CommsID" : { "SUPIIMSI" : "999990123456789" },
      "CommsID": {
        "SUPIIMSI": "999990123456789"
      },
      "AssociationTime": {
        "PointInTime": "2022-01-16T15:57:00Z"
      }
    },
    {
            "CommsID" : { "SUPINAI" : "example@example.com" },
      "CommsID": {
        "SUPINAI": "example@example.com"
      },
      "AssociationTime": {
        "PointInTime": "2022-01-16T15:57:00Z"
      }
    },
    {
            "CommsID" : { "MSISDN" : "491713920000" },
      "CommsID": {
        "MSISDN": "491713920000"
      },
      "AssociationTime": {
        "PointInTime": "2022-01-16T15:57:00Z"
      }
    },
    {
            "CommsID" : { "GPSIMSISDN" : "491713920000" },
      "CommsID": {
        "GPSIMSISDN": "491713920000"
      },
      "AssociationTime": {
        "PointInTime": "2022-01-16T15:57:00Z"
      }
    },
    {
            "CommsID" : { "MACAddress" : "00:00:5e:00:53:00" },
      "CommsID": {
        "MACAddress": "00:00:5e:00:53:00"
      },
      "AssociationTime": {
        "PointInTime": "2022-01-16T15:57:00Z"
      }
    },
    {
            "CommsID" : { "EUI164" : "00:00:5e:ef:10:00:00:00" },
      "CommsID": {
        "EUI164": "00:00:5e:ef:10:00:00:00"
      },
      "AssociationTime": {
        "PointInTime": "2022-01-16T15:57:00Z"
      }
Loading