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

add supported links to diff resource types #6443

Merged
merged 3 commits into from
Nov 11, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
1 change: 1 addition & 0 deletions website/docs/reference/macro-properties.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ macros:
[description](/reference/resource-properties/description): <markdown_string>
[docs](/reference/resource-configs/docs):
show: true | false
[meta](/reference/resource-configs/meta): {<dictionary>}
arguments:
- name: <arg name>
[type](/reference/resource-properties/argument-type): <string>
Expand Down
8 changes: 4 additions & 4 deletions website/docs/reference/resource-configs/meta.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ See [configs and properties](/reference/configs-and-properties) for details.
```yml
version: 2

sources:
[sources](/reference/source-properties):
- name: model_name
config:
meta: {<dictionary>}
Expand Down Expand Up @@ -110,7 +110,7 @@ version: 2
snapshots:
- name: snapshot_name
config:
meta: {<dictionary>}
[meta](/reference/snapshot-properties): {<dictionary>}

columns:
- name: column_name
Expand Down Expand Up @@ -147,7 +147,7 @@ The `meta` config is not currently supported for analyses.
```yml
version: 2

macros:
[macros](/reference/macro-properties):
- name: macro_name
meta: {<dictionary>}

Expand Down Expand Up @@ -287,7 +287,7 @@ models:
```yml
version: 2

sources:
[sources](/reference/source-properties):
- name: salesforce

tables:
Expand Down
4 changes: 2 additions & 2 deletions website/docs/reference/resource-properties/schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ datatype: schema_name
```yml
version: 2

sources:
[sources](/reference/source-properties):
- name: <source_name>
database: <database_name>
schema: <schema_name>
Expand All @@ -25,7 +25,7 @@ sources:
## Definition
The schema name as stored in the database.

This parameter is useful if you want to use a source name that differs from the schema name.
This parameter is useful if you want to use a [source](/reference/source-properties) name that differs from the schema name.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
This parameter is useful if you want to use a [source](/reference/source-properties) name that differs from the schema name.
This parameter is useful if you want to use a [source](/reference/source-properties) name that is different from the schema name.



:::info BigQuery terminology
Expand Down
Loading