IHE / IT-Infrastructure

Online repository for information assets supporting the profiles (implementation specifications) in the IHE IT Infrastructure Technical Framework.
Creative Commons Attribution 4.0 International
33 stars 13 forks source link

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

Open unixoid opened 1 year ago

unixoid commented 1 year ago

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"
  }
]