StackOne · Schema

Offer

IntegrationsiPaaS

Properties

Name Type Description
offer_history array
id string
offer_status object
created_at string
updated_at string
salary number
application_id string
start_date string
currency string
View JSON Schema on GitHub

JSON Schema

stackone-offer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Offer",
  "title": "Offer",
  "type": "object",
  "properties": {
    "offer_history": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/OfferHistory"
      }
    },
    "id": {
      "type": "string"
    },
    "offer_status": {
      "$ref": "#/components/schemas/OfferStatusEnum"
    },
    "created_at": {
      "type": "string"
    },
    "updated_at": {
      "type": "string"
    },
    "salary": {
      "type": "number"
    },
    "application_id": {
      "type": "string"
    },
    "start_date": {
      "type": "string",
      "format": "date-time"
    },
    "currency": {
      "type": "string"
    }
  },
  "required": [
    "id",
    "application_id",
    "start_date",
    "offer_status"
  ]
}