1
0
mirror of synced 2026-01-08 03:06:34 -05:00
Files
airbyte/airbyte-integrations/connectors/source-rocket-chat/source_rocket_chat/schemas/teams.json
Haithem SOUALA b690004d8e 🎉 New Source: Rocket.chat [low-code cdk] (#18635)
* init commit

* add streams

* add streams

* add streams

* add streams

* solve conflict doc

* solve doc conflict

* updates to connector

* Update acceptance-test-config.yml

* Revert "Update acceptance-test-config.yml"

This reverts commit e79ea7c7db984b3abaf7686627b34f18ea42b526.

* solve source def conflict

* solve spec conflict

Co-authored-by: marcosmarxm <marcosmarxm@gmail.com>
Co-authored-by: Vincent Koc <vincentkoc@ieee.org>
Co-authored-by: Vincent Koc <25068+koconder@users.noreply.github.com>
2022-11-14 21:43:19 -03:00

34 lines
617 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"_id": {
"type": ["null", "string"]
},
"name": {
"type": ["null", "string"]
},
"type": {
"type": ["null", "integer"]
},
"createdAt": {
"type": ["null", "string"]
},
"createdBy": {
"type": ["null", "object"]
},
"_updatedAt": {
"type": ["null", "string"]
},
"roomId": {
"type": ["null", "string"]
},
"rooms": {
"type": ["null", "integer"]
},
"numberOfUsers": {
"type": ["null", "integer"]
}
}
}