project44 · Schema

ShipmentException

LogisticsSupply Chain VisibilityTrackingFreightMulti-modal

Properties

Name Type Description
exceptionCode string
description string
severity string
timestamp string
resolvedAt string
View JSON Schema on GitHub

JSON Schema

project44-shipmentexception-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ShipmentException",
  "title": "ShipmentException",
  "type": "object",
  "properties": {
    "exceptionCode": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "severity": {
      "type": "string",
      "enum": [
        "LOW",
        "MEDIUM",
        "HIGH",
        "CRITICAL"
      ]
    },
    "timestamp": {
      "type": "string",
      "format": "date-time"
    },
    "resolvedAt": {
      "type": "string",
      "format": "date-time",
      "nullable": true
    }
  }
}