Kong · Schema

System Account Access Token

Schema of the system account access token.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
id string ID of the system account access token.
name string Name of the system account access token.
created_at string Timestamp of when the system account access token was created.
updated_at string Timestamp of when the system account access token was last updated.
expires_at string Timestamp of when the system account access token will expire.
last_used_at string Timestamp of when the system account access token was last used.
View JSON Schema on GitHub

JSON Schema

kong-systemaccountaccesstoken-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SystemAccountAccessToken",
  "title": "System Account Access Token",
  "x-speakeasy-entity": "SystemAccountAccessToken",
  "description": "Schema of the system account access token.",
  "type": "object",
  "properties": {
    "id": {
      "description": "ID of the system account access token.",
      "type": "string",
      "format": "uuid",
      "readOnly": true
    },
    "name": {
      "description": "Name of the system account access token.",
      "type": "string"
    },
    "created_at": {
      "description": "Timestamp of when the system account access token was created.",
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "updated_at": {
      "description": "Timestamp of when the system account access token was last updated.",
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "expires_at": {
      "description": "Timestamp of when the system account access token will expire.",
      "type": "string",
      "format": "date-time",
      "x-speakeasy-terraform-custom-type": {
        "imports": [
          "github.com/Kong/shared-speakeasy/customtypes/timetypes"
        ],
        "schemaType": "timetypes.RFC3339PreciseToSecondType{}",
        "valueType": "timetypes.RFC3339PreciseToSecond"
      }
    },
    "last_used_at": {
      "description": "Timestamp of when the system account access token was last used.",
      "type": "string",
      "format": "date-time",
      "readOnly": true
    }
  },
  "example": {
    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
    "name": "Sample Access Token",
    "created_at": "2022-08-01T14:16:09Z",
    "updated_at": "2022-08-02T08:35:49Z",
    "expires_at": "2022-12-31T12:52:23Z",
    "last_used_at": "2022-10-24T13:05:42Z"
  }
}