# tbl_projects

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    tbl_projects:
      type: object
      properties:
        id:
          type: integer
        name:
          type: string
        secretKey:
          type: string
        createdAt:
          type: integer
        updatedAt:
          type: integer
      required:
        - id
        - name
        - secretKey
        - createdAt
        - updatedAt
      x-apidog-orders:
        - id
        - name
        - secretKey
        - createdAt
        - updatedAt
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: ''
    description: Cloud Mock
security: []

```
