Root Insurance · Schema

data-export-run-log-item

InsuranceAuto InsuranceTelematicsEmbedded InsurancePolicy AdministrationClaimsUsage-Based InsuranceInsurTech

Properties

Name Type Description
data_export_run_id string Must be a UUID. The unique identifier of the data export run.
created_at string The time at which the data export run was created.
level string The level of the log item. One of `info`, `warn`, or `error`.
content string The log item text.
View JSON Schema on GitHub

JSON Schema

data-export-run-log-item.json Raw ↑
{
  "$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"
  }
}