Properties
| Name | Type | Description |
|---|---|---|
| message | string | |
| documentation_url | string | |
| detail | string | |
| status | integer | |
| scimType | string | |
| schemas | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/github/refs/heads/main/json-schema/github-repo-hooks-api-scim-error-schema.json",
"title": "scim-error",
"description": "Scim Error",
"type": "object",
"properties": {
"message": {
"type": "string",
"example": "Example body text"
},
"documentation_url": {
"type": "string",
"example": "https://api.github.com/repos/octocat/Hello-World"
},
"detail": {
"type": "string",
"example": "example_value"
},
"status": {
"type": "integer",
"example": 42
},
"scimType": {
"type": "string",
"example": "User"
},
"schemas": {
"type": "array",
"items": {
"type": "string"
}
}
}
}