Skip to content

Commit

Permalink
Merge pull request #845 from Mavennet/og-advance-manifest
Browse files Browse the repository at this point in the history
Oil and Gas Advance Manifest
  • Loading branch information
mkhraisha authored Aug 1, 2023
2 parents 1cebaa8 + a9ac555 commit 82ae0b1
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 4 deletions.
22 changes: 19 additions & 3 deletions docs/openapi/components/schemas/common/MonthlyAdvanceManifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,14 @@ properties:
title: deliveryLocation
description: name of the delivery location
sumOfScheduledDeliveries:
type: string
type: array
title: Sum of Scheduled Deliveries
description: sum of volumes delivered to the delivery location in one month
description: sum of volumes delivered to the delivery location in one month
items:
$ref: ./QuantitativeValue.yml
$linkedData:
term: sumOfScheduledDeliveries
'@id': https://schema.org/QuantitativeValue
numberOfBatches:
type: string
title: Number of Batches
Expand All @@ -74,7 +79,18 @@ example: |-
{
"portCode": "3901",
"deliveryLocation": "Chicago",
"sumOfScheduledDelivires": "2000",
"sumOfScheduledDeliveries": [
{
"type": ["QuantitativeValue"],
"unitCode": "m3",
"value": "18170.90"
},
{
"type": ["QuantitativeValue"],
"unitCode": "bbl",
"value": "114294.96"
}
],
"numberOfBatches": "1"
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,22 @@ example: |-
{
"portCode": "3901",
"deliveryLocation": "Chicago",
"sumOfScheduledDelivires": "2000",
"sumOfScheduledDeliveries": [
{
"type": [
"QuantitativeValue"
],
"unitCode": "m3",
"value": "18170.90"
},
{
"type": [
"QuantitativeValue"
],
"unitCode": "bbl",
"value": "114294.96"
}
],
"numberOfBatches": "1"
}
]
Expand Down

0 comments on commit 82ae0b1

Please sign in to comment.