Unified.to · Schema

AtsOffer

IntegrationsUnified API

Properties

Name Type Description
accepted_at string
compensation object
created_at string
creator_user_id string
employee_user_id string
id string
raw object
rejected_at string
sent_at string
start_at string
status string
updated_at string
View JSON Schema on GitHub

JSON Schema

unified-to-atsoffer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AtsOffer",
  "title": "AtsOffer",
  "properties": {
    "accepted_at": {
      "format": "date-time",
      "type": "string"
    },
    "compensation": {
      "$ref": "#/components/schemas/property_AtsOffer_compensation"
    },
    "created_at": {
      "format": "date-time",
      "type": "string"
    },
    "creator_user_id": {
      "type": "string"
    },
    "employee_user_id": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "raw": {
      "additionalProperties": true,
      "type": "object"
    },
    "rejected_at": {
      "format": "date-time",
      "type": "string"
    },
    "sent_at": {
      "format": "date-time",
      "type": "string"
    },
    "start_at": {
      "format": "date-time",
      "type": "string"
    },
    "status": {
      "enum": [
        "CREATED",
        "SENT",
        "ACCEPTED",
        "REJECTED"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    },
    "updated_at": {
      "format": "date-time",
      "type": "string"
    }
  },
  "type": "object"
}