1
0
mirror of synced 2026-01-14 21:06:21 -05:00
Files
airbyte/airbyte-integrations/connectors/source-gitlab/source_gitlab/schemas/users.json
Yevhenii 94f1d217b8 🎉 Native Gitlab connector (#4027)
* Create Airbyte-Native connector for Gitlab

Co-authored-by: ykurochkin <y.kurochkin@zazmic.com>
2021-07-06 15:25:01 +03:00

25 lines
438 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"id": {
"type": ["null", "integer"]
},
"name": {
"type": ["null", "string"]
},
"username": {
"type": ["null", "string"]
},
"state": {
"type": ["null", "string"]
},
"avatar_url": {
"type": ["null", "string"]
},
"web_url": {
"type": ["null", "string"]
}
}
}