Skip to contents

Get modified concepts in a specific vocabulary from the Finto Skosmos API

Usage

get_modified_concepts(vocid, lang = NULL, offset = NULL, limit = NULL)

Arguments

vocid

The vocabulary ID, e.g., "yso".

lang

The language of labels, e.g., "en" or "fi". Optional.

offset

Offset for the starting index of the results. Optional.

limit

Maximum number of concepts to return. Optional.

Value

A tibble containing the modified concepts with URI, label, and modification date.

Examples

result <- get_modified_concepts(vocid = "yso", lang = "fi", limit = 10)
#> Requesting URL: https://api.finto.fi/rest/v1/yso/modified?lang=fi&limit=10
print(result)
#> # A tibble: 10 × 3
#>    uri                               prefLabel               date               
#>    <chr>                             <chr>                   <chr>              
#>  1 http://www.yso.fi/onto/yso/p23916 geneettinen muuntelu    2025-03-04T00:00:0…
#>  2 http://www.yso.fi/onto/yso/p25796 ICD                     2025-03-01T00:00:0…
#>  3 http://www.yso.fi/onto/yso/p5431  ilmanvaihto             2025-03-01T00:00:0…
#>  4 http://www.yso.fi/onto/yso/p6628  ilmastointi             2025-03-01T00:00:0…
#>  5 http://www.yso.fi/onto/yso/p13851 kalevalamitta           2025-03-01T00:00:0…
#>  6 http://www.yso.fi/onto/yso/p13734 lehtikuvat              2025-03-08T00:00:0…
#>  7 http://www.yso.fi/onto/yso/p3332  luonnonsuojelujärjestöt 2025-03-01T00:00:0…
#>  8 http://www.yso.fi/onto/yso/p16848 osallistava tutkimus    2025-03-01T00:00:0…
#>  9 http://www.yso.fi/onto/yso/p507   rauhanturvaaminen       2025-03-06T00:00:0…
#> 10 http://www.yso.fi/onto/yso/p12121 ruoansulatus            2025-03-01T00:00:0…