Skip to content

Commit

Permalink
mapping/sustainability.yaml: Update mappings and examples
Browse files Browse the repository at this point in the history
  • Loading branch information
duncandewhurst committed Nov 15, 2023
1 parent cd43fc5 commit ea7b6c5
Show file tree
Hide file tree
Showing 2 changed files with 73 additions and 11 deletions.
39 changes: 34 additions & 5 deletions docs/cost/ids/sustainability.md
Original file line number Diff line number Diff line change
Expand Up @@ -1228,9 +1228,14 @@ Disclose dates for project preparation \[start date, end date\]
:columns: 8
OC4IDS mapping
^^^
Project level: Map to `preparationPeriod`.
```json
{
"preparationPeriod": {
"startDate": "2016-07-01T00:00:00Z",
"endDate": "2016-12-31T00:00:00Z"
}
}
```
````
Expand All @@ -1252,9 +1257,28 @@ Disclose dates for project approval \[submission date, approval date\]
:columns: 8
OC4IDS mapping
^^^
Project level:
```json
For each date:
- Add a `Milestone` to the `milestones` array and set its:
- `.id` incrementally
- `.type` to 'financing'
- `.status` to 'met'
- For the submission date, set the milestone's `.title` to "Climate finance submission" and its `.dateMet` to the date of the submission
- For the approval date, set the milestone's `.title` to "Climate finance approval" and its `.dateMet` to the date of the approval
```json
{
"milestones": [
{
"id": "1",
"title": "Climate finance submission",
"type": "financing",
"dateMet": "2023-06-01T00:00:00Z",
"status": "met"
}
]
}
```
````
Expand Down Expand Up @@ -1869,9 +1893,14 @@ Intended start and end dates of decommissioning.
:columns: 8
OC4IDS mapping
^^^
Map to `decommissioningPeriod`.
```json
{
"decommissioningPeriod": {
"startDate": "2040-07-01T00:00:00Z",
"endDate": "2041-06-30T00:00:00Z"
}
}
```
````
Expand Down
45 changes: 39 additions & 6 deletions mapping/sustainability.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -685,15 +685,42 @@
module: Climate finance
indicator: Accessibility/ efficiency
disclosure format: Disclose dates for project preparation \[start date, end date\]
mapping: ''
example: ''
mapping: 'Project level: Map to `preparationPeriod`.'
example: |-
{
"preparationPeriod": {
"startDate": "2016-07-01T00:00:00Z",
"endDate": "2016-12-31T00:00:00Z"
}
}
- id: '3.14'
title: Project approval period
module: Climate finance
indicator: Accessibility
disclosure format: Disclose dates for project approval \[submission date, approval date\]
mapping: ''
example: ''
mapping: |-
Project level:
For each date:
- Add a `Milestone` to the `milestones` array and set its:
- `.id` incrementally
- `.type` to 'financing'
- `.status` to 'met'
- For the submission date, set the milestone's `.title` to "Climate finance submission" and its `.dateMet` to the date of the submission
- For the approval date, set the milestone's `.title` to "Climate finance approval" and its `.dateMet` to the date of the approval
example: |-
{
"milestones": [
{
"id": "1",
"title": "Climate finance submission",
"type": "financing",
"dateMet": "2023-06-01T00:00:00Z",
"status": "met"
}
]
}
- id: '3.15'
title: Ratio of co-finance
module: Climate finance
Expand Down Expand Up @@ -1055,8 +1082,14 @@
module: Climate finance
indicator: Stranded assets
disclosure format: Intended start and end dates of decommissioning.
mapping: ''
example: ''
mapping: Map to `decommissioningPeriod`.
example: |-
{
"decommissioningPeriod": {
"startDate": "2040-07-01T00:00:00Z",
"endDate": "2041-06-30T00:00:00Z"
}
}
- id: '3.31'
title: Decommission plan
module: Climate finance
Expand Down

0 comments on commit ea7b6c5

Please sign in to comment.