Skip to content
This repository has been archived by the owner on Nov 2, 2024. It is now read-only.

Commit

Permalink
fixed offer schema
Browse files Browse the repository at this point in the history
  • Loading branch information
rawwar committed Jun 13, 2023
1 parent f4acb24 commit 1d3be01
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "rawwar-tap-greenhouse"
version = "0.2.0"
version = "0.3.0"
description = "`tap-greenhouse` is a Singer tap for greenhouse, built with the Meltano Singer SDK."
readme = "README.md"
authors = ["kalyan reddy"]
Expand Down
10 changes: 8 additions & 2 deletions tap_greenhouse/schemas/offer.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,14 @@
th.Property("status", th.StringType),
th.Property("opened_at", th.StringType),
th.Property("closed_at", th.StringType, required=False),
th.Property("application_id", th.StringType, required=False),
th.Property("close_reason", th.StringType, required=False),
th.Property("application_id", th.IntegerType, required=False),
th.Property(
"close_reason",
th.ObjectType(
th.Property("id", th.IntegerType),
th.Property("name", th.StringType),
),
),
),
),
th.Property("created_at", th.StringType),
Expand Down

0 comments on commit 1d3be01

Please sign in to comment.