Neon · Schema

ApiKey

An API key used to authenticate requests to the Neon API

DatabasesServerlessPostgresInfrastructureAuthenticationEdge

Properties

Name Type Description
id integer The API key ID
name string The API key name
created_at string API key creation timestamp
last_used_at string Timestamp of last use
last_used_from_addr string IP address from which the key was last used
View JSON Schema on GitHub

JSON Schema

neon-apikey-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ApiKey",
  "title": "ApiKey",
  "type": "object",
  "description": "An API key used to authenticate requests to the Neon API",
  "properties": {
    "id": {
      "type": "integer",
      "format": "int64",
      "description": "The API key ID"
    },
    "name": {
      "type": "string",
      "description": "The API key name"
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "API key creation timestamp"
    },
    "last_used_at": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp of last use"
    },
    "last_used_from_addr": {
      "type": "string",
      "description": "IP address from which the key was last used"
    }
  }
}