Treblle · Schema
ApiRequestDetail
AnalyticsArtificial IntelligenceDeveloper ExperienceDocumentationGovernanceInsightsObservabilityPlatformSecurityTesting
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| method | string | |
| url | string | |
| status_code | integer | |
| response_time | number | |
| ip_address | string | |
| request_headers | object | |
| request_body | object | |
| response_headers | object | |
| response_body | object | |
| errors | array | |
| created_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ApiRequestDetail",
"title": "ApiRequestDetail",
"type": "object",
"properties": {
"id": {
"type": "string"
},
"method": {
"type": "string"
},
"url": {
"type": "string"
},
"status_code": {
"type": "integer"
},
"response_time": {
"type": "number"
},
"ip_address": {
"type": "string"
},
"request_headers": {
"type": "object"
},
"request_body": {
"type": "object"
},
"response_headers": {
"type": "object"
},
"response_body": {
"type": "object"
},
"errors": {
"type": "array",
"items": {
"type": "object",
"properties": {
"message": {
"type": "string"
},
"type": {
"type": "string"
},
"source": {
"type": "string"
}
}
}
},
"created_at": {
"type": "string",
"format": "date-time"
}
}
}