1
0
mirror of synced 2025-12-31 15:03:11 -05:00
Files
airbyte/airbyte-integrations/connectors/source-gitlab/source_gitlab/schemas/epic_issues.json
Artem Inzhyyants c734909b79 Source GitLab: add shared_runners_setting field to groups (#27869)
* Source GitLab: add `additionalProperties` to all schemas; add `shared_runners_setting` field to groups

* Source GitLab: update docs

* Source GitLab: remove additionalProperties

* Source GitLab: update docs

* Source GitLab: update expected records
2023-07-03 10:38:10 +02:00

249 lines
5.2 KiB
JSON

{
"$schema": "https://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"id": {
"type": ["null", "integer"]
},
"iid": {
"type": ["null", "integer"]
},
"project_id": {
"type": ["null", "integer"]
},
"title": {
"type": ["null", "string"]
},
"description": {
"type": ["null", "string"]
},
"state": {
"type": ["null", "string"]
},
"created_at": {
"type": ["null", "string"],
"format": "date-time"
},
"updated_at": {
"type": ["null", "string"],
"format": "date-time"
},
"closed_at": {
"type": ["null", "string"],
"format": "date-time"
},
"labels": {
"type": ["null", "array"],
"items": {
"type": ["null", "string"]
}
},
"milestone": {
"type": ["null", "object"],
"additionalProperties": true
},
"milestone_id": {
"type": ["null", "integer"]
},
"assignees": {
"type": ["null", "array"],
"items": {
"type": ["null", "integer"]
}
},
"assignee": {
"type": ["null", "object"],
"additionalProperties": true
},
"assignee_id": {
"type": ["null", "integer"]
},
"author": {
"type": ["null", "object"],
"additionalProperties": true
},
"author_id": {
"type": ["null", "integer"]
},
"user_notes_count": {
"type": ["null", "integer"]
},
"upvotes": {
"type": ["null", "integer"]
},
"downvotes": {
"type": ["null", "integer"]
},
"due_date": {
"type": ["null", "string"]
},
"confidential": {
"type": ["null", "boolean"]
},
"weight": {
"type": ["null", "integer"]
},
"discussion_locked": {
"type": ["null", "boolean"]
},
"web_url": {
"type": ["null", "string"]
},
"time_stats": {
"type": ["null", "object"]
},
"_links": {
"type": ["null", "object"]
},
"epic_issue_id": {
"type": ["null", "integer"]
},
"merge_requests_count": {
"type": ["null", "integer"]
},
"type": {
"type": ["null", "string"]
},
"task_status": {
"type": ["null", "string"]
},
"moved_to_id": {
"type": ["null", "integer"]
},
"iteration": {
"type": ["null", "object"],
"properties": {
"id": {
"type": ["null", "integer"]
},
"iid": {
"type": ["null", "integer"]
},
"sequence": {
"type": ["null", "integer"]
},
"group_id": {
"type": ["null", "integer"]
},
"title": {
"type": ["null", "string"]
},
"description": {
"type": ["null", "string"]
},
"state": {
"type": ["null", "integer"]
},
"created_at": {
"type": ["null", "string"],
"format": "date-time"
},
"updated_at": {
"type": ["null", "string"],
"format": "date-time"
},
"start_date": {
"type": ["null", "string"],
"format": "date-time"
},
"due_date": {
"type": ["null", "string"],
"format": "date-time"
},
"web_url": {
"type": ["null", "string"]
}
}
},
"has_tasks": {
"type": ["null", "boolean"]
},
"blocking_issues_count": {
"type": ["null", "integer"]
},
"closed_by": {
"type": ["null", "object"],
"properties": {
"state": {
"type": ["null", "string"]
},
"web_url": {
"type": ["null", "string"]
},
"avatar_url": {
"type": ["null", "string"]
},
"username": {
"type": ["null", "string"]
},
"id": {
"type": ["null", "integer"]
},
"name": {
"type": ["null", "string"]
}
}
},
"references": {
"type": ["null", "object"],
"properties": {
"full": {
"type": ["null", "string"]
},
"relative": {
"type": ["null", "string"]
},
"short": {
"type": ["null", "string"]
}
}
},
"epic": {
"type": ["null", "object"],
"properties": {
"id": {
"type": ["null", "integer"]
},
"iid": {
"type": ["null", "integer"]
},
"title": {
"type": ["null", "string"]
},
"url": {
"type": ["null", "string"]
},
"group_id": {
"type": ["null", "integer"]
}
}
},
"issue_type": {
"type": ["null", "string"]
},
"severity": {
"type": ["null", "string"]
},
"service_desk_reply_to": {
"type": ["null", "string"]
},
"task_completion_status": {
"type": ["null", "object"],
"properties": {
"count": {
"type": ["null", "integer"]
},
"completed_count": {
"type": ["null", "integer"]
}
}
},
"relative_position": {
"type": ["null", "integer"]
},
"epic_iid": {
"type": ["null", "integer"]
}
}
}