Customs Declaration
A document to enable a declarant to indicate the customs procedure to be applied to the goods.
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": {}
}