IT-Infrastructure icon indicating copy to clipboard operation
IT-Infrastructure copied to clipboard

RESTful ATNA: JSON example in section 3.82.4.2.2.1 "JSON encoded array of Syslog Messages"

Open unixoid opened this issue 1 year ago • 0 comments

The RESTful ATNA supplement Rev.3.4 from 04-Aug-2023 contains a syntactically incorrect JSON example in the section 3.82.4.2.2.1 "JSON encoded array of Syslog Messages". Moreover, the first audit record there contains an attribute "Structured-data" which is not defined (defined is one with an underscore instead of the hyphen). Here a corrected example:

[
  {
    "Pri": "string",
    "Version": "string",
    "Timestamp": "2015-03-17T00:05",
    "Hostname": "string",
    "App-name": "string",
    "Procid": "string",
    "Msg-id": "string",
    "Msg": "string1",
    "Structured_data": "string"
  },
  {
    "Pri": "string",
    "Version": "string",
    "Timestamp": "2015-03-17T00:05",
    "Hostname": "string",
    "App-name": "string",
    "Procid": "string",
    "Msg-id": "string",
    "Msg": "string2"
  },
  {
    "Pri": "string",
    "Version": "string",
    "Timestamp": "2015-03-17T00:05",
    "Hostname": "string",
    "App-name": "string",
    "Procid": "string",
    "Msg-id": "string",
    "Msg": "string3"
  }
]

unixoid avatar Oct 04 '23 13:10 unixoid