Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions mod-orders/examples/holdingDetailResults.sample
Original file line number Diff line number Diff line change
@@ -1,14 +1,24 @@
{
"e54b1f4d-7d05-4b1a-9368-3c36b75d8ac1": {
"poLines_detail_collection": {
"poLines_detail": [
{
"id": "8f3a7d2b-6e1c-4b9a-a2d5-f9e8c3b1a0d4"
}
],
"totalRecords": 1
},
"pieces_detail_collection": {
"pieces_detail": [
{
"id": "8d0e7e3e-8e4f-4f3c-9c9e-1a2b3c4d5e6f",
"poLineId": "8f3a7d2b-6e1c-4b9a-a2d5-f9e8c3b1a0d4",
"itemId": "7a1b2c3d-4e5f-6a7b-8c9d-0e1f2a3b4c5d",
"tenantId": "consortium"
},
{
"id": "9e1f2a3b-4c5d-6e7f-8a9b-0c1d2e3f4a5b",
"poLineId": "8f3a7d2b-6e1c-4b9a-a2d5-f9e8c3b1a0d4",
"itemId": "8b2c3d4e-5f6a-7b8c-9d0e-1f2a3b4c5d6e",
"tenantId": "consortium"
}
Expand All @@ -30,10 +40,19 @@
}
},
"f65c2g5e-8e16-5c2b-a479-4d47c86e9bd2": {
"poLines_detail_collection": {
"poLines_detail": [
{
"id": "c9b4e1f7-0d2a-45c8-9e6b-3f2a1d7c0b5e"
}
],
"totalRecords": 1
},
"pieces_detail_collection": {
"pieces_detail": [
{
"id": "a1b2c3d4-e5f6-7a8b-9c0d-1e2f3a4b5c6d",
"poLineId": "c9b4e1f7-0d2a-45c8-9e6b-3f2a1d7c0b5e",
"itemId": "b2c3d4e5-f6a7-8b9c-0d1e-2f3a4b5c6d7e",
"tenantId": "consortium"
}
Expand Down
27 changes: 27 additions & 0 deletions mod-orders/schemas/holdingDetail.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,29 @@
"type": "object",
"description": "The contents of the dynamic map holding details",
"properties": {
"poLines_detail_collection": {
"description": "Collection of poLine details for the holding",
"type": "object",
"properties": {
"poLines_detail": {
"description": "Array of poLine details",
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"description": "UUID of the poLine record",
"$ref": "../../../raml-util/schemas/uuid.schema"
}
}
}
},
"totalRecords": {
"description": "Total number of records in the array",
"type": "integer"
}
}
},
"pieces_detail_collection": {
"description": "Collection of piece details for the holding",
"type": "object",
Expand All @@ -17,6 +40,10 @@
"description": "UUID of the piece record",
"$ref": "../../../raml-util/schemas/uuid.schema"
},
"poLineId": {
"description": "UUID of the associated poLine record",
"$ref": "../../../raml-util/schemas/uuid.schema"
},
"itemId": {
"description": "UUID of the associated item record",
"$ref": "../../../raml-util/schemas/uuid.schema"
Expand Down