A multi-party trade chain.
Record Key
tid
Timestamp-based ID
Properties
chainOrder
string
Required
No description available.
Known values:
clockwise, anticlockwisecompletedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
organiserDid
string
did
Optional
A decentralized identifier (DID).
organiserName
string
Optional
No description available.
participantDids
array
of
string
did
Required
No description available.
participantNames
array
of
string
Optional
No description available.
receiptConfirmed
array
of
boolean
Optional
No description available.
shippingConfirmed
array
of
boolean
Optional
No description available.
shipstoDids
array
of
string
did
Optional
No description available.
status
string
Required
No description available.
Known values:
proposed, accepted, in_transit, completed, cancelledtotalValue
number
Required
No description available.
tradeListingUris
array
of
string
at-uri
Optional
No description available.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"participantDids",
"chainOrder",
"status",
"totalValue",
"createdAt"
],
"properties": {
"status": {
"type": "string",
"knownValues": [
"proposed",
"accepted",
"in_transit",
"completed",
"cancelled"
]
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"chainOrder": {
"type": "string",
"knownValues": [
"clockwise",
"anticlockwise"
]
},
"totalValue": {
"type": "number"
},
"completedAt": {
"type": "string",
"format": "datetime"
},
"shipstoDids": {
"type": "array",
"items": {
"type": "string",
"format": "did"
}
},
"organiserDid": {
"type": "string",
"format": "did"
},
"organiserName": {
"type": "string"
},
"participantDids": {
"type": "array",
"items": {
"type": "string",
"format": "did"
}
},
"participantNames": {
"type": "array",
"items": {
"type": "string"
}
},
"receiptConfirmed": {
"type": "array",
"items": {
"type": "boolean"
}
},
"tradeListingUris": {
"type": "array",
"items": {
"type": "string",
"format": "at-uri"
}
},
"shippingConfirmed": {
"type": "array",
"items": {
"type": "boolean"
}
}
}
},
"description": "A multi-party trade chain."
}