Skip to content

Commit

Permalink
Merge pull request #15 from digin-energi/v1_0_1_bugfix_product
Browse files Browse the repository at this point in the history
Bugfix_v1_0_1_product
  • Loading branch information
areroshaa authored Dec 22, 2021
2 parents 6dbfcea + 4f98d6b commit f037d08
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
15 changes: 12 additions & 3 deletions DiginGridTariffAPI.v1_0.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "Digin Grid Tariff API",
"description": "Provides grid tariffs. For external and internal use. https://github.com/digin-energi/API-nettleie-for-styring",
"version": "1.0",
"version": "1.0.1",
"contact": {
"name": "Digin Grid Tariff API",
"url": "https://github.com/digin-energi/API-nettleie-for-styring"
Expand Down Expand Up @@ -127,9 +127,18 @@
"parameters": [
{
"name": "TariffKey",
"description": "TariffKey dictates which tariff will be queried",
"description": "TariffKey dictates which tariff will be queried. Exclusive OR with Product.",
"in": "query",
"schema": {
"maxLength": 100,
"minLength": 0,
"type": "string"
}
},
{
"name": "Product",
"description": "Internal product code or name to be used internally at the grid company. Exclusive OR with TariffKey.",
"in": "query",
"required": true,
"schema": {
"maxLength": 100,
"minLength": 0,
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -281,3 +281,7 @@ Input with range parameter: https://github.com/digin-energi/API-nettleie-for-sty
<br/>
Input with startTime and endTime parameters: https://github.com/digin-energi/API-nettleie-for-styring/blob/main/doc/DiginGridTariffAPI.v1_0_meteringpointsgridtariffs_json_input_example_startTime_endTime.json
<br/>

## 11. Endringslogg:
22.12.2021 Versjon 1.0.1: DiginGridTariffAPI.v1_0: Lagt til input parameter Product(for internt bruk for nettselskap) som er Exclusive OR med TariffKey. TariffKey ikke lenger definert required.
<br/>

0 comments on commit f037d08

Please sign in to comment.