Skip to content
Snippets Groups Projects
Commit afd7ec4b authored by Andreas Huber's avatar Andreas Huber
Browse files

#45 Mime-Types

parent 29e16cf2
No related branches found
No related tags found
No related merge requests found
......@@ -70,6 +70,14 @@ Die Pfade für den aktuellen Status und die Statushistorie sind jetzt:
#### #35 Info/Test Resource hinzufügen
Es wurde in beiden APIs eine Resource `/info` hinzugefügt, die aktuell die API-Version ausgibt. Dies kann genutzt werden, um die Grundsätzliche Erreichbarkeit der API zu testen und um sicherzustellen, dass eine kompatible Version der API verwendet wird.
#### #45 Mime-Types
Die Mime-Types in Application Schema wurden gemäß RFC abgebildet werden:
- `application/json` statt `json`
- `application/xml` statt `xml`
#### #49 JSON Web Key Set durch JSON Web Key ersetzt
Die Destination enthält nun einen JWK statt einem JWK Set.
## Version 0.6
......
......@@ -5,15 +5,15 @@
"additionalProperties": false,
"x-examples": {
"example-1": {
"mimeType": "json",
"mimeType": "application/json",
"schemaSource": "none"
},
"example-2": {
"mimeType": "xml",
"mimeType": "application/xml",
"schemaSource": "none"
},
"example-3": {
"mimeType": "xml",
"mimeType": "application/xml",
"schemaSource": "fim",
"schemaId": "S99000001V1.0"
}
......@@ -34,8 +34,8 @@
"mimeType": {
"type": "string",
"enum": [
"json",
"xml"
"application/json",
"application/xml"
],
"description": "Gibt das zulässige Format (JSON oder XML) der Fachdaten an."
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment