StackOne · Schema

OfferHistory

IntegrationsiPaaS

Properties

Name Type Description
updated_at string
start_date string
salary number
currency string
created_at string
View JSON Schema on GitHub

JSON Schema

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