NoBueno jobs API

The jobs API from NoBueno — 18 operation(s) for jobs.

Operations 23

GET /jobs #
POST /jobs #
DELETE /jobs/candidate-matches/{match_id} #
GET /jobs/counts #
GET /jobs/disciplines #
POST /jobs/disciplines #
PATCH /jobs/disciplines/{id}/notify #
GET /jobs/last_job_details #
GET /jobs/list #
GET /jobs/matches #
GET /jobs/matches-results #
GET /jobs/{id} #
PUT /jobs/{id} #
PATCH /jobs/{id} #
DELETE /jobs/{id} #
GET /jobs/{id}/candidate-matches #
GET /jobs/{id}/candidates #
PATCH /jobs/{id}/candidates/{candidate_id}/change_status #
GET /jobs/{id}/matches-results #
GET /jobs/{id}/matches/salary #
PATCH /jobs/{id}/notify #
GET /jobs/{id}/salary #
POST /jobs/{id}/share #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/nobueno-jobs-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

nobueno-jobs-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Jungle admin Jobs API
  description: Here magic happens
  termsOfService: https://www.google.com/policies/terms/
  contact:
    email: mindru.ion97@gmail.com
  license:
    name: BSD License
  version: v1
servers:
- url: https://api.nobueno.com/api
security:
- Bearer: []
- Device-type: []
- REFETCH_SCHEMA_WITH_AUTH: []
- x-app-id: []
- x-scheme: []
tags:
- name: jobs
paths:
  /jobs:
    parameters: []
    get:
      operationId: jobs_list
      description: ''
      parameters:
      - name: search
        in: query
        description: A search term.
        required: false
        schema:
          type: string
      - name: page
        in: query
        description: A page number within the paginated result set.
        required: false
        schema:
          type: integer
      - name: perPage
        in: query
        description: Number of results to return per page.
        required: false
        schema:
          type: integer
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                required:
                - count
                - results
                type: object
                properties:
                  count:
                    type: integer
                  next:
                    type:
                    - string
                    - 'null'
                    format: uri
                  previous:
                    type:
                    - string
                    - 'null'
                    format: uri
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/ReturnJob'
      tags:
      - jobs
    post:
      operationId: jobs_create
      description: ''
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReturnJob'
      tags:
      - jobs
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Job'
        required: true
  /jobs/candidate-matches/{match_id}:
    parameters:
    - name: match_id
      in: path
      required: true
      schema:
        type: string
    delete:
      operationId: jobs_delete_candidate_match
      description: ''
      responses:
        '204':
          description: ''
      tags:
      - jobs
  /jobs/counts:
    parameters: []
    get:
      operationId: jobs_counts
      description: ''
      parameters:
      - name: search
        in: query
        description: A search term.
        required: false
        schema:
          type: string
      - name: page
        in: query
        description: A page number within the paginated result set.
        required: false
        schema:
          type: integer
      - name: perPage
        in: query
        description: Number of results to return per page.
        required: false
        schema:
          type: integer
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                required:
                - count
                - results
                type: object
                properties:
                  count:
                    type: integer
                  next:
                    type:
                    - string
                    - 'null'
                    format: uri
                  previous:
                    type:
                    - string
                    - 'null'
                    format: uri
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/ReturnCountJob'
      tags:
      - jobs
  /jobs/disciplines:
    parameters: []
    get:
      operationId: jobs_disciplines_read
      description: ''
      parameters:
      - name: search
        in: query
        description: A search term.
        required: false
        schema:
          type: string
      - name: page
        in: query
        description: A page number within the paginated result set.
        required: false
        schema:
          type: integer
      - name: perPage
        in: query
        description: Number of results to return per page.
        required: false
        schema:
          type: integer
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                required:
                - count
                - results
                type: object
                properties:
                  count:
                    type: integer
                  next:
                    type:
                    - string
                    - 'null'
                    format: uri
                  previous:
                    type:
                    - string
                    - 'null'
                    format: uri
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/ReturnDiscipline'
      tags:
      - jobs
    post:
      operationId: jobs_disciplines_create
      description: ''
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReturnDiscipline'
      tags:
      - jobs
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Discipline'
        required: true
  /jobs/disciplines/{id}/notify:
    parameters:
    - name: id
      in: path
      description: A unique integer value identifying this job.
      required: true
      schema:
        type: integer
    patch:
      operationId: jobs_disciplines_discipline_notify
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReturnJob'
      tags:
      - jobs
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Job'
        required: true
  /jobs/last_job_details:
    parameters: []
    get:
      operationId: jobs_last_job_details
      description: ''
      parameters:
      - name: search
        in: query
        description: A search term.
        required: false
        schema:
          type: string
      - name: page
        in: query
        description: A page number within the paginated result set.
        required: false
        schema:
          type: integer
      - name: perPage
        in: query
        description: Number of results to return per page.
        required: false
        schema:
          type: integer
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                required:
                - count
                - results
                type: object
                properties:
                  count:
                    type: integer
                  next:
                    type:
                    - string
                    - 'null'
                    format: uri
                  previous:
                    type:
                    - string
                    - 'null'
                    format: uri
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/ReturnValuePersonality'
      tags:
      - jobs
  /jobs/list:
    parameters: []
    get:
      operationId: jobs_job_list
      description: ''
      parameters:
      - name: search
        in: query
        description: A search term.
        required: false
        schema:
          type: string
      - name: page
        in: query
        description: A page number within the paginated result set.
        required: false
        schema:
          type: integer
      - name: perPage
        in: query
        description: Number of results to return per page.
        required: false
        schema:
          type: integer
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                required:
                - count
                - results
                type: object
                properties:
                  count:
                    type: integer
                  next:
                    type:
                    - string
                    - 'null'
                    format: uri
                  previous:
                    type:
                    - string
                    - 'null'
                    format: uri
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/ReturnJobList'
      tags:
      - jobs
  /jobs/matches:
    parameters: []
    get:
      operationId: jobs_matches
      description: ''
      parameters:
      - name: search
        in: query
        description: A search term.
        required: false
        schema:
          type: string
      - name: page
        in: query
        description: A page number within the paginated result set.
        required: false
        schema:
          type: integer
      - name: perPage
        in: query
        description: Number of results to return per page.
        required: false
        schema:
          type: integer
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                required:
                - count
                - results
                type: object
                properties:
                  count:
                    type: integer
                  next:
                    type:
                    - string
                    - 'null'
                    format: uri
                  previous:
                    type:
                    - string
                    - 'null'
                    format: uri
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/ReturnJob'
      tags:
      - jobs
  /jobs/matches-results:
    parameters: []
    get:
      operationId: jobs_retrieve_matches_results
      description: ''
      parameters:
      - name: search
        in: query
        description: A search term.
        required: false
        schema:
          type: string
      - name: page
        in: query
        description: A page number within the paginated result set.
        required: false
        schema:
          type: integer
      - name: perPage
        in: query
        description: Number of results to return per page.
        required: false
        schema:
          type: integer
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                required:
                - count
                - results
                type: object
                properties:
                  count:
                    type: integer
                  next:
                    type:
                    - string
                    - 'null'
                    format: uri
                  previous:
                    type:
                    - string
                    - 'null'
                    format: uri
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/CandidatesForJob'
      tags:
      - jobs
  /jobs/{id}:
    parameters:
    - name: id
      in: path
      description: A unique integer value identifying this job.
      required: true
      schema:
        type: integer
    get:
      operationId: jobs_read
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReturnJobRetrieve'
      tags:
      - jobs
    put:
      operationId: jobs_update
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReturnJob'
      tags:
      - jobs
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Job'
        required: true
    patch:
      operationId: jobs_partial_update
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReturnJob'
      tags:
      - jobs
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Job'
        required: true
    delete:
      operationId: jobs_delete
      description: ''
      responses:
        '204':
          description: ''
      tags:
      - jobs
  /jobs/{id}/candidate-matches:
    parameters:
    - name: id
      in: path
      description: A unique integer value identifying this job.
      required: true
      schema:
        type: integer
    get:
      operationId: jobs_candidate_matches
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CandidatesForJob'
      tags:
      - jobs
  /jobs/{id}/candidates:
    parameters:
    - name: id
      in: path
      description: A unique integer value identifying this job.
      required: true
      schema:
        type: integer
    get:
      operationId: jobs_candidates
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CandidatesForJob'
      tags:
      - jobs
  /jobs/{id}/candidates/{candidate_id}/change_status:
    parameters:
    - name: candidate_id
      in: path
      required: true
      schema:
        type: string
    - name: id
      in: path
      description: A unique integer value identifying this job.
      required: true
      schema:
        type: integer
    patch:
      operationId: jobs_candidates_change_status_candidates
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuccessResponse'
      tags:
      - jobs
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/JobCandidateMatch'
        required: true
  /jobs/{id}/matches-results:
    parameters:
    - name: id
      in: path
      description: A unique integer value identifying this job.
      required: true
      schema:
        type: integer
    get:
      operationId: jobs_matches_results
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CandidatesForJob'
      tags:
      - jobs
  /jobs/{id}/matches/salary:
    parameters:
    - name: id
      in: path
      description: A unique integer value identifying this job.
      required: true
      schema:
        type: integer
    get:
      operationId: jobs_matches_salary_match
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReturnJob'
      tags:
      - jobs
  /jobs/{id}/notify:
    parameters:
    - name: id
      in: path
      description: A unique integer value identifying this job.
      required: true
      schema:
        type: integer
    patch:
      operationId: jobs_notify
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReturnJob'
      tags:
      - jobs
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Job'
        required: true
  /jobs/{id}/salary:
    parameters:
    - name: id
      in: path
      description: A unique integer value identifying this job.
      required: true
      schema:
        type: integer
    get:
      operationId: jobs_salary
      description: ''
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReturnJob'
      tags:
      - jobs
  /jobs/{id}/share:
    parameters:
    - name: id
      in: path
      description: A unique integer value identifying this job.
      required: true
      schema:
        type: integer
    post:
      operationId: jobs_share_job
      description: ''
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ShareJob'
      tags:
      - jobs
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Job'
        required: true
components:
  schemas:
    Job:
      required:
      - technical_skills
      - working_years
      - soft_skills
      - languages
      - opportunity_type
      - company
      - personalities
      - location_type
      - values
      - compensation
      type: object
      properties:
        id:
          title: ID
          type: integer
          readOnly: true
        title:
          title: Title
          type:
          - integer
          - 'null'
        technical_skills:
          type: array
          items:
            type: integer
          uniqueItems: true
        working_years:
          title: Working years
          type: integer
          maximum: 2147483647
          minimum: -2147483648
        soft_skills:
          type: array
          items:
            type: integer
          uniqueItems: true
        languages:
          type: array
          items:
            type: integer
          uniqueItems: true
        city:
          title: City
          type:
          - integer
          - 'null'
        opportunity_type:
          title: Opportunity type
          type: string
          enum:
          - full_time
          - part_time
          - freelance
          - internship
        company:
          title: Company
          type: integer
        personalities:
          title: Personalities
          type: object
          additionalProperties:
            type: string
        matches:
          $ref: '#/components/schemas/StepMatchRate'
        is_active:
          title: Is active
          type: boolean
        is_public:
          title: Is public
          type: boolean
        updated_at:
          title: Updated at
          type: string
          format: date-time
          readOnly: true
        location_type:
          title: Location type
          type: string
          enum:
          - remote_only
          - remote_and_location
          - location_only
        values:
          title: Values
          type: object
          additionalProperties:
            type: string
        compensation:
          $ref: '#/components/schemas/StepCompensation'
    ShareJob:
      required:
      - emails
      type: object
      properties:
        emails:
          type: array
          items:
            type: string
            minLength: 1
    Skill:
      required:
      - title
      type: object
      properties:
        id:
          title: ID
          type: integer
          readOnly: true
        title:
          title: Title
          type: string
          maxLength: 300
          minLength: 1
        status:
          title: Status
          type: string
          enum:
          - accepted
          - declined
          - pending
        type:
          title: Type
          type: string
          enum:
          - technical
          - soft
          default: technical
        created_at:
          title: Created at
          type: string
          format: date-time
          readOnly: true
        reason:
          title: Reason
          type: string
          minLength: 1
        category_id:
          title: Category id
          type: string
          readOnly: true
    SuccessResponse:
      required:
      - message
      type: object
      properties:
        success:
          title: Success
          type: boolean
          default: true
        message:
          title: success message
          type: string
          minLength: 1
    ReturnDiscipline:
      required:
      - title
      type: object
      properties:
        id:
          title: ID
          type: integer
          readOnly: true
        title:
          title: Title
          type: string
          maxLength: 300
          minLength: 1
        status:
          title: Status
          type: string
          enum:
          - accepted
          - declined
          - pending
        created_at:
          title: Created at
          type: string
          format: date-time
          readOnly: true
    Language:
      required:
      - title
      type: object
      properties:
        id:
          title: ID
          type: integer
          readOnly: true
        title:
          title: Title
          type: string
          maxLength: 300
          minLength: 1
    ReturnCountJob:
      required:
      - active
      - inactive
      type: object
      properties:
        active:
          title: Active
          type: integer
        inactive:
          title: Inactive
          type: integer
    Currency:
      title: Salary currency
      required:
      - title
      - name
      type: object
      properties:
        id:
          title: ID
          type: integer
          readOnly: true
        title:
          title: Title
          type: string
          minLength: 1
        name:
          title: Name
          type: string
          minLength: 1
        rates:
          title: Rates
          type: string
          readOnly: true
    StepMatchRate:
      title: Matches
      type: object
      properties:
        values_match:
          title: Values match
          type: integer
          maximum: 2147483647
          minimum: -2147483648
        personalities_match:
          title: Personalities match
          type: integer
          maximum: 2147483647
          minimum: -2147483648
        technical_skill:
          title: Technical skill
          type: integer
          maximum: 2147483647
          minimum: -2147483648
        soft_skill:
          title: Soft skill
          type: integer
          maximum: 2147483647
          minimum: -2147483648
        language:
          title: Language
          type: integer
          maximum: 2147483647
          minimum: -2147483648
        salary:
          type: array
          items:
            title: Salary
            type: integer
            maximum: 2147483647
            minimum: -2147483648
        salary_currency:
          title: Salary currency
          type:
          - integer
          - 'null'
        show_salary:
          title: Show salary
          type: boolean
    CandidatesForJob:
      required:
      - id
      - country
      - freelance_salary
      - updated_at
      - city
      - user_id
      - nickname
      - name
      - matched_technical_skills
      type: object
      properties:
        id:
          title: Id
          type: integer
        country:
          $ref: '#/components/schemas/CountryName'
        job_title:
          title: Job title
          type: string
          readOnly: true
        freelance_salary:
          title: Freelance salary
          type: string
          minLength: 1
        technical_score:
          title: Technical score
          type: string
          readOnly: true
        updated_at:
          title: Updated at
          type: string
          format: date-time
        chat:
          title: Chat
          type: string
          readOnly: true
        minimum_salaries:
          title: Minimum salaries
          type: string
          readOnly: true
        value_score:
          title: Value score
          type: string
          readOnly: true
        soft_score:
          title: Soft score
          type: string
          readOnly: true
        language_score:
          title: Language score
          type: string
          readOnly: true
        personal_score:
          title: Personal score
          type: string
          readOnly: true
        candidate_status:
          title: Candidate status
          type: string
          readOnly: true
        working_years:
          title: Working years
          type:
          - integer
          - 'null'
          maximum: 2147483647
          minimum: -2147483648
        city:
          $ref: '#/components/schemas/CityName'
        best_match:
          title: Best match
          type: string
          readOnly: true
        user_id:
          title: User id
          type: integer
        match_id:
          title: Match id
          type: string
          readOnly: true
        nickname:
          title: Nickname
          type: string
          minLength: 1
        name:
          title: Name
          type: string
          minLength: 1
        matched_technical_skills:
          type: array
          items:
            $ref: '#/components/schemas/Skill'
    ReturnJob:
      required:
      - title
      - country
      - city
      - opportunity_type
      - location_type
      type: object
      properties:
        id:
          title: ID
          type: integer
          readOnly: true
        title:
          $ref: '#/components/schemas/ReturnJobRole'
        description:
          title: Description
          type:
          - string
          - 'null'
          minLength: 1
        is_active:
          title: Is active
          type: boolean
        is_public:
          title: Is public
          type: boolean
        salary:
          title: Salary
          type: string
          readOnly: true
        talents:
          title: Talents
          type: string
          readOnly: true
        created_at:
          title: Created at
          type: string
          format: date-time
        review:
          title: Review
          type:
          - string
          - 'null'
          enum:
          - accepted
          - declined
          - pending
        updated_at:
          title: Updated at
          type:
          - string
          - 'null'
          format: date-time
        company:
          title: Company
          type: string
          readOnly: true
        country:
          $ref: '#/components/schemas/CountryName'
        city:
          $ref: '#/components/schemas/CityName'
        opportunity_type:
          title: Opportunity type
          type: string
          enum:
          - full_time
          - part_time
          - freelance
          - internship
        location_type:
          title: Location type
          type: string
          enum:
          - remote_only
          - remote_and_location
          - location_only
        salary_currency:
          title: Salary currency
          type: string
          readOnly: true
    CountryName:
      title: Country
      required:
      - title
      - code
      type: object
      properties:
        title:
          title: Title
          type: string
          maxLength: 200
          minLength: 1
        code:
          title: Code
          type: string
          maxLength: 2
          minLength: 1
        id:
          title: ID
          type: integer
          readOnly: true
    ReturnJobRole:
      title: Title
      required:
      - title
      type: object
      properties:
        id:
          title: ID
          type: integer
          readOnly: true
        title:
          title: Title
          type: string
          maxLength: 300
          minLength: 1
        status:
          title: Status
          type: string
          enum:
          - accepted
          - declined
          - pending
    CityName:
      title: City
      required:
      - title
      - code
      type: object
      properties:
        title:
          title: Title
          type: string
          maxLength: 200
          minLength: 1
        id:
          title: ID
          type: integer
          readOnly: true
        code:
          title: Code
          type: string
          minLength: 1
    ReturnJobRetrieve:
      required:
      - title
      - country
      - city
      - technical_skills
      - soft_skills
      - languages
      - matches
      - working_years
      - opportunity_type
      - location_type
      type: object
      properties:
        id:
          title: ID
          type: integer
          readOnly: true
        title:
          $ref: '#/components/schemas/ReturnJobRole'
        description:
          title: Description
          type:
          - string
          - 'null'
          minLength: 1
        is_active:
          title: Is active
          type: boolean
        salary:
          title: Salary
          type: integer
          maximum: 2147483647
          minimum: -2147483648
        company:
          title: Company
          type: string
          readOnly: true
        country:
          $ref: '#/components/schemas/CountryName'
        city:
          $ref: '#/components/schemas/CityName'
        updated_at:
          title: Updated at
          type:
          - string
          - 'null'
          format: date-time
        technical_skills:
          type: array
          items:
            $ref: '#/components/schemas/Skill'
        soft_skills:
          type: array
          items:
            $ref: '#/components/schemas/Skill'
        languages:
          type: array
          items:
            $ref: '#/components/schemas/Language'
        matches:
          $ref: '#/components/schemas/ReturnStepMatchRate'
        values:
          title: Values
          type: string
          readOnly: true
        working_years:
          title: Working years
          type: integer
          maximum: 2147483647
          minimum: -2147483648
        personalities:
          title: Personalities
          type: string
          readOnly: true
        opportunity_type:
          title: Opportunity type
          type: string
          enum:
          - full_time
          - part_time
          - freelance
          - internship
        location_type:
          title: Location type
          type: string
          enum:
          - remote_only
          - remote_and_location
          - location_only
        review:
          title: Review
          type:
          - string
          - 'null'
          enum:
          - accepted
          - declined
          - pending
        created_at:
          title: Created at
          type: string
          format: date-time
    ReturnValuePersonality:
      required:
      - fields
      type: object
      properties:
        fields:
          title: Fields
          type: string
        id:
          title: ID
          type: integer
          readOnly: true
    StepCompensation:
      title: Compensation
      required:
      - salary
      - show_salary
      - salary_currency
      type: object
      properties:
        salary:
          type: array
          items:
            title: Salary
            type: integer
            maximum: 2147483647
            minimum: -2147483648
        show_salary:
          title: Show salary
          type: boolean
        salary_currency:
          title: Salary currency
          type: integer
    ReturnStepMatchRate:
      title: Matches
      required:
      - salary_currency
      type: object
      properties:
        values_match:
          title: Values match
          type: integer
          maximum: 2147483647
          minimum: -2147483648
        personalities_match:
          title: Personalities match
          type: integer
          maximum: 2147483647
          minimum: -2147483648
        techn

# --- truncated at 32 KB (33 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/nobueno/refs/heads/main/openapi/nobueno-jobs-api-openapi.yml