### Requirements for Linear Connector Source: https://github.com/linear/linear-airbyte-source/blob/main/readme.md Lists the prerequisites for setting up and using the Linear Airbyte source connector. ```APIDOC Integration API Token (from Linear settings) Linear Enterprise plan subscription Docker desktop ``` -------------------------------- ### Running Local Integration Tests with Docker Source: https://github.com/linear/linear-airbyte-source/blob/main/CONTRIBUTING.md Steps to set up and run the Linear Airbyte source connector integration tests locally using Docker. This involves configuring the test environment, pulling the Airbyte test image, building the source connector image, and executing the tests. ```bash docker pull airbyte/source-acceptance-test ``` ```bash docker build -t linear-airbyte-source . ``` ```bash docker run --rm -t -v /var/run/docker.sock:/var/run/docker.sock -v /tmp:/tmp -v $(pwd):/test_input airbyte/source-acceptance-test:latest --acceptance-test-config /test_input ``` -------------------------------- ### Linear API Streams Source: https://github.com/linear/linear-airbyte-source/blob/main/readme.md Lists the available data streams that can be synced from the Linear API. Each stream links to its schema definition. ```APIDOC Issue: URL: https://studio.apollographql.com/public/Linear-API/variant/current/schema/reference/objects/Issue Organization: URL: https://studio.apollographql.com/public/Linear-API/variant/current/schema/reference/objects/Organization Team: URL: https://studio.apollographql.com/public/Linear-API/variant/current/schema/reference/objects/Team User: URL: https://studio.apollographql.com/public/Linear-API/variant/current/schema/reference/objects/User ProjectMilestone: URL: https://studio.apollographql.com/public/Linear-API/variant/current/schema/reference/objects/ProjectMilestone Project: URL: https://studio.apollographql.com/public/Linear-API/variant/current/schema/reference/objects/Project ProjectStatus: URL: https://studio.apollographql.com/public/Linear-API/variant/current/schema/reference/objects/ProjectStatus Initiative: URL: https://studio.apollographql.com/public/Linear-API/variant/current/schema/reference/objects/Initiative InitiativeToProject: URL: https://studio.apollographql.com/public/Linear-API/variant/current/schema/reference/objects/InitiativeToProject IntegrationResource: URL: https://studio.apollographql.com/public/Linear-API/variant/current/schema/reference/objects/IntegrationResource Attachment: URL: https://studio.apollographql.com/public/Linear-API/variant/current/schema/reference/objects/Attachment AuditEntry: URL: https://studio.apollographql.com/public/Linear-API/variant/current/schema/reference/objects/AuditEntry Comment: URL: https://studio.apollographql.com/public/Linear-API/variant/current/schema/reference/objects/Comment Cycle: URL: https://studio.apollographql.com/public/Linear-API/variant/current/schema/reference/objects/Cycle WorkflowState: URL: https://github.com/linear/linear/blob/master/packages/sdk/src/schema.graphql#L12325 Document: URL: https://github.com/linear/linear/blob/master/packages/sdk/src/schema.graphql#L1438 DocumentContent: URL: https://studio.apollographql.com/public/Linear-API/variant/current/schema/reference/objects/DocumentContent EntityExternalLink: URL: https://studio.apollographql.com/public/Linear-API/variant/current/schema/reference/objects/EntityExternalLink IssueHistory: URL: https://studio.apollographql.com/public/Linear-API/variant/current/schema/reference/objects/IssueHistory IssueLabel: URL: https://studio.apollographql.com/public/Linear-API/variant/current/schema/reference/objects/IssueLabel IssueRelation: URL: https://studio.apollographql.com/public/Linear-API/variant/current/schema/reference/objects/IssueRelation ProjectUpdate: URL: https://studio.apollographql.com/public/Linear-API/variant/current/schema/reference/objects/ProjectUpdate TeamKey: URL: https://studio.apollographql.com/public/Linear-API/variant/current/schema/reference/objects/TeamKey TeamMembership: URL: https://studio.apollographql.com/public/Linear-API/variant/current/schema/reference/objects/TeamMembership Customer: URL: https://studio.apollographql.com/public/Linear-API/variant/current/schema/reference/objects/Customer CustomerNeed: URL: https://studio.apollographql.com/public/Linear-API/variant/current/schema/reference/objects/CustomerNeed ``` -------------------------------- ### Connector Features Source: https://github.com/linear/linear-airbyte-source/blob/main/readme.md Details the supported synchronization features for the Linear connector. ```APIDOC Full Refresh Sync: Yes Incremental Sync: No Namespaces: No ``` -------------------------------- ### Data Type Mapping Source: https://github.com/linear/linear-airbyte-source/blob/main/readme.md Maps integration data types to Airbyte data types for consistent data handling. ```APIDOC string -> string int, float, number -> number date -> date datetime -> datetime array -> array object -> object ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.