# User

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    User:
      type: object
      properties:
        description:
          type: string
        avatar:
          type: string
        username:
          type: string
      x-apidog-orders:
        - username
        - description
        - avatar
      required:
        - username
        - description
        - avatar
      x-apidog-folder: ''
  securitySchemes: {}
servers: []
security: []

```
