Navis (Kaleris) · Schema

Navis N4 Container Unit

A container or cargo unit managed within the Navis N4 Terminal Operating System

MaritimePortTerminalContainerLogistics

Properties

Name Type Description
unitNbr string ISO 6346 container number
unitId integer N4 internal unit identifier
category string Container category in terminal operations
freightKind string Full Container Load, Less Container Load, or Empty
equipmentType string Equipment type code (CTR, TRL, etc.)
equipmentLength integer Container length in feet
lineOperator string Shipping line SCAC code
currentPosition object
arrivalVesselVisit stringnull Visit ID of the vessel that delivered the container
departureVesselVisit stringnull Visit ID of the vessel that will take the container
holds array
hazardous boolean
imdgClass stringnull IMDG dangerous goods class (e.g., 3.0 for flammable liquids)
reefer boolean Whether the container requires temperature control
temperature numbernull Required setpoint temperature in Celsius for reefer units
weight numbernull Gross weight in kilograms
inGateDate stringnull Timestamp when the unit entered the terminal
outGateDate stringnull Timestamp when the unit departed the terminal
View JSON Schema on GitHub

JSON Schema

navis-unit-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/navis/refs/heads/main/json-schema/navis-unit-schema.json",
  "title": "Navis N4 Container Unit",
  "description": "A container or cargo unit managed within the Navis N4 Terminal Operating System",
  "type": "object",
  "required": ["unitNbr", "category", "freightKind"],
  "properties": {
    "unitNbr": {
      "type": "string",
      "description": "ISO 6346 container number",
      "pattern": "^[A-Z]{4}[0-9]{7}$"
    },
    "unitId": {
      "type": "integer",
      "description": "N4 internal unit identifier"
    },
    "category": {
      "type": "string",
      "enum": ["IMPORT", "EXPORT", "TRANSSHIP", "EMPTY"],
      "description": "Container category in terminal operations"
    },
    "freightKind": {
      "type": "string",
      "enum": ["FCL", "LCL", "MTY"],
      "description": "Full Container Load, Less Container Load, or Empty"
    },
    "equipmentType": {
      "type": "string",
      "description": "Equipment type code (CTR, TRL, etc.)"
    },
    "equipmentLength": {
      "type": "integer",
      "enum": [20, 40, 45, 48, 53],
      "description": "Container length in feet"
    },
    "lineOperator": {
      "type": "string",
      "description": "Shipping line SCAC code"
    },
    "currentPosition": {
      "$ref": "#/$defs/YardPosition"
    },
    "arrivalVesselVisit": {
      "type": ["string", "null"],
      "description": "Visit ID of the vessel that delivered the container"
    },
    "departureVesselVisit": {
      "type": ["string", "null"],
      "description": "Visit ID of the vessel that will take the container"
    },
    "holds": {
      "type": "array",
      "items": { "$ref": "#/$defs/Hold" }
    },
    "hazardous": {
      "type": "boolean"
    },
    "imdgClass": {
      "type": ["string", "null"],
      "description": "IMDG dangerous goods class (e.g., 3.0 for flammable liquids)"
    },
    "reefer": {
      "type": "boolean",
      "description": "Whether the container requires temperature control"
    },
    "temperature": {
      "type": ["number", "null"],
      "description": "Required setpoint temperature in Celsius for reefer units"
    },
    "weight": {
      "type": ["number", "null"],
      "minimum": 0,
      "description": "Gross weight in kilograms"
    },
    "inGateDate": {
      "type": ["string", "null"],
      "format": "date-time",
      "description": "Timestamp when the unit entered the terminal"
    },
    "outGateDate": {
      "type": ["string", "null"],
      "format": "date-time",
      "description": "Timestamp when the unit departed the terminal"
    }
  },
  "$defs": {
    "YardPosition": {
      "type": "object",
      "properties": {
        "locType": {
          "type": "string",
          "enum": ["YARD", "VESSEL", "TRUCK", "RAIL", "DOCK", "VESSEL_BUFFER"]
        },
        "blockName": { "type": "string" },
        "bayNbr": { "type": "integer" },
        "rowNbr": { "type": "integer" },
        "tierNbr": { "type": "integer" },
        "slotName": {
          "type": "string",
          "description": "Full slot identifier (block-bay-row-tier)"
        }
      }
    },
    "Hold": {
      "type": "object",
      "required": ["holdType", "holdStatus"],
      "properties": {
        "holdId": { "type": "string" },
        "holdType": {
          "type": "string",
          "description": "Hold type code (CUSTOMS, LINE, PORT, FREIGHT)"
        },
        "holdStatus": {
          "type": "string",
          "enum": ["ACTIVE", "RELEASED", "EXPIRED"]
        },
        "appliedBy": { "type": "string" },
        "appliedDate": { "type": "string", "format": "date-time" },
        "releasedDate": { "type": ["string", "null"], "format": "date-time" },
        "reason": { "type": "string" }
      }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/navis-unit"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.