Kong · Schema

ScorecardServiceFilterParameters

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
id object
name object
display_name object
custom_fields object Filter by custom fields using dot-notation to specify the custom field. Filter operators are dictated by the custom field type. For example: - `filter[custom_fields.owner]` - `filter[custom_fields.own
labels object
created_at object
updated_at object
score.value object
score.raw_value object
View JSON Schema on GitHub

JSON Schema

kong-scorecardservicefilterparameters-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScorecardServiceFilterParameters",
  "title": "ScorecardServiceFilterParameters",
  "type": "object",
  "properties": {
    "id": {
      "$ref": "#/components/schemas/UuidFieldFilter"
    },
    "name": {
      "$ref": "#/components/schemas/StringFieldFilter"
    },
    "display_name": {
      "$ref": "#/components/schemas/StringFieldFilter"
    },
    "custom_fields": {
      "description": "Filter by custom fields using dot-notation to specify the custom field.\nFilter operators are dictated by the custom field type. For example:\n\n\n  - `filter[custom_fields.owner]`\n  - `filter[custom_fields.owner][neq]=kong`\n  - `filter[custom_fields.dashboard.link][contains]=https`\n",
      "oneOf": [
        {
          "$ref": "#/components/schemas/StringFieldFilter"
        },
        {
          "$ref": "#/components/schemas/BooleanFieldFilter"
        },
        {
          "$ref": "#/components/schemas/NumericFieldFilter"
        }
      ]
    },
    "labels": {
      "$ref": "#/components/schemas/LabelsFieldFilter"
    },
    "created_at": {
      "$ref": "#/components/schemas/DateTimeFieldFilter"
    },
    "updated_at": {
      "$ref": "#/components/schemas/DateTimeFieldFilter"
    },
    "score.value": {
      "oneOf": [
        {
          "$ref": "#/components/schemas/StringFieldFilter"
        }
      ]
    },
    "score.raw_value": {
      "oneOf": [
        {
          "$ref": "#/components/schemas/NumericFieldFilter"
        }
      ]
    }
  }
}