Kong · Schema

ScorecardScore

The current score for the given Scorecard. A `null` value indicates the scorecard has not yet been evaluated and therefore no score has been computed.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
value string The human-readable score value coverted to the Scorecard's assigned grading system.
raw_value number The raw, numeric score calculated during evaluation of the scorecard. Rounded to 3 decimal places.
View JSON Schema on GitHub

JSON Schema

kong-scorecardscore-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScorecardScore",
  "title": "ScorecardScore",
  "description": "The current score for the given Scorecard.\nA `null` value indicates the scorecard has not yet been evaluated and therefore no score has been computed.\n",
  "type": "object",
  "properties": {
    "value": {
      "description": "The human-readable score value coverted to the Scorecard's assigned grading system.",
      "type": "string",
      "example": "88%"
    },
    "raw_value": {
      "description": "The raw, numeric score calculated during evaluation of the scorecard.\nRounded to 3 decimal places.\n",
      "type": "number",
      "example": 87.5,
      "maximum": 100,
      "minimum": 0
    }
  },
  "nullable": true,
  "required": [
    "value",
    "raw_value"
  ]
}