Warehouse Receipt
A Warehouse Receipt (WR) is a document most commonly issued by a Warehouse keeper, acknowledging the receipt of goods placed in a Warehouse. It can also be used as a tool for financing and commodity trading, and can in certain cases also be used as collateral.
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": {}
}