{
  "openapi": "3.0.4",
  "info": {
    "title": "JobBoardAPI",
    "version": "1.0"
  },
  "paths": {
    "/api/v1/candidates/search": {
      "post": {
        "tags": [
          "CandidatesApiV1"
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/JobBoardAPI.Agency.Api.V1.CandidateV1SearchRequest"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/JobBoardAPI.Agency.Api.V1.CandidateV1SearchRequest"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/JobBoardAPI.Agency.Api.V1.CandidateV1SearchRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.Agency.Api.V1.CandidateV1SearchResult"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.Agency.Api.V1.CandidateV1SearchResult"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.Agency.Api.V1.CandidateV1SearchResult"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Error"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Error"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Error"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Error"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Error"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/candidates/{id}": {
      "get": {
        "tags": [
          "CandidatesApiV1"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.Agency.Api.V1.CandidateV1Profile"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.Agency.Api.V1.CandidateV1Profile"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.Agency.Api.V1.CandidateV1Profile"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Error"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Error"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Error"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Error"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Error"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/jobs": {
      "get": {
        "tags": [
          "JobsApiV1"
        ],
        "parameters": [
          {
            "name": "status",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "page",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 1
            }
          },
          {
            "name": "pageSize",
            "in": "query",
            "schema": {
              "type": "integer",
              "format": "int32",
              "default": 50
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1ListResponse"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1ListResponse"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1ListResponse"
                }
              }
            }
          }
        }
      },
      "post": {
        "tags": [
          "JobsApiV1"
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1CreateRequest"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1CreateRequest"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1CreateRequest"
              }
            }
          }
        },
        "responses": {
          "201": {
            "description": "Created",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Detail"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Detail"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Detail"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Error"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Error"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/jobs/{id}": {
      "get": {
        "tags": [
          "JobsApiV1"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Detail"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Detail"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Detail"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Error"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Error"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Error"
                }
              }
            }
          }
        }
      },
      "put": {
        "tags": [
          "JobsApiV1"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1UpdateRequest"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1UpdateRequest"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1UpdateRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Detail"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Detail"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Detail"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Error"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Error"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Error"
                }
              }
            }
          }
        }
      },
      "delete": {
        "tags": [
          "JobsApiV1"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "responses": {
          "204": {
            "description": "No Content"
          },
          "404": {
            "description": "Not Found",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Error"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Error"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Error"
                }
              }
            }
          }
        }
      }
    },
    "/api/v1/jobs/{id}/publish": {
      "post": {
        "tags": [
          "JobsApiV1"
        ],
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int32"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1PublishRequest"
              }
            },
            "text/json": {
              "schema": {
                "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1PublishRequest"
              }
            },
            "application/*+json": {
              "schema": {
                "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1PublishRequest"
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Detail"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Detail"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Detail"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Error"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Error"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Error"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Error"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Error"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Error"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Error"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Error"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Error"
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "JobBoardAPI.Agency.Api.V1.CandidateV1Match": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "format": "int32"
          },
          "maskedName": {
            "type": "string",
            "nullable": true
          },
          "headline": {
            "type": "string",
            "nullable": true
          },
          "city": {
            "type": "string",
            "nullable": true
          },
          "country": {
            "type": "string",
            "nullable": true
          },
          "skills": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "sectorCodes": {
            "type": "array",
            "items": {
              "type": "integer",
              "format": "int32"
            },
            "nullable": true
          },
          "nationalities": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "languages": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "lastActiveAt": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "isUnlocked": {
            "type": "boolean"
          }
        },
        "additionalProperties": false
      },
      "JobBoardAPI.Agency.Api.V1.CandidateV1Profile": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "format": "int32"
          },
          "fullName": {
            "type": "string",
            "nullable": true
          },
          "headline": {
            "type": "string",
            "nullable": true
          },
          "email": {
            "type": "string",
            "nullable": true
          },
          "city": {
            "type": "string",
            "nullable": true
          },
          "country": {
            "type": "string",
            "nullable": true
          },
          "skills": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "sectorCodes": {
            "type": "array",
            "items": {
              "type": "integer",
              "format": "int32"
            },
            "nullable": true
          },
          "nationalities": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "languages": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "lastActiveAt": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "unlockExpiresAt": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "JobBoardAPI.Agency.Api.V1.CandidateV1SearchRequest": {
        "type": "object",
        "properties": {
          "query": {
            "type": "string",
            "nullable": true
          },
          "nationalities": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "languages": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "nullable": true
          },
          "sectorCodes": {
            "type": "array",
            "items": {
              "type": "integer",
              "format": "int32"
            },
            "nullable": true
          },
          "preferredCountryIds": {
            "type": "array",
            "items": {
              "type": "integer",
              "format": "int32"
            },
            "nullable": true
          },
          "minQualificationLevel": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "minSalary": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "maxSalary": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "salaryCurrency": {
            "type": "string",
            "nullable": true
          },
          "activeWithinDays": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "pageNumber": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "pageSize": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "JobBoardAPI.Agency.Api.V1.CandidateV1SearchResult": {
        "type": "object",
        "properties": {
          "total": {
            "type": "integer",
            "format": "int32"
          },
          "page": {
            "type": "integer",
            "format": "int32"
          },
          "pageSize": {
            "type": "integer",
            "format": "int32"
          },
          "items": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/JobBoardAPI.Agency.Api.V1.CandidateV1Match"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "JobBoardAPI.JobPosting.Api.V1.JobV1CreateRequest": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string",
            "nullable": true
          },
          "reference": {
            "type": "string",
            "nullable": true
          },
          "description": {
            "type": "string",
            "nullable": true
          },
          "city": {
            "type": "string",
            "nullable": true
          },
          "state": {
            "type": "string",
            "nullable": true
          },
          "country": {
            "type": "string",
            "nullable": true
          },
          "employmentType": {
            "type": "string",
            "nullable": true
          },
          "remoteType": {
            "type": "string",
            "nullable": true
          },
          "categoryId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "salaryMin": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "salaryMax": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "salaryCurrency": {
            "type": "string",
            "nullable": true
          },
          "salaryPeriod": {
            "type": "string",
            "nullable": true
          },
          "applyMethod": {
            "type": "string",
            "nullable": true
          },
          "applyEmailAddress": {
            "type": "string",
            "nullable": true
          },
          "applyDirectUrl": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "JobBoardAPI.JobPosting.Api.V1.JobV1Detail": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "format": "int32"
          },
          "title": {
            "type": "string",
            "nullable": true
          },
          "reference": {
            "type": "string",
            "nullable": true
          },
          "description": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string",
            "nullable": true
          },
          "city": {
            "type": "string",
            "nullable": true
          },
          "state": {
            "type": "string",
            "nullable": true
          },
          "country": {
            "type": "string",
            "nullable": true
          },
          "employmentType": {
            "type": "string",
            "nullable": true
          },
          "remoteType": {
            "type": "string",
            "nullable": true
          },
          "categoryId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "categoryName": {
            "type": "string",
            "nullable": true
          },
          "salaryMin": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "salaryMax": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "salaryCurrency": {
            "type": "string",
            "nullable": true
          },
          "salaryPeriod": {
            "type": "string",
            "nullable": true
          },
          "applyMethod": {
            "type": "string",
            "nullable": true
          },
          "applyEmailAddress": {
            "type": "string",
            "nullable": true
          },
          "applyDirectUrl": {
            "type": "string",
            "nullable": true
          },
          "ownerUserId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "createdAt": {
            "type": "string",
            "format": "date-time"
          },
          "postedDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "expiryDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "updatedAt": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "JobBoardAPI.JobPosting.Api.V1.JobV1Error": {
        "type": "object",
        "properties": {
          "code": {
            "type": "string",
            "nullable": true
          },
          "message": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "JobBoardAPI.JobPosting.Api.V1.JobV1ListResponse": {
        "type": "object",
        "properties": {
          "total": {
            "type": "integer",
            "format": "int32"
          },
          "page": {
            "type": "integer",
            "format": "int32"
          },
          "pageSize": {
            "type": "integer",
            "format": "int32"
          },
          "items": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/JobBoardAPI.JobPosting.Api.V1.JobV1Summary"
            },
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "JobBoardAPI.JobPosting.Api.V1.JobV1PublishRequest": {
        "type": "object",
        "properties": {
          "expiryDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "JobBoardAPI.JobPosting.Api.V1.JobV1Summary": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "format": "int32"
          },
          "title": {
            "type": "string",
            "nullable": true
          },
          "reference": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "string",
            "nullable": true
          },
          "city": {
            "type": "string",
            "nullable": true
          },
          "state": {
            "type": "string",
            "nullable": true
          },
          "country": {
            "type": "string",
            "nullable": true
          },
          "employmentType": {
            "type": "string",
            "nullable": true
          },
          "remoteType": {
            "type": "string",
            "nullable": true
          },
          "categoryName": {
            "type": "string",
            "nullable": true
          },
          "salaryMin": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "salaryMax": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "salaryCurrency": {
            "type": "string",
            "nullable": true
          },
          "salaryPeriod": {
            "type": "string",
            "nullable": true
          },
          "createdAt": {
            "type": "string",
            "format": "date-time"
          },
          "postedDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "expiryDate": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "JobBoardAPI.JobPosting.Api.V1.JobV1UpdateRequest": {
        "type": "object",
        "properties": {
          "title": {
            "type": "string",
            "nullable": true
          },
          "reference": {
            "type": "string",
            "nullable": true
          },
          "description": {
            "type": "string",
            "nullable": true
          },
          "city": {
            "type": "string",
            "nullable": true
          },
          "state": {
            "type": "string",
            "nullable": true
          },
          "country": {
            "type": "string",
            "nullable": true
          },
          "employmentType": {
            "type": "string",
            "nullable": true
          },
          "remoteType": {
            "type": "string",
            "nullable": true
          },
          "categoryId": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "salaryMin": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "salaryMax": {
            "type": "number",
            "format": "double",
            "nullable": true
          },
          "salaryCurrency": {
            "type": "string",
            "nullable": true
          },
          "salaryPeriod": {
            "type": "string",
            "nullable": true
          },
          "applyMethod": {
            "type": "string",
            "nullable": true
          },
          "applyEmailAddress": {
            "type": "string",
            "nullable": true
          },
          "applyDirectUrl": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      }
    }
  },
  "tags": [
    {
      "name": "CandidatesApiV1"
    },
    {
      "name": "JobsApiV1"
    }
  ]
}