Properties
| Name | Type | Description |
|---|---|---|
| type | string | The [URI reference](https://www.rfc-editor.org/rfc/rfc3986) that identifies the type of problem. |
| title | string | A short summary of the problem. |
| status | number | The error's HTTP status code. |
| detail | string | Information about the error. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/forkCollection400ErrorBadForkRelation",
"title": "Invalid Fork Source",
"type": "object",
"properties": {
"type": {
"type": "string",
"format": "uri-reference",
"description": "The [URI reference](https://www.rfc-editor.org/rfc/rfc3986) that identifies the type of problem.",
"example": "https://api.postman.com/problems/bad-request"
},
"title": {
"type": "string",
"description": "A short summary of the problem.",
"example": "Bad Request"
},
"status": {
"type": "number",
"format": "http-status-code",
"description": "The error's HTTP status code.",
"example": 400
},
"detail": {
"type": "string",
"description": "Information about the error.",
"example": "Fork relation not found"
}
}
}