Commit edac4e07 authored by Giacomo Bernini's avatar Giacomo Bernini
Browse files

fix headers

parent 2e1dfe76
......@@ -8,7 +8,15 @@ endpoints:
Version of the API requested to use when responding to this request.
in: header
required: false
type: string
schema:
type: string
- name: Authorization
description: >-
The authorization token for the request. Reference: IETF RFC 7235
in: header
required: false
schema:
type: string
get:
summary: Retrieve API version information
description: >
......@@ -23,30 +31,57 @@ endpoints:
API version information was read successfully.
The response body shall contain 4.4 API version
information, as defined in clause 4.4.1.13.
schema:
$ref: '../definitions/SOL009_def.yaml#/definitions/ApiVersionInformation'
content:
application/json:
schema:
$ref: '../definitions/SOL009_def.yaml#/definitions/ApiVersionInformation'
headers:
Content-Type:
description: The MIME type of the body of the response.
type: string
maximum: 1
minimum: 1
schema:
type: string
maximum: 1
minimum: 1
WWW-Authenticate:
description: >
Challenge if the corresponding HTTP request has not provided
authorization, or error details if the corresponding HTTP
request has provided an invalid authorization token.
schema:
type: string
maximum: 1
minimum: 0
Version:
description: The used API version.
type: string
maximum: 1
minimum: 1
400: { $ref: '../responses/SOL009_resp.yaml#/responses/400' }
401: { $ref: '../responses/SOL009_resp.yaml#/responses/401' }
403: { $ref: '../responses/SOL009_resp.yaml#/responses/403' }
404: { $ref: '../responses/SOL009_resp.yaml#/responses/404' }
405: { $ref: '../responses/SOL009_resp.yaml#/responses/405' }
406: { $ref: '../responses/SOL009_resp.yaml#/responses/406' }
413: { $ref: '../responses/SOL009_resp.yaml#/responses/413' }
414: { $ref: '../responses/SOL009_resp.yaml#/responses/414' }
416: { $ref: '../responses/SOL009_resp.yaml#/responses/416' }
422: { $ref: '../responses/SOL009_resp.yaml#/responses/422' }
429: { $ref: '../responses/SOL009_resp.yaml#/responses/429' }
500: { $ref: '../responses/SOL009_resp.yaml#/responses/500' }
503: { $ref: '../responses/SOL009_resp.yaml#/responses/503' }
504: { $ref: '../responses/SOL009_resp.yaml#/responses/504' }
\ No newline at end of file
schema:
type: string
maximum: 1
minimum: 1
400:
$ref: '../responses/SOL009_resp.yaml#/responses/400'
401:
$ref: '../responses/SOL009_resp.yaml#/responses/401'
403:
$ref: '../responses/SOL009_resp.yaml#/responses/403'
404:
$ref: '../responses/SOL009_resp.yaml#/responses/404'
405:
$ref: '../responses/SOL009_resp.yaml#/responses/405'
406:
$ref: '../responses/SOL009_resp.yaml#/responses/406'
413:
$ref: '../responses/SOL009_resp.yaml#/responses/413'
414:
$ref: '../responses/SOL009_resp.yaml#/responses/414'
416:
$ref: '../responses/SOL009_resp.yaml#/responses/416'
422:
$ref: '../responses/SOL009_resp.yaml#/responses/422'
429:
$ref: '../responses/SOL009_resp.yaml#/responses/429'
500:
$ref: '../responses/SOL009_resp.yaml#/responses/500'
503:
$ref: '../responses/SOL009_resp.yaml#/responses/503'
504:
$ref: '../responses/SOL009_resp.yaml#/responses/504'
\ No newline at end of file
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment