-
Notifications
You must be signed in to change notification settings - Fork 1
/
datapackage.json
executable file
·28 lines (28 loc) · 1 KB
/
datapackage.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
{
"name": "datapackage-indice-durabilite",
"title": "Indice de durabilité",
"description": "Data package contenant 2 schémas : televiseur et lave-linge. D'autres types d'appareils pourront être ajoutés si la législation évolue.",
"id": "datapackage-indice-durabilite",
"resources": [
{
"name": "televiseur",
"path": "televiseur/exemple-valide.csv",
"profile": "tabular-data-resource",
"format": "csv",
"mediatype": "text/csv",
"encoding": "utf-8",
"schema": "televiseur/schema.json",
"documentation": "televiseur/README.md"
},
{
"name": "lave-linge",
"path": "lave-linge/exemple-valide.csv",
"profile": "tabular-data-resource",
"format": "csv",
"mediatype": "text/csv",
"encoding": "utf-8",
"schema": "lave-linge/schema.json",
"documentation": "lave-linge/README.md"
}
]
}