Properties
| Name | Type | Description |
|---|---|---|
| code | integer | Code that identifies the event that occurred. |
| locations | array | JSONPath location(s) in the schema where these events were encountered. See [https://goessner.net/articles/JsonPath/](https://goessner.net/articles/JsonPath/) for JSONPath specification. |
| message | string | Diagnostic message that describes the event. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/api-shield_schema_upload_log_event",
"title": "api-shield_schema_upload_log_event",
"properties": {
"code": {
"description": "Code that identifies the event that occurred.",
"example": 28,
"type": "integer"
},
"locations": {
"description": "JSONPath location(s) in the schema where these events were encountered. See [https://goessner.net/articles/JsonPath/](https://goessner.net/articles/JsonPath/) for JSONPath specification.",
"items": {
"description": "JSONPath location in the schema where these events were encountered. See [https://goessner.net/articles/JsonPath/](https://goessner.net/articles/JsonPath/) for JSONPath specification.",
"example": ".paths[\"/user/{username}\"].put",
"type": "string"
},
"type": "array"
},
"message": {
"description": "Diagnostic message that describes the event.",
"example": "unsupported media type: application/octet-stream",
"type": "string"
}
},
"required": [
"code"
],
"type": "object"
}