StackOne · Schema

Job

IntegrationsiPaaS

Properties

Name Type Description
department_ids array
id string
title string
job_status object
hiring_team array
location_ids array
code string
company_id string
updated_at string
confidential string
created_at string
View JSON Schema on GitHub

JSON Schema

stackone-job-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Job",
  "title": "Job",
  "type": "object",
  "properties": {
    "department_ids": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "id": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "job_status": {
      "$ref": "#/components/schemas/JobStatusEnum"
    },
    "hiring_team": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/HiringTeam"
      }
    },
    "location_ids": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "code": {
      "type": "string"
    },
    "company_id": {
      "type": "string"
    },
    "updated_at": {
      "type": "string"
    },
    "confidential": {
      "type": "string",
      "enum": [
        "true",
        "false"
      ]
    },
    "created_at": {
      "type": "string"
    }
  },
  "required": [
    "id",
    "code",
    "title",
    "company_id",
    "department_ids",
    "location_ids",
    "job_status",
    "created_at",
    "updated_at"
  ]
}