PAR 1.2.0
2023-06-08
- API definition now written in OpenAPI 3.1 not Swagger 2.x. [#58] [#61]
Simple version change and updating ofexample
toexamples
in the API definition. - NotImplemented response. [#59]
This was achieved by adding a standard response component to the API definition, so:
components:
responses:
NotImplemented:
description: The method called is currently not implemented by this server.
content: {}
Unauthorized:
description: If no Authorization header has been supplied
content: {}
Forbidden:
description: If the supplied Authorization header does not reference a user
with write access to this registry.
content: {}
- Format signature encoding support. [#62]
Added an enumerated encoding property to the format signature entity:
"encoding": {
"default": "PRONOM",
"enum": [
"PRONOM",
"ASCII",
"HEX",
"REGEX_PERL"
],
"type": "string"