{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "data-export-run-log-item",
"type": "object",
"required": [
"data_export_run_id",
"created_at",
"level",
"content"
],
"properties": {
"data_export_run_id": {
"type": "string",
"description": "Must be a UUID. The unique identifier of the data export run."
},
"created_at": {
"type": "string",
"format": "date-time",
"description": "The time at which the data export run was created."
},
"level": {
"type": "string",
"description": "The level of the log item. One of `info`, `warn`, or `error`."
},
"content": {
"type": "string",
"description": "The log item text."
}
},
"example": {
"data_export_run_id": "34233912-c91f-4dc9-bfed-c10d16be26af",
"created_at": "2019-03-09T08:07:59.075Z",
"level": "info",
"content": "Creating policy export file"
}
}