Skip to contents

[Experimental]
Get metadata for the selected indicator from the INE API

Be aware that this function will still return a value and not throw an error if the indicator does not exist.

Usage

get_metadata(indicator, lang = "PT")

Arguments

indicator

INE indicator ID as a 7 character string. Example: "0010003".

lang

One of "PT" or "EN". Default is "PT".

Value

API response body as list.

See also

is_indicator_valid() can be used to check if the indicator is valid before calling this function.

Examples

get_metadata("0011823")
#> $IndicadorCod
#> [1] "0011823"
#> 
#> $IndicadorNome
#> [1] "Proporção de indivíduos com idade entre 16 e 74 anos que encontraram problemas ao utilizar websites de organismos da administração pública para fins privados nos últimos 12 meses (Série 2022 - %) por Local de residência e Tipo de problema encontrado; Anual - INE, Inquérito à utilização de TIC pelas famílias"
#> 
#> $Periodic
#> [1] "Anual"
#> 
#> $PrimeiroPeriodo
#> [1] "2022"
#> 
#> $UltimoPeriodo
#> [1] "2022"
#> 
#> $UnidadeMedida
#> [1] "Percentagem (%)"
#> 
#> $Potencia10
#> [1] "0"
#> 
#> $PrecisaoDecimal
#> [1] "1"
#> 
#> $Lingua
#> [1] "PT"
#> 
#> $DataUltimaAtualizacao
#> [1] "2023-05-18"
#> 
#> $DataExtracao
#> [1] "2023-09-07T14:17:14.911+01:00"
#>