Skip to content

Commit

Permalink
one->you
Browse files Browse the repository at this point in the history
  • Loading branch information
petehunt committed Aug 26, 2024
1 parent 60fe0dc commit 91ab318
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/docs-beta/docs/guides/data-modeling/metadata.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ In Dagster, you can attach custom information to assets in two ways: **tags** an

**Tags** are the primary way to organize assets in Dagster. You can attach several tags to an asset when it's defined, and they will appear in the UI. You can also use tags to search and filter for assets in the [Asset catalog](/todo). They're structured as key-value pairs of strings.

Here's an example of some tags one might apply to an asset:
Here's an example of some tags you might apply to an asset:

```python
{"domain": "marketing", "pii": "true"}
```

**Metadata** allows you to attach rich information to the asset, like a Markdown description, a table schema, or a time series. Metadata is more flexible than tags, as it can store more complex information. Metadata can be attached to an asset at definition time (i.e. when the code is first imported) or at runtime (every time an asset is materialized).

Here's an example of some metadata one might apply to an asset:
Here's an example of some metadata you might apply to an asset:

```python
{
Expand Down

0 comments on commit 91ab318

Please sign in to comment.