# Opportunity

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    Opportunity:
      type: object
      properties:
        id:
          type: string
          format: uuid
        title:
          type: string
        type:
          type: string
          enum:
            - hackathon
            - job
            - grant
            - scholarship
            - learning_resource
            - competition
        description:
          type: string
        required_skills:
          type: array
          items:
            type: string
        experience_level_required:
          type: string
        category:
          type: array
          items:
            type: string
        location:
          type: string
        remote_eligible:
          type: boolean
        deadline:
          type: integer
        prize_pool:
          type: number
        application_url:
          type: string
        source:
          type: string
        view_count:
          type: integer
        created_at:
          type: integer
      x-apidog-orders:
        - id
        - title
        - type
        - description
        - required_skills
        - experience_level_required
        - category
        - location
        - remote_eligible
        - deadline
        - prize_pool
        - application_url
        - source
        - view_count
        - created_at
      x-apidog-folder: ''
  securitySchemes: {}
servers:
  - url: https://xmsx-hkkx-nz6p.n7e.xano.io/api:v1
    description: Production server
security: []

```
