-
Notifications
You must be signed in to change notification settings - Fork 0
/
energy-data-mandate.json
31 lines (31 loc) · 1010 Bytes
/
energy-data-mandate.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"$schema": "http://json-schema.org/draft-04/schema#",
"$id": "groendus:energy-data-mandate",
"title": "Energy data mandate",
"description": "Data contract giving one legal entity a mandate to retrieve energy data on behalf of another legal entity.",
"properties": {
"issuedBy":{
"$ref": "legalentity.json",
"description": "The legal entity issuing the mandate."
},
"issuedTo": {
"$ref": "legalentity.json",
"description": "The legal entity receiving the mandate."
},
"issuedOn":{
"type": "string",
"format": "date",
"description": "The date the mandate was issued on. It will be valid from this date onwards."
},
"expiresOn": {
"type": "string",
"format": "date",
"description": "The date the mandate expires."
}
},
"required": [
"issuedBy",
"issuedTo",
"issuedOn"
]
}