forked from airbytehq/airbyte
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
also locations has ID not Entity ID
- Loading branch information
Rohit Chatterjee
committed
May 30, 2024
1 parent
56f6f52
commit 199f772
Showing
2 changed files
with
75 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
74 changes: 74 additions & 0 deletions
74
airbyte-integrations/connectors/source-avni/source_avni/schemas/locations.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"additionalProperties": true, | ||
"properties": { | ||
"ID": { | ||
"type": "string" | ||
}, | ||
"External ID": { | ||
"type": [ | ||
"null", | ||
"string" | ||
] | ||
}, | ||
"Title": { | ||
"type": "string" | ||
}, | ||
"Type": { | ||
"type": "string" | ||
}, | ||
"Level": { | ||
"type": "number" | ||
}, | ||
"Voided": { | ||
"type": "boolean" | ||
}, | ||
"customProperties": { | ||
"type": [ | ||
"null", | ||
"object" | ||
], | ||
"additionalProperties": true | ||
}, | ||
"last_modified_at": { | ||
"type": "string", | ||
"format": "YYYY-MM-DDTHH:mm:ss.sssZ" | ||
}, | ||
"audit": { | ||
"type": [ | ||
"null", | ||
"object" | ||
], | ||
"additionalProperties": true, | ||
"properties": { | ||
"Created at": { | ||
"type": [ | ||
"null", | ||
"string" | ||
], | ||
"format": "YYYY-MM-DDTHH:mm:ss.sssZ" | ||
}, | ||
"Last modified at": { | ||
"type": [ | ||
"null", | ||
"string" | ||
], | ||
"format": "YYYY-MM-DDTHH:mm:ss.sssZ" | ||
}, | ||
"Created by": { | ||
"type": [ | ||
"null", | ||
"string" | ||
] | ||
}, | ||
"Last modified by": { | ||
"type": [ | ||
"null", | ||
"string" | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} |