Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TDL-13896 tap-shopify redirects schema #735

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions _integration-schemas/shopify/redirects.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
# -------------------------- #
# USING THIS TEMPLATE #
# -------------------------- #

## NEED HELP USING THIS TEMPLATE? SEE:
## https://docs-about-stitch-docs.netlify.com/reference/integration-templates/saas-table-schema/
## FOR INSTRUCTIONS & REFERENCE INFO


tap: "shopify"
version: "1"

key: "id"
name: "redirects"
doc-link: https://shopify.dev/api/admin-rest/2021-10/resources/redirect
singer-schema: https://github.com/singer-io/tap-shopify/blob/master/tap_shopify/schemas/redirects.json
description: |
The `{{ table.name }}` table contains info about URL redirects.

replication-method: "Full Table"

api-method:
name: "Retrieves a list of URL redirects"
doc-link: "https://shopify.dev/api/admin-rest/2021-10/resources/redirect#[get]/admin/api/2021-10/redirects.json"

attributes:
- name: "id"
type: "integer"
description: "The redirect ID."
- name: "path"
type: "string"
description: "The source path that is redirected."
- name: "target"
type: "string"
description: "The target location of the redirect (path or full URL)."
---