# DeveloperRegistration

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    DeveloperRegistration:
      type: object
      required:
        - email
        - name
        - skills
        - experience_level
        - interests
      properties:
        email:
          type: string
          format: email
        name:
          type: string
        skills:
          type: array
          items:
            type: string
          minItems: 1
        experience_level:
          type: string
          enum:
            - beginner
            - intermediate
            - advanced
            - expert
        interests:
          type: array
          items:
            type: string
          minItems: 1
        location:
          type: string
        willing_to_relocate:
          type: boolean
        looking_for:
          type: array
          items:
            type: string
      x-apidog-orders:
        - email
        - 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: []

```
