Treblle · Schema

Endpoint

AnalyticsArtificial IntelligenceDeveloper ExperienceDocumentationGovernanceInsightsObservabilityPlatformSecurityTesting

Properties

Name Type Description
id string
path string
method string
total_calls integer
avg_response_time number
last_seen string
has_documentation boolean
View JSON Schema on GitHub

JSON Schema

treblle-endpoint-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Endpoint",
  "title": "Endpoint",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "path": {
      "type": "string"
    },
    "method": {
      "type": "string"
    },
    "total_calls": {
      "type": "integer"
    },
    "avg_response_time": {
      "type": "number"
    },
    "last_seen": {
      "type": "string",
      "format": "date-time"
    },
    "has_documentation": {
      "type": "boolean"
    }
  }
}