Skip to content

Commit

Permalink
Update prov model
Browse files Browse the repository at this point in the history
  • Loading branch information
NicoLaval committed Sep 5, 2024
1 parent 5ba621b commit 862ca29
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions vtl-prov/docs/model-v1.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,25 @@ classDiagram

### Example

#### Inputs

`ds1` & `ds2` metadata

|id|var1|var2|
|:-:|:-:|:-:|
|STRING|INTEGER|NUMBER|
|IDENTIFIER|MEASURE|MEASURE|

#### VTL script

```vtl
ds_sum := ds1 + ds2;
ds_mul := ds_sum * 3;
ds_res <- ds_mul[filter mod(var1, 2) = 0]
```

#### Model target

```ttl
@PREFIX org: <http://example.com/>
@PREFIX prov: <http://www.w3.org/ns/prov#>
Expand Down

0 comments on commit 862ca29

Please sign in to comment.