Skip to content

Packing List

A document which covers the physical delivery of goods from one physical site to another in line with a transport contract obligation.

Example

{
    "identifier": "The quick brown fox jumps over the lazy dog.",
    "issueDate": "1970-01-01T00:00:00Z"
  }

Schema

{
    "type": "object",
    "additionalProperties": false,
    "properties": {
      "type": {
        "type": "string",
        "default": "Document",
        "enum": [
          "Document"
        ]
      },
      "identifier": {
        "type": "string",
        "description": "Reference number identifying a specific document, as issued by the document issuer."
      },
      "issueDate": {
        "type": "string",
        "format": "date-time",
        "description": "Date that a document was issued and when appropriate, signed or otherwise authenticated."
      }
    },
    "description": "Written, printed or electronic matter that is referenced.",
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "$defs": {}
  }