MEC029_FAI.yaml 80 KB
Newer Older
Elian Kraja's avatar
Elian Kraja committed
      content:
        application/json:
          schema:
            $ref: "#/components/schemas/ProblemDetails"
    "403":
      description: "Forbidden :  operation is not allowed given the current status of the resource."
Elian Kraja's avatar
Elian Kraja committed
      content:
        application/json:
          schema:
            $ref: "#/components/schemas/ProblemDetails"
    "404":
      description: "Not Found :  used when a client provided a URI that cannot be mapped to a valid resource URI."
Elian Kraja's avatar
Elian Kraja committed
      content:
        application/json:
          schema:
            $ref: "#/components/schemas/ProblemDetails"
    "406":
      description: "Not Acceptable : used to indicate that the server cannot provide the any of the content formats supported by the client."
Elian Kraja's avatar
Elian Kraja committed
      content:
        application/json:
          schema:
            $ref: "#/components/schemas/ProblemDetails"
    "409":
      description: "Conflict : The operation cannot be executed currently, due to a conflict with the state of the resource"
Elian Kraja's avatar
Elian Kraja committed
      content:
        application/json:
          schema:
            $ref: "#/components/schemas/ProblemDetails"
    "412":
      description: "Precondition failed :  used when a condition has failed during conditional requests, e.g. when using ETags to avoid write conflicts when using PUT"
Elian Kraja's avatar
Elian Kraja committed
      content:
        application/json:
          schema:
            $ref: "#/components/schemas/ProblemDetails"
    "415":
      description: "Unsupported Media Type :  used to indicate that the server or the client does not support the content type of the entity body."
Elian Kraja's avatar
Elian Kraja committed
      content:
        application/json:
          schema:
            $ref: "#/components/schemas/ProblemDetails"
    "422":
      description: "Unprocessable Entity : used to indicate that the server understands the content type of the request entity and that the syntax of the request entity is correct but that the server is unable to process the contained instructions. This error condition can occur if an JSON request body is syntactically correct but semantically incorrect, for example if the target area for the request is considered too large. This error condition can also occur if the capabilities required by the request are not supported."
Elian Kraja's avatar
Elian Kraja committed
      content:
        application/json:
          schema:
            $ref: "#/components/schemas/ProblemDetails"
    "429":
      description: "Too Many Requests : used when a rate limiter has triggered."
Elian Kraja's avatar
Elian Kraja committed
      content:
        application/json:
          schema:
piscione's avatar
piscione committed
            $ref: "#/components/schemas/ProblemDetails"