An API key used to authenticate requests to the Neon API
{ "$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" } } }