# APIKeyData

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    APIKeyData:
      properties:
        api_key_name:
          type: string
          title: Api Key Name
        api_key_scopes:
          items:
            type: string
          type: array
          title: Api Key Scopes
        created_at:
          type: string
          format: date-time
          title: Created At
        expires_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Expires At
        api_key_status:
          type: integer
          title: Api Key Status
      type: object
      required:
        - api_key_name
        - api_key_scopes
        - created_at
        - expires_at
        - api_key_status
      title: APIKeyData
      x-apifox-orders:
        - api_key_name
        - api_key_scopes
        - created_at
        - expires_at
        - api_key_status
      x-apifox-folder: ''
  securitySchemes: {}
servers:
  - url: https://api.tikhub.io
    description: Production Environment
security: []

```
