Skip to content

Latest commit

 

History

History
44 lines (36 loc) · 895 Bytes

resourceNotFound.md

File metadata and controls

44 lines (36 loc) · 895 Bytes

Resource Not Found

Requested resource not found.

Problem Type

type = https://problem.api.bunnings.com.au?type=resourceNotFound

Specification

The resource not found problem includes no additional properties on the base RFC 7807 problem. so uses the base specification

problem:
    type: object
    description: RFC 7807 compliant problem.
    required:
    - type
    properties:
        type:
            type: string
            format: uri
        title:
            type: string
        status:
            type: integer
        detail:
            type: string
        instance:
            type: string
            format: uri

Specification

Example

{
    "type": "https://problem.api.bunnings.com.au?type=resourceNotFound",
    "title": "Requested resource not found.",
    "status": 404
}