# Developer

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    Developer:
      type: object
      properties:
        id:
          type: string
          format: uuid
        email:
          type: string
        name:
          type: string
        skills:
          type: array
          items:
            type: string
        experience_level:
          type: string
        interests:
          type: array
          items:
            type: string
        location:
          type: string
        willing_to_relocate:
          type: boolean
        looking_for:
          type: array
          items:
            type: string
        created_at:
          type: integer
        updated_at:
          type: integer
      x-apidog-orders:
        - id
        - email
        - name
        - skills
        - experience_level
        - interests
        - location
        - willing_to_relocate
        - looking_for
        - created_at
        - updated_at
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://xmsx-hkkx-nz6p.n7e.xano.io/api:v1
    description: Production server
security: []

```
