-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f72cf53
commit 453268d
Showing
9 changed files
with
1,704 additions
and
3 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
{ | ||
"$defs": { | ||
"AbgabeArt": { | ||
"description": "Art der Konzessionsabgabe", | ||
"enum": [ | ||
"KAS", | ||
"SA", | ||
"SAS", | ||
"TA", | ||
"TAS", | ||
"TK", | ||
"TKS", | ||
"TS", | ||
"TSS" | ||
], | ||
"title": "AbgabeArt", | ||
"type": "string" | ||
} | ||
}, | ||
"additionalProperties": true, | ||
"description": "Diese Komponente wird zur Übertagung der Details zu einer Konzessionsabgabe verwendet.\n\n.. raw:: html\n\n <object data=\"../_static/images/bo4e/com/Konzessionsabgabe.svg\" type=\"image/svg+xml\"></object>\n\n.. HINT::\n `Konzessionsabgabe JSON Schema <https://json-schema.app/view/%23?url=https://raw.githubusercontent.com/Hochfrequenz/BO4E-python/main/json_schemas/com/Konzessionsabgabe.json>`_", | ||
"properties": { | ||
"_id": { | ||
"anyOf": [ | ||
{ | ||
"type": "string" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
], | ||
"default": null, | ||
"title": " Id" | ||
}, | ||
"kategorie": { | ||
"anyOf": [ | ||
{ | ||
"type": "string" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
], | ||
"default": null, | ||
"title": "Kategorie" | ||
}, | ||
"kosten": { | ||
"anyOf": [ | ||
{ | ||
"type": "number" | ||
}, | ||
{ | ||
"type": "string" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
], | ||
"default": null, | ||
"title": "Kosten" | ||
}, | ||
"satz": { | ||
"anyOf": [ | ||
{ | ||
"$ref": "#/$defs/AbgabeArt" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
], | ||
"default": null | ||
} | ||
}, | ||
"title": "Konzessionsabgabe", | ||
"type": "object" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
{ | ||
"$defs": { | ||
"Marktrolle": { | ||
"description": "Diese Rollen kann ein Marktteilnehmer einnehmen.", | ||
"enum": [ | ||
"NB", | ||
"LF", | ||
"MSB", | ||
"DL", | ||
"BKV", | ||
"BKO", | ||
"UENB", | ||
"KUNDE_SELBST_NN", | ||
"MGV", | ||
"EIV", | ||
"RB", | ||
"KUNDE", | ||
"INTERESSENT", | ||
"BTR" | ||
], | ||
"title": "Marktrolle", | ||
"type": "string" | ||
}, | ||
"Verwendungszweck": { | ||
"description": "Verwendungungszweck der Werte Marktlokation", | ||
"enum": [ | ||
"NETZNUTZUNGSABRECHNUNG", | ||
"BILANZKREISABRECHNUNG", | ||
"MEHRMINDERMENGENABRECHNUNG", | ||
"ENDKUNDENABRECHNUNG", | ||
"UEBERMITTLUNG_AN_DAS_HKNR", | ||
"ERMITTLUNG_AUSGEGLICHENHEIT_BILANZKREIS" | ||
], | ||
"title": "Verwendungszweck", | ||
"type": "string" | ||
} | ||
}, | ||
"additionalProperties": true, | ||
"description": "Verwendungungszweck der Werte Marktlokation\n\n.. raw:: html\n\n <object data=\"../_static/images/bo4e/com/Verwendungszweck.svg\" type=\"image/svg+xml\"></object>\n\n.. HINT::\n `Verwendungszweck JSON Schema <https://json-schema.app/view/%23?url=https://raw.githubusercontent.com/Hochfrequenz/BO4E-python/main/json_schemas/com/Verwendungszweck.json>`_", | ||
"properties": { | ||
"_id": { | ||
"anyOf": [ | ||
{ | ||
"type": "string" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
], | ||
"default": null, | ||
"title": " Id" | ||
}, | ||
"marktrolle": { | ||
"anyOf": [ | ||
{ | ||
"$ref": "#/$defs/Marktrolle" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
], | ||
"default": null | ||
}, | ||
"zwecke": { | ||
"anyOf": [ | ||
{ | ||
"items": { | ||
"$ref": "#/$defs/Verwendungszweck" | ||
}, | ||
"type": "array" | ||
}, | ||
{ | ||
"type": "null" | ||
} | ||
], | ||
"default": null, | ||
"title": "Zwecke" | ||
} | ||
}, | ||
"title": "Verwendungszweck", | ||
"type": "object" | ||
} |
Oops, something went wrong.