# DeveloperUpdate

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    DeveloperUpdate:
      type: object
      required:
        - developer_id
      properties:
        developer_id:
          type: string
          format: uuid
        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
      x-apidog-orders:
        - developer_id
        - name
        - skills
        - experience_level
        - interests
        - location
        - willing_to_relocate
        - looking_for
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://xmsx-hkkx-nz6p.n7e.xano.io/api:v1
    description: Production server
security: []

```
