-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdataset-schema.ts
More file actions
90 lines (90 loc) · 2.21 KB
/
dataset-schema.ts
File metadata and controls
90 lines (90 loc) · 2.21 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
export default [
{
key: 'nom_fournisseur',
type: 'string',
title: 'Nom du fournisseur'
},
{
key: 'nom_offre',
type: 'string',
'x-refersTo': 'http://www.w3.org/2000/01/rdf-schema#label',
title: 'Nom de l\'offre'
},
{
key: 'url_offre',
type: 'string',
'x-refersTo': 'https://schema.org/WebPage',
title: 'URL de l\'offre'
},
{
key: 'niveau_labelisation',
type: 'string',
title: 'Niveau de labellisation'
},
{
key: 'statut_offre',
type: 'string',
title: 'Statut de l\'offre'
},
{
key: 'Recours_ARENH_fournisseur',
type: 'boolean',
title: 'Recours ARENH par le fournisseur'
},
{
key: 'clients_offre_labelisee',
type: 'number',
title: 'Part clients offre labellisée',
description: 'Part des clients du fournisseur ayant souscrit à une offre labellisée'
},
{
key: 'part_sans_soutien_public_offre',
type: 'number',
title: 'Part production sans soutien public',
description: 'Part de l\'électricité provenant d\'installations construites récemment sans soutien public'
},
{
key: 'part_gouvernance_partagee_offre',
type: 'number',
title: 'Part production gouvernance partagée',
description: 'Part de l\'électricité provenant d\'installations sous gouvernance partagée'
},
{
key: 'couverture_demi_horaire_offre',
type: 'number',
title: 'Taux moyen de couverture demi-horaire'
},
{
key: 'part_suivi_consommation_offre',
type: 'number',
title: 'Part client suivi consommation activé',
description: 'Part des clients de l\'offre ayant activé le suivi de consommation'
},
{
key: 'region',
type: 'string',
title: 'Région'
},
{
key: 'technologie',
type: 'string',
title: 'Technologie'
},
{
key: 'part_offre',
type: 'number',
title: 'Part offre'
},
{
key: 'part_sans_soutien_public',
type: 'number',
title: 'Part sans soutien public',
description: 'MWh - Installation construite récemment sans soutien public'
},
{
key: 'part_gouvernance_partagee',
type: 'number',
title: 'Part gouvernance partagée',
description: 'MWh - Installations sous gouvernance partagée'
}
] as const