Skip to content

Commit

Permalink
docs(tutorial): update rules uri format
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdoret committed Aug 27, 2024
1 parent 01418d2 commit 87b1439
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Given the following config:
```yaml
nodes:
of_type:
- "http://xmlns.com/foaf/0.1/Person"
- "<http://xmlns.com/foaf/0.1/Person>"
```
The goal is to pseudonymize all instaces of `rdf:type` Person. The following
Expand All @@ -87,8 +87,8 @@ Given the following config:
```yaml
objects:
on_type_predicate:
"http://xmlns.com/foaf/0.1/Person":
- "http://schema.org/name"
"<http://xmlns.com/foaf/0.1/Person>":
- "<http://schema.org/name>"
```

The goal is to pseudonymize only the instances of names when they're associated
Expand Down Expand Up @@ -118,7 +118,7 @@ Given the following config:
```yaml
objects:
on_predicate:
- "http://schema.org/name"
- "<http://schema.org/name>"
```

The goal is to pseudonymize any values associated to name. The following input
Expand Down

0 comments on commit 87b1439

Please sign in to comment.