Skip to main content
Version: 2.1

OrderList

@experiemental A list of orders. Use this type for use cases that require not just a single order, but multiple.

The OrderList schema does not explicitly include identifiers in the id section, as there is not a common standard for such identifiers. Applications can, however, populate this part of the contract with custom identifiers if so desired.

Schema

https://github.com/finos/FDC3/tree/main/schemas/context/orderList.schema.json

Type

fdc3.orderList

Properties

orders

An array of order contexts that forms the list.

Type: array

Example Value:

[
{
"type": "fdc3.order",
"id": {
"myOMS": "ABC123"
}
},
{
"type": "fdc3.order",
"id": {
"myOMS": "DEF456"
}
}
]

Example

{
"type": "fdc3.orderList",
"orders": [
{
"type": "fdc3.order",
"id": {
"myOMS": "ABC123"
}
},
{
"type": "fdc3.order",
"id": {
"myOMS": "DEF456"
}
}
]
}