1
0
mirror of synced 2026-01-06 15:03:36 -05:00
Files
airbyte/airbyte-integrations/connectors/source-clickup-api/source_clickup_api/schemas/folder.json
Josix 07af2ff4bf 🎉 New Source: ClickUp (#17770)
* feat(connectors): add source clickup api template

* feat(connectors/clickup-api): add /user and /team endpoint configs

* docs(clickup-connectors): add clickup source doc

* feat: add tasks stream and list stream to ClickUp API

* feat: add space stream and folder stream to clikcup api

* feat: update acceptance-test-config.yml w/ version in 0.2.12

459856b73c/airbyte-integrations/bases/source-acceptance-test (migrating-acceptance-test-configyml-to-latest-configuration-format)

* docs: add descripiton for optional configs fields

* fix: fix list.json schema

* fix: add ignore_fields to ignore changing value in full_refresh of acceptance-tests

* add clickup to source def

* auto-bump connector version

Co-authored-by: marcosmarxm <marcosmarxm@gmail.com>
Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
Co-authored-by: Marcos Marx <marcosmarxm@users.noreply.github.com>
2022-11-13 17:41:23 -03:00

45 lines
852 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"id": {
"type": ["null", "string"]
},
"name": {
"type": ["null", "string"]
},
"orderindex": {
"type": ["null", "integer"]
},
"override_statuses": {
"type": ["null", "boolean"]
},
"hidden": {
"type": ["null", "boolean"]
},
"task_count": {
"type": ["null", "string"]
},
"lists": {
"type": ["null", "array"],
"items": {
"type": ["null", "object"]
}
},
"space": {
"type": ["null", "object"],
"properties": {
"id": {
"type": ["null", "string"]
},
"name": {
"type": ["null", "string"]
},
"access": {
"type": ["null", "boolean"]
}
}
}
}
}