1
0
mirror of synced 2026-01-26 22:02:03 -05:00
Files
airbyte/airbyte-integrations/connectors/source-gitlab/source_gitlab/schemas/project_members.json

65 lines
1.2 KiB
JSON

{
"$schema": "https://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"project_id": {
"type": ["null", "integer"]
},
"id": {
"type": ["null", "integer"]
},
"name": {
"type": ["null", "string"]
},
"username": {
"type": ["null", "string"]
},
"state": {
"type": ["null", "string"]
},
"membership_state": {
"type": ["null", "string"]
},
"avatar_url": {
"type": ["null", "string"]
},
"web_url": {
"type": ["null", "string"]
},
"access_level": {
"type": ["null", "integer"]
},
"created_at": {
"type": ["null", "string"],
"format": "date-time"
},
"expires_at": {
"type": ["null", "string"],
"format": "date-time"
},
"created_by": {
"avatar_url": {
"type": ["null", "string"]
},
"id": {
"type": ["null", "integer"]
},
"name": {
"type": ["null", "string"]
},
"state": {
"type": ["null", "string"]
},
"username": {
"type": ["null", "string"]
},
"web_url": {
"type": ["null", "string"]
}
},
"locked": {
"type": ["null", "boolean"]
}
}
}