diff --git a/mapping_protocols/empty_map_protocol.csv b/mapping_protocols/empty_map_protocol.csv new file mode 100644 index 0000000000000000000000000000000000000000..9991cbc49c8b135ba60cb305e46447585a2a4d68 --- /dev/null +++ b/mapping_protocols/empty_map_protocol.csv @@ -0,0 +1 @@ +Var.Lab,Novo Rótulo,Nome Banco,Tipo de Dado,2018 diff --git a/mapping_protocols/example_mapping_protocol.csv b/mapping_protocols/example_mapping_protocol.csv new file mode 100644 index 0000000000000000000000000000000000000000..1ea24862234a855d8b93dc2d95e14417db61145c --- /dev/null +++ b/mapping_protocols/example_mapping_protocol.csv @@ -0,0 +1,8 @@ +Var.Lab,Novo Rótulo,Nome Banco,Tipo de Dado,2016 +CODECOUNTRY,Code of the country,cod_country,VARCHAR(3),COUNTRY +NAMECOUNTRY,Name of the country,country_name,VARCHAR(32),Country +YEAR,Year,year,INT,Year +GRADUATIONRATES,Graduation rates represent an estimated percentage of an age group expected to graduate/enter a certain level of education at least once in their lifetime.,graduation_rate,DOUBLE,Value +ISCEDLEVEL,"Isced level, program in the format: L""X""_C""X""",isced,VARCHAR(5),ISC11_LEVEL_CAT +SEXCOD,"Code for the sex, F=Womam, M=Male",cod_sex,VARCHAR(1),SEX +SEXID,"Sex id, 0 = female 1 = male.",sex_id,TINYINT,"~CASE WHEN (""SEX"" = 'F') THEN 0 ELSE 1 END" diff --git a/table_definitions/example_table_definition.json b/table_definitions/example_table_definition.json new file mode 100644 index 0000000000000000000000000000000000000000..b30e72d61b2b56d110f5122f2800a24001009bbd --- /dev/null +++ b/table_definitions/example_table_definition.json @@ -0,0 +1,6 @@ + { + "pairing_description": "Table with the graduation rates, which represent a percentage of students expected to graduate, used to learn the HOTMapper Tool", + "data_source": "Organisation for Economic Co-operation and development", + "pk": ["cod_country", "year", "cod_sex", "isced"], + "foreign_keys": [] +}