In [ ]:
import psycopg2
import csv
import io
import sys
from urllib.request import Request
from urllib.request import urlopen
conn = psycopg2.connect(dbname="", user="", password="")
cur = conn.cursor()
cur.execute("""
select * from
(
select
jsonb_array_elements(metadata->'resources')->>'url' as url,
jsonb_array_elements(metadata->'resources')->>'identifier' as identifier,
jsonb_array_elements(metadata->'resources')->'schema' as schema,
jsonb_array_elements(metadata->'resources')->>'format' as resource_format
from package
) t where t.resource_format = 'CSV'
""")
data = cur.fetchall()
In [ ]:
def is_number(s):
try:
float(s)
return True
except ValueError:
return False
def create_column_str(columns_metadata):
columns = []
for column_metadata in columns_metadata:
col_name = column_metadata['name']
col_type = column_metadata['type']
if col_type == 'numeric' or col_type == 'text':
columns.append(col_name + ' ' + col_type)
elif col_type == 'datetime':
if column_metadata['format'] == 'YYYY-[H]H': # strange format, make it text
columns.append(col_name + ' ' + 'text')
else:
columns.append(col_name + ' ' + 'timestamp')
return '(' + ','.join(columns) + ')'
def create_table_name(id):
return 'table_' + id.replace('-','_')
def insert_table(table_name, columns_metadata, reader, cur):
for j, row in enumerate(reader):
if j > 0:
col_values = []
for i, column_metadata in enumerate(columns_metadata):
col_type = column_metadata['type']
col_data = row[i]
if col_type == 'datetime':
col_format = column_metadata['format']
if col_format == 'YYYY':
col_data += '-01-01'
elif col_format == 'YYYY-MM':
col_data += "-01"
col_data = "'" + col_data + "'"
elif col_type == 'text':
col_data = "'" + col_data + "'"
elif col_type == 'numeric' and not is_number(col_data):
col_data = "0" #this is very bad, fix me!
col_values.append(col_data)
sql = 'insert into ' + table_name + ' values (' + ','.join(col_values) + ')'
cur.execute(sql)
def access_resource(resource_url):
hdr = {'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.64 Safari/537.11',
'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
'Accept-Charset': 'ISO-8859-1,utf-8;q=0.7,*;q=0.3',
'Accept-Encoding': 'none',
'Accept-Language': 'en-US,en;q=0.8',
'Connection': 'keep-alive'}
req = Request(resource_url, headers=hdr)
response = urlopen(req).read().decode('utf-8')
return csv.reader(io.StringIO(response))
success = 0
failed = 0
for row in data[:10]:
url = row[0]
id = row[1]
columns_metadata = row[2]
table_name = create_table_name(id)
sql_str = "CREATE TABLE " + table_name + " " + create_column_str(columns_metadata)
drop_str = "DROP TABLE IF EXISTS " + table_name
print(sql_str)
cur.execute(drop_str)
cur.execute(sql_str)
reader = access_resource(url)
try:
insert_table(table_name, columns_metadata, reader, cur)
success += 1
except:
print("Unexpected error:", sys.exc_info()[0])
failed += 1
print('done!')
conn.commit()
cur.close()
conn.close()
In [196]:
conn.commit()
cur.close()
conn.close()
In [155]:
from datetime import datetime
datetime_object = datetime.strptime('2014-02','%Y-%m')
In [156]:
datetime_object
Out[156]:
datetime.datetime(2014, 2, 1, 0, 0)
In [197]:
success
Out[197]:
20
In [198]:
failed
Out[198]:
0
In [2]:
data
Out[2]:
[('https://storage.data.gov.sg/3g-public-cellular-mobile-telephone-services/resources/call-success-rate-2013-2016-2016-08-29T09-22-31Z.csv',
'c9f714db-cc3b-49ad-bb0f-302ba33505ee',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'telco', 'sub_type': 'general', 'title': 'Telco', 'type': 'text'},
{'name': 'success_rate',
'sub_type': 'general',
'title': 'Success Rate',
'type': 'numeric',
'unit_of_measure': 'Percentage'}],
'CSV'),
('https://storage.data.gov.sg/3g-public-cellular-mobile-telephone-services/resources/call-success-rate-2009-2011-2016-02-16T03-04-41Z.csv',
'e9ec02c5-f3fe-49ec-960c-f7c05acf536c',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'operators',
'sub_type': 'general',
'title': 'Operators',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'call_success_rate',
'sub_type': 'percentage',
'title': 'Call Success Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/3g-public-cellular-mobile-telephone-services/resources/call-success-rate-2007-2008-2016-02-16T03-05-22Z.csv',
'c195d04f-22d8-474f-83b8-8c2c3cb6131a',
[{'format': 'YYYY-[H]H',
'name': 'period',
'sub_type': 'half_year',
'title': 'Period',
'type': 'datetime'},
{'name': 'operators',
'sub_type': 'general',
'title': 'Operators',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'call_success_rate',
'sub_type': 'percentage',
'title': 'Call Success Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/3g-public-cellular-mobile-telephone-services-average-drop-call-rate/resources/3g-public-cellular-mobile-telephone-services-average-drop-call-rate-2016-08-29T09-21-29Z.csv',
'b0f5648c-af96-4fee-a8fb-de7f9580d050',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'telco', 'sub_type': 'general', 'title': 'Telco', 'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'drop_call_rate',
'sub_type': 'percentage',
'title': 'Drop Call Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/3g-public-cellular-mobile-telephone-services-nation-wide-service-coverage/resources/3g-public-cellular-mobile-telephone-services-nation-wide-service-coverage-2016-08-29T09-23-24Z.csv',
'c7f2dc9d-a1b8-4fca-99fa-91a4ade199d4',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'telco', 'sub_type': 'general', 'title': 'Telco', 'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'service_coverage',
'sub_type': 'percentage',
'title': 'Service Coverage',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/annual-motorcycle-population-by-cc-rating/resources/annual-motorcycle-population-by-cc-rating-2017-01-23T14-21-46Z.csv',
'b4e18b7c-98fa-4c3b-a525-8139de1debeb',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'cc_rating',
'sub_type': 'general',
'title': 'CC Rating',
'type': 'text'},
{'name': 'number',
'sub_type': 'general',
'title': 'Number',
'type': 'numeric',
'unit_of_measure': 'Number of Motorcycles'}],
'CSV'),
('https://storage.data.gov.sg/annual-motorcycle-population-by-make/resources/all-motorcycles-including-scooters-registered-in-singapore-figures-include-all-road-tax-e-2017-01-23T14-26-45Z.csv',
'817d2cd2-8531-433a-b048-e0543b6fda7a',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'make', 'sub_type': 'general', 'title': 'Make', 'type': 'text'},
{'name': 'number',
'sub_type': 'general',
'title': 'Number',
'type': 'numeric',
'unit_of_measure': 'Number of Motorcycles'}],
'CSV'),
('https://storage.data.gov.sg/annual-motor-vehicle-inspection-passing-rate-of-motor-vehicles-on-first-inspection/resources/annual-motor-vehicle-inspection-passing-rate-of-motor-vehicles-on-first-inspection-2017-04-11T01-46-30Z.csv',
'd0efb5d7-9348-41d8-9acf-ddbadca8fb22',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'type',
'sub_type': 'general',
'title': 'Vehicle Type',
'type': 'text'},
{'name': 'age', 'sub_type': 'general', 'title': 'Age', 'type': 'text'},
{'name': 'number_reported',
'sub_type': 'general',
'title': 'Reported',
'type': 'numeric',
'unit_of_measure': 'No. of Vehicles'},
{'name': 'number_passed',
'sub_type': 'general',
'title': 'Passed',
'type': 'numeric',
'unit_of_measure': 'No. of Vehicles'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'passing_rate',
'sub_type': 'percentage',
'title': 'Passing Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/annual-motor-vehicle-population-by-type-of-fuel-used/resources/annual-motor-vehicle-population-by-type-of-fuel-used-2017-01-24T01-13-53Z.csv',
'39e17d4c-3bd3-4814-9ae7-bf9df39a2f5d',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'type', 'sub_type': 'general', 'title': 'Type', 'type': 'text'},
{'name': 'engine',
'sub_type': 'general',
'title': 'Engine',
'type': 'text'},
{'name': 'number',
'sub_type': 'general',
'title': 'Number',
'type': 'numeric',
'unit_of_measure': 'Number of Vehicles'}],
'CSV'),
('https://storage.data.gov.sg/annual-motor-vehicle-population-by-type-of-vehicles/resources/motor-vehicle-population-by-type-of-vehicle-end-of-period-annual-2016-02-13T08-01-53Z.csv',
'31ca0cee-6d9e-453a-8b4f-376d37713a10',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'type_of_vehicle',
'sub_type': 'general',
'title': 'Type Of Vehicle',
'type': 'text'},
{'description': '"-" : Data is negligible or not significant',
'name': 'no_of_vehicles_on_register',
'sub_type': 'general',
'title': 'No. Of Vehicles On Register',
'type': 'numeric',
'unit_of_measure': 'No. Of Vehicles'}],
'CSV'),
('https://storage.data.gov.sg/annual-motor-vehicle-population-by-type-of-vehicles/resources/annual-motor-vehicle-population-end-of-period-2016-02-13T08-04-07Z.csv',
'def5fdec-5cc3-4213-9e6e-56a4d36c5673',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'no_of_motor_vehicles_on_register',
'sub_type': 'general',
'title': 'No. Of Motor Vehicles On Register',
'type': 'numeric',
'unit_of_measure': 'No. of Vehicles'}],
'CSV'),
('https://data.gov.sg/dataset/2561a30e-6d75-4a9d-b8cd-16f89ddc0cf9/resource/93430d5e-903c-4402-8343-8a260f4f4354/download/annual-motor-vehicle-population-by-vehicle-quota-categories.csv',
'93430d5e-903c-4402-8343-8a260f4f4354',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'category',
'sub_type': 'general',
'title': 'Category',
'type': 'text'},
{'name': 'number',
'sub_type': 'general',
'title': 'No. of Vehicles',
'type': 'numeric',
'unit_of_measure': 'No. of Vehicles'}],
'CSV'),
('https://storage.data.gov.sg/annual-motor-vehicle-population-by-vehicle-type/resources/annual-motor-vehicle-population-by-vehicle-type-2017-04-11T01-42-11Z.csv',
'dec53407-9f97-47b8-ba89-b2070569a09e',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'category',
'sub_type': 'general',
'title': 'Category',
'type': 'text'},
{'name': 'type', 'sub_type': 'general', 'title': 'Type', 'type': 'text'},
{'name': 'number',
'sub_type': 'general',
'title': 'No. of Vehicles',
'type': 'numeric',
'unit_of_measure': 'No. of Vehicles'}],
'CSV'),
('https://storage.data.gov.sg/annual-motor-vehicles-de-registered-by-vehicle-quota-categories/resources/motor-vehicle-de-registration-under-vehicle-quota-system-vqs-2017-01-31T08-03-21Z.csv',
'78c56d0e-1a88-4c13-b13f-8ccf5ed65249',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'category',
'sub_type': 'general',
'title': 'Category',
'type': 'text'},
{'name': 'number',
'sub_type': 'general',
'title': 'Number of Vehicles',
'type': 'numeric',
'unit_of_measure': 'Number of Vehicles'}],
'CSV'),
('https://storage.data.gov.sg/annual-new-registration-of-motorcycles-by-make/resources/annual-new-registration-of-motorcycles-by-make-2017-01-23T07-13-11Z.csv',
'3bb9a74b-00d2-4be9-82c9-d348f4cbee2d',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'make', 'sub_type': 'general', 'title': 'Make', 'type': 'text'},
{'name': 'number',
'sub_type': 'general',
'title': 'Number',
'type': 'numeric',
'unit_of_measure': 'No. of New Registrations'}],
'CSV'),
('https://data.gov.sg/dataset/0d27545d-bb83-41ee-8a85-bbeae39a7e3a/resource/3fcc2131-28e4-40bb-9e92-680d0282399e/download/total-annual-new-registration-by-make.csv',
'3fcc2131-28e4-40bb-9e92-680d0282399e',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'make', 'sub_type': 'general', 'title': 'Make', 'type': 'text'},
{'name': 'number',
'sub_type': 'general',
'title': 'No. of New Registrations',
'type': 'numeric',
'unit_of_measure': 'No. of Vehicles'}],
'CSV'),
('https://storage.data.gov.sg/annual-new-registrations-of-goods-vehicles-and-buses-by-make/resources/total-annual-new-registration-of-buses-by-make-2017-01-31T06-54-22Z.csv',
'935ddcff-86a8-4f3f-a5a2-42ebef7d179d',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'make', 'sub_type': 'general', 'title': 'Make', 'type': 'text'},
{'name': 'number',
'sub_type': 'general',
'title': 'No. of Vehicles',
'type': 'numeric',
'unit_of_measure': 'No. of Vehicles'}],
'CSV'),
('https://storage.data.gov.sg/annual-new-registrations-of-goods-vehicles-and-buses-by-make/resources/total-annual-new-registration-of-goods-vehicles-gvs-by-make-2017-01-31T06-44-04Z.csv',
'10b6acde-9110-4abc-8cb1-9e7a0e51332e',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'make', 'sub_type': 'general', 'title': 'Make', 'type': 'text'},
{'name': 'number',
'sub_type': 'general',
'title': 'No. of Vehicles',
'type': 'numeric',
'unit_of_measure': 'No. of Vehicles'}],
'CSV'),
('https://storage.data.gov.sg/annual-new-registrations-of-motor-vehicles-by-vehicle-quota-category/resources/new-registration-of-motor-vehicles-under-vehicle-quota-system-vqs-2017-01-23T07-09-19Z.csv',
'c06a7521-0efb-4e7e-84f0-4a9db7dd03fe',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'category',
'sub_type': 'general',
'title': 'Category',
'type': 'text'},
{'name': 'number',
'sub_type': 'general',
'title': 'Number',
'type': 'numeric',
'unit_of_measure': 'No. of New Registrations'}],
'CSV'),
('https://storage.data.gov.sg/annual-revalidation-of-coe-of-existing-vehicles/resources/annual-revalidation-of-certificate-of-entitlement-coe-of-existing-vehicles-2017-03-06T10-28-19Z.csv',
'8607dc44-6eb7-43c8-a666-240b186d3eeb',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'type', 'sub_type': 'general', 'title': 'Type', 'type': 'text'},
{'name': 'category',
'sub_type': 'general',
'title': 'Category',
'type': 'text'},
{'name': 'number',
'sub_type': 'general',
'title': 'Revalidations',
'type': 'numeric',
'unit_of_measure': 'No. of Revalidations'}],
'CSV'),
('https://storage.data.gov.sg/annual-type-and-number-of-vehicles-transferred/resources/annual-type-and-number-of-motor-vehicles-transferred-2017-04-11T01-37-09Z.csv',
'e45d605c-0737-49b3-87d7-d8acc1d7b362',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'vehicle_type',
'sub_type': 'general',
'title': 'Vehicle Type',
'type': 'text'},
{'name': 'number',
'sub_type': 'general',
'title': 'No. of Vehicles',
'type': 'numeric',
'unit_of_measure': 'No. of Vehicles'}],
'CSV'),
('https://storage.data.gov.sg/annual-value-and-property-tax-by-property-type-annual/resources/annual-value-and-property-tax-by-property-type-2016-10-03T00-15-46Z.csv',
'ea3ae22f-a84f-4951-b86b-2ef6ccc3f541',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'name': 'property_type',
'sub_type': 'general',
'title': 'Type of Property',
'type': 'text'},
{'name': 'no_of_cases',
'sub_type': 'general',
'title': 'No. of Cases',
'type': 'numeric',
'unit_of_measure': 'Count'},
{'description': ['With effect from FY2012/13, total Annual Value has been replaced with median Annual Value.',
'"na" : Data not available or not applicable'],
'name': 'annual_value',
'sub_type': 'general',
'title': 'Annual Value',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'},
{'description': ['With effect from FY2012/13, total Annual Value has been replaced with median Annual Value.',
'"na" : Data not available or not applicable'],
'name': 'median_annual_value',
'sub_type': 'general',
'title': 'Median Annual Value',
'type': 'numeric',
'unit_of_measure': 'S$'},
{'name': 'property_tax_collection',
'sub_type': 'general',
'title': 'Property Tax Collection',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'}],
'CSV'),
('https://storage.data.gov.sg/annual-value-and-property-tax-by-property-type-annual/resources/median-annual-value-and-property-tax-by-type-of-hdb-2016-10-03T00-17-50Z.csv',
'48520cf7-bbcd-4824-8ce0-93f5f9794672',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'name': 'type_of_hdb',
'sub_type': 'general',
'title': 'Type of HDB',
'type': 'text'},
{'name': 'no_of_cases',
'sub_type': 'general',
'title': 'No. of Cases',
'type': 'numeric',
'unit_of_measure': 'Count'},
{'name': 'median_annual_value',
'sub_type': 'general',
'title': 'Median Annual Value',
'type': 'numeric',
'unit_of_measure': 'S$'},
{'name': 'property_tax_collection',
'sub_type': 'general',
'title': 'Property Tax Collection',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'}],
'CSV'),
('https://storage.data.gov.sg/annual-value-and-property-tax-by-property-type-annual/resources/median-annual-value-and-property-tax-by-type-of-private-residential-property-2016-10-03T00-19-41Z.csv',
'b617ceed-08d0-4278-9ce5-730878bc3053',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'name': 'type_of_private_residential',
'sub_type': 'general',
'title': 'Type of Private Residential Property',
'type': 'text'},
{'name': 'no_of_cases',
'sub_type': 'general',
'title': 'No. of Cases',
'type': 'numeric',
'unit_of_measure': 'Count'},
{'name': 'median_annual_value',
'sub_type': 'general',
'title': 'Median Annual Value',
'type': 'numeric',
'unit_of_measure': 'S$'},
{'name': 'property_tax_collection',
'sub_type': 'general',
'title': 'Property Tax Collection',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'}],
'CSV'),
('https://storage.data.gov.sg/annulments-under-the-women-s-charter-by-age-group-of-wives-and-husbands-annual/resources/annulments-under-the-womens-charter-by-age-group-of-wives-2016-08-04T05-49-20Z.csv',
'bca703e8-f436-44d7-bede-860c37edaae4',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Age Group of Wives',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Number of Marriages Annulled',
'type': 'numeric',
'unit_of_measure': 'Number of Marriages Annulled'}],
'CSV'),
('https://storage.data.gov.sg/annulments-under-the-women-s-charter-by-age-group-of-wives-and-husbands-annual/resources/annulments-under-the-womens-charter-by-age-group-of-wives-and-husbands-2016-08-04T05-49-23Z.csv',
'9f257f4c-8a5c-4337-99bf-e01be9745ccc',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Age Group of Wives',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Age Group of Husbands',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Number of Marriages Annulled',
'type': 'numeric',
'unit_of_measure': 'Number of Marriages Annulled'}],
'CSV'),
('https://storage.data.gov.sg/annulments-under-the-women-s-charter-by-spouse-and-age-group-annual/resources/annulments-under-the-womens-charter-by-spouse-2016-07-19T01-06-43Z.csv',
'4bd6969a-f5a2-48c5-9022-d98438ae33f4',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Spouse',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Number of Marriages Annulled',
'type': 'numeric',
'unit_of_measure': 'Number of Marriages Annulled'}],
'CSV'),
('https://storage.data.gov.sg/annulments-under-the-women-s-charter-by-spouse-and-age-group-annual/resources/median-age-at-annulment-by-spouse-among-annulments-under-the-womens-charter-2016-07-19T01-06-45Z.csv',
'd1369387-14d2-45ae-9043-efcd725d5e71',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Spouse',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Median Age at Annulment',
'type': 'numeric',
'unit_of_measure': 'Years'}],
'CSV'),
('https://storage.data.gov.sg/annulments-under-the-women-s-charter-by-spouse-and-age-group-annual/resources/annulments-under-the-womens-charter-by-spouse-and-age-group-2016-07-19T01-06-47Z.csv',
'01941969-2151-4922-abef-b871321032b9',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Spouse ',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Age Group',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Number of Marriages Annulled',
'type': 'numeric',
'unit_of_measure': 'Number of Marriages Annulled'}],
'CSV'),
('https://storage.data.gov.sg/anonymised-building-energy-performance-data/resources/listing-of-anonymised-building-energy-performance-data-for-commercial-buildings-annual-2016-09-06T06-30-59Z.csv',
'87358d10-62e2-456d-ac8a-ec7c29b5c8e2',
[{'description': 'Reference Year for Data',
'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'description': 'Commercial Buildings (Office Building, Hotel, Retail Building, Mixed Development)',
'name': 'building_type',
'sub_type': 'general',
'title': 'Building Type',
'type': 'text'},
{'description': 'Energy Use Intensity of building',
'name': 'eui',
'sub_type': 'general',
'title': 'EUI',
'type': 'numeric',
'unit_of_measure': 'kWh/sq m per Year'},
{'description': ['Yes – Green Mark building; ',
'No – non-Green Mark building'],
'name': 'green_mark_status',
'sub_type': 'general',
'title': 'Green Mark Status',
'type': 'text'},
{'description': ['Large Size Commercial Buildings: ',
'i)\tOffice Building, Retail Building, and Mixed Development - GFA >= 15,000 m2',
'ii)\tHotel - GFA >= 7,000 m2',
'',
'Small Size Commercial Buildings:: ',
'i)\tOffice Building, Retail Building, and Mixed Development - GFA < 15,000 m2',
'ii)\tHotel - GFA < 7,000 m2'],
'name': 'building_size',
'sub_type': 'general',
'title': 'Building Size',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/applications-received-to-finance-purchases-or-refinance-existing-mortgage-loans-with-bank-loans/resources/applications-received-to-finance-purchases-refinance-mortgage-loan-with-bank-loans-2016-10-31T08-30-54Z.csv',
'190a43f4-e5f7-4a64-b071-f6352329ce4d',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'description': 'New flats refers to new HDB flats excluding DBSS flats sold by private developers. ',
'name': 'application_type',
'sub_type': 'general',
'title': 'Application Type',
'type': 'text'},
{'name': 'no_of_applications',
'sub_type': 'general',
'title': 'Number of Applications',
'type': 'numeric',
'unit_of_measure': 'Number of Applications'}],
'CSV'),
('https://storage.data.gov.sg/application-with-bank-loan/resources/application-with-bank-loan-2016-11-07T06-44-02Z.csv',
'79b5d8c3-aa39-402a-8160-f1904192b5e7',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'name': 'category',
'sub_type': 'general',
'title': 'Category',
'type': 'text'},
{'name': 'no_of_applications',
'sub_type': 'general',
'title': 'No. Of Applications',
'type': 'numeric',
'unit_of_measure': 'No. of Applications'}],
'CSV'),
('https://storage.data.gov.sg/approval-construction-commencement-and-completion-of-commercial-and-industrial-developments/resources/approval-construction-commencement-completion-of-commercial-industrial-quarterly-2016-02-22T00-56-13Z.csv',
'44462b89-decd-41a2-8611-67611a0ba3b2',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'type_of_space',
'sub_type': 'general',
'title': 'Type Of Space',
'type': 'text'},
{'name': 'provisional_permission',
'sub_type': 'general',
'title': 'Provisional Permission',
'type': 'numeric',
'unit_of_measure': 'Thousand Sq m gross'},
{'name': 'written_permission',
'sub_type': 'general',
'title': 'Written Permission',
'type': 'numeric',
'unit_of_measure': 'Thousand Sq m gross'},
{'name': 'building_plan_approval',
'sub_type': 'general',
'title': 'Building Plan Approval',
'type': 'numeric',
'unit_of_measure': 'Thousand Sq m gross'},
{'name': 'building_commencement',
'sub_type': 'general',
'title': 'Building Commencement',
'type': 'numeric',
'unit_of_measure': 'Thousand Sq m gross'},
{'name': 'building_completion',
'sub_type': 'general',
'title': 'Building Completion',
'type': 'numeric',
'unit_of_measure': 'Thousand Sq m gross'}],
'CSV'),
('https://storage.data.gov.sg/approval-construction-commencement-and-completion-of-commercial-and-industrial-developments/resources/approval-construction-commencement-completion-of-commercial-industrial-annual-2016-02-22T00-57-18Z.csv',
'5f79efab-4d78-4093-bea8-c66af88c4e13',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'type_of_space',
'sub_type': 'general',
'title': 'Type Of Space',
'type': 'text'},
{'name': 'provisional_permission',
'sub_type': 'general',
'title': 'Provisional Permission',
'type': 'numeric',
'unit_of_measure': 'Thousand Sq m gross'},
{'name': 'written_permission',
'sub_type': 'general',
'title': 'Written Permission',
'type': 'numeric',
'unit_of_measure': 'Thousand Sq m gross'},
{'name': 'building_plan_approval',
'sub_type': 'general',
'title': 'Building Plan Approval',
'type': 'numeric',
'unit_of_measure': 'Thousand Sq m gross'},
{'name': 'building_commencement',
'sub_type': 'general',
'title': 'Building Commencement',
'type': 'numeric',
'unit_of_measure': 'Thousand Sq m gross'},
{'name': 'building_completion',
'sub_type': 'general',
'title': 'Building Completion',
'type': 'numeric',
'unit_of_measure': 'Thousand Sq m gross'}],
'CSV'),
('https://storage.data.gov.sg/approval-construction-commencement-and-completion-of-private-residential-properties/resources/approval-construction-commencement-completion-of-private-residential-quarterly-2016-02-17T16-41-18Z.csv',
'ce12ba22-1940-49fe-9fd1-a077cd19f3cb',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'provisional_permission',
'sub_type': 'general',
'title': 'Provisional Permission',
'type': 'numeric',
'unit_of_measure': 'No. of Units'},
{'name': 'written_permission',
'sub_type': 'general',
'title': 'Written Permission',
'type': 'numeric',
'unit_of_measure': 'No. of Units'},
{'name': 'building_plan_approval',
'sub_type': 'general',
'title': 'Building Plan Approval',
'type': 'numeric',
'unit_of_measure': 'No. of Units'},
{'name': 'building_commencement',
'sub_type': 'general',
'title': 'Building Commencement',
'type': 'numeric',
'unit_of_measure': 'No. of Units'},
{'name': 'building_completion',
'sub_type': 'general',
'title': 'Building Completion',
'type': 'numeric',
'unit_of_measure': 'No. of Units'}],
'CSV'),
('https://storage.data.gov.sg/approval-construction-commencement-and-completion-of-private-residential-properties/resources/approval-construction-commencement-completion-of-private-residential-properties-annual-2016-02-17T16-39-34Z.csv',
'b6049a1f-17c3-45af-b015-8de6146da56b',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'provisional_permission',
'sub_type': 'general',
'title': 'Provisional Permission',
'type': 'numeric',
'unit_of_measure': 'No. of Units'},
{'name': 'written_permission',
'sub_type': 'general',
'title': 'Written Permission',
'type': 'numeric',
'unit_of_measure': 'No. of Units'},
{'name': 'building_plan_approval',
'sub_type': 'general',
'title': 'Building Plan Approval',
'type': 'numeric',
'unit_of_measure': 'No. of Units'},
{'name': 'building_commencement',
'sub_type': 'general',
'title': 'Building Commencement',
'type': 'numeric',
'unit_of_measure': 'No. of Units'},
{'name': 'building_completion',
'sub_type': 'general',
'title': 'Building Completion',
'type': 'numeric',
'unit_of_measure': 'No. of Units'}],
'CSV'),
('https://storage.data.gov.sg/arts-classification-database/resources/arts-classification-database-2016-02-25T09-02-50Z.csv',
'46c8d1c9-99f5-496a-91a0-11b62fbd2e0a',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Classification Year',
'type': 'datetime'},
{'name': 'title', 'sub_type': 'general', 'title': 'Title', 'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'company_name',
'sub_type': 'general',
'title': 'Company Name',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'language',
'sub_type': 'general',
'title': 'Language',
'type': 'text'},
{'name': 'event_type',
'sub_type': 'general',
'title': 'Event Type',
'type': 'text'},
{'format': 'YYYY-MM-DD',
'name': 'performance_start_date',
'sub_type': 'date',
'title': 'Performance Start Date',
'type': 'datetime'},
{'format': 'YYYY-MM-DD',
'name': 'performance_end_date',
'sub_type': 'date',
'title': 'Performance End Date',
'type': 'datetime'},
{'description': '"na" : Data not available or not applicable',
'name': 'venue_block_number',
'sub_type': 'general',
'title': 'Venue Block Number',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'venue_street_name',
'sub_type': 'general',
'title': 'Venue Street Name',
'type': 'text'},
{'description': ['"na" : Data not available or not applicable',
'"-" : Data is negligible or not significant'],
'name': 'venue_floor_number',
'sub_type': 'general',
'title': 'Venue Floor Number',
'type': 'text'},
{'name': 'venue_unit_number',
'sub_type': 'general',
'title': 'Venue Unit Number',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'venue_building_name',
'sub_type': 'general',
'title': 'Venue Building Name',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'unformatted_address_firstline',
'sub_type': 'general',
'title': 'Unformatted Address Firstline',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'unformatted_address_secondline',
'sub_type': 'general',
'title': 'Unformatted Address Secondline',
'type': 'text'},
{'name': 'synopsis',
'sub_type': 'general',
'title': 'Synopsis',
'type': 'text'},
{'name': 'rating_decision',
'sub_type': 'general',
'title': 'Rating Decision',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'consumer_advice',
'sub_type': 'general',
'title': 'Consumer Advice',
'type': 'text'},
{'format': 'YYYY-MM-DD',
'name': 'issued_date',
'sub_type': 'date',
'title': 'Issued Date',
'type': 'datetime'}],
'CSV'),
('https://storage.data.gov.sg/assault-rate/resources/assault-rate-2017-02-27T09-05-01Z.csv',
'05f9bf37-8a34-46fe-a5ea-2dd66e1d2d04',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'assault_rate_per_10000_inmates',
'sub_type': 'general',
'title': 'Assault Rate Per 10000 Inmates',
'type': 'numeric',
'unit_of_measure': 'Cases per 10000 inmates'}],
'CSV'),
('https://storage.data.gov.sg/attendances-at-accident-emergency-departments-specialist-outpatient-clinics-and-polyclinics/resources/outpatient-attendances-a-e-socs-polyclinics-dental-2016-07-07T03-23-06Z.csv',
'fb781ab7-8e69-434e-b273-3afcc70e41fe',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'type', 'sub_type': 'general', 'title': 'Type', 'type': 'text'},
{'name': 'count',
'sub_type': 'general',
'title': 'Count',
'type': 'numeric',
'unit_of_measure': 'Attendances'}],
'CSV'),
('https://storage.data.gov.sg/attendances-at-cinemas-and-visitors-to-places-of-interest-monthly/resources/attendances-at-cinemas-and-visitors-to-places-of-interest-monthly-2016-06-01T04-00-37Z.csv',
'583792d9-f629-477c-9313-6659cca65cdb',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Cinemas or Place of Interest',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'value',
'sub_type': 'general',
'title': 'Number of Visits',
'type': 'numeric',
'unit_of_measure': 'Number of Visits'}],
'CSV'),
('https://storage.data.gov.sg/attendances-at-community-day-care-facilities/resources/attendances-at-community-facilities-2016-07-07T03-47-39Z.csv',
'0f6a0127-f15f-4391-999b-9147c5054938',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'type', 'sub_type': 'general', 'title': 'Type', 'type': 'text'},
{'name': 'count',
'sub_type': 'general',
'title': 'No. of Attendances',
'type': 'numeric',
'unit_of_measure': 'No. of Attendances'}],
'CSV'),
('https://storage.data.gov.sg/availability-of-selected-consumer-durables-service-quinquennial/resources/availability-of-selected-consumer-durables-service-quinquennial-2016-06-17T02-56-06Z.csv',
'b7977127-e0ae-4bcf-9234-d0def6555afd',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Consumer Durables/Service',
'type': 'text'},
{'description': ['Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'"na" : Data not available or not applicable'],
'name': 'value',
'sub_type': 'percentage',
'title': 'Proportion of Households',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/available-and-vacant-commercial-and-industrial-properties/resources/available-and-vacant-commercial-and-industrial-properties-annually-2016-02-17T16-58-29Z.csv',
'ab539253-1c4e-4804-aadc-a8a0d5ee6f5a',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'sector',
'sub_type': 'general',
'title': 'Sector',
'type': 'text'},
{'name': 'type_of_space',
'sub_type': 'general',
'title': 'Type Of Space',
'type': 'text'},
{'name': 'availability',
'sub_type': 'general',
'title': 'Availability',
'type': 'text'},
{'name': 'amount_of_space',
'sub_type': 'general',
'title': 'Amount Of Space',
'type': 'numeric',
'unit_of_measure': 'Thousand sq m nett\t'}],
'CSV'),
('https://storage.data.gov.sg/available-and-vacant-commercial-and-industrial-properties/resources/available-and-vacant-commercial-and-industrial-properties-quarterly-2016-02-17T17-18-55Z.csv',
'3d6d31ad-3cad-46a9-be7f-debc98fad580',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'sector',
'sub_type': 'general',
'title': 'Sector',
'type': 'text'},
{'name': 'type_of_space',
'sub_type': 'general',
'title': 'Type Of Space',
'type': 'text'},
{'name': 'availability',
'sub_type': 'general',
'title': 'Availability',
'type': 'text'},
{'name': 'amount_of_space',
'sub_type': 'general',
'title': 'Amount Of Space',
'type': 'numeric',
'unit_of_measure': 'Thousand sq m nett\t'}],
'CSV'),
('https://storage.data.gov.sg/available-and-vacant-executive-condominiums/resources/available-and-vacant-executive-condominiums-quarterly-2016-02-17T17-30-29Z.csv',
'7fe2cb72-216b-479b-b74e-9a3231aa9644',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'availability',
'sub_type': 'general',
'title': 'Availability',
'type': 'text'},
{'name': 'no_of_units',
'sub_type': 'general',
'title': 'No. Of Units',
'type': 'numeric',
'unit_of_measure': 'No. Of Units'}],
'CSV'),
('https://storage.data.gov.sg/available-and-vacant-executive-condominiums/resources/available-and-vacant-executive-condominiums-annually-2016-02-17T17-28-43Z.csv',
'a630a692-3f00-4e82-ab96-ec0fcf320d41',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'availability',
'sub_type': 'general',
'title': 'Availability',
'type': 'text'},
{'name': 'no_of_units',
'sub_type': 'general',
'title': 'No. Of Units',
'type': 'numeric',
'unit_of_measure': 'No. Of Units'}],
'CSV'),
('https://storage.data.gov.sg/available-and-vacant-private-residential-properties/resources/available-and-vacant-private-residential-properties-annual-2016-02-17T16-49-08Z.csv',
'476b90b2-884e-49f6-856d-bfba2ba77e9e',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'type_of_property',
'sub_type': 'general',
'title': 'Type Of Property',
'type': 'text'},
{'name': 'availability',
'sub_type': 'general',
'title': 'Availability',
'type': 'text'},
{'name': 'no_of_private_residential_properties',
'sub_type': 'general',
'title': 'No. Of Private Residential Properties',
'type': 'numeric',
'unit_of_measure': 'No. Of Private Residential Properties'}],
'CSV'),
('https://storage.data.gov.sg/available-and-vacant-private-residential-properties/resources/available-and-vacant-private-residential-properties-quarterly-2016-02-17T16-53-14Z.csv',
'51b4a66e-1f95-453e-9206-f6314e7cb1bc',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'type_of_property',
'sub_type': 'general',
'title': 'Type Of Property',
'type': 'text'},
{'name': 'availability',
'sub_type': 'general',
'title': 'Availability',
'type': 'text'},
{'name': 'no_of_private_residential_properties',
'sub_type': 'general',
'title': 'No. Of Private Residential Properties',
'type': 'numeric',
'unit_of_measure': 'No. Of Private Residential Properties'}],
'CSV'),
('https://storage.data.gov.sg/average-and-median-size-of-hdb-households-by-ethnic-group-and-flat-type/resources/average-and-median-size-of-hdb-households-by-ethnic-group-2017-03-13T05-51-58Z.csv',
'a7255682-4c18-49e5-b820-80f014be8b30',
[{'format': 'YYYY',
'name': 'shs_year',
'sub_type': 'year',
'title': 'SHS Year',
'type': 'datetime'},
{'name': 'ethnic_group',
'sub_type': 'general',
'title': 'Ethnic Group',
'type': 'text'},
{'name': 'average_size',
'sub_type': 'general',
'title': 'Average Size',
'type': 'numeric',
'unit_of_measure': 'No. of Persons'},
{'name': 'median_size',
'sub_type': 'general',
'title': 'Median Size',
'type': 'numeric',
'unit_of_measure': 'No. of Persons'}],
'CSV'),
('https://storage.data.gov.sg/average-and-median-size-of-hdb-households-by-ethnic-group-and-flat-type/resources/average-and-median-size-of-hdb-households-by-flat-type-2017-05-05T07-34-07Z.csv',
'2d7665f6-a6ad-4ff1-bdea-e583180e5d86',
[{'format': 'YYYY',
'name': 'shs_year',
'sub_type': 'year',
'title': 'SHS Year',
'type': 'datetime'},
{'name': 'flat_type',
'sub_type': 'general',
'title': 'Flat Type',
'type': 'text'},
{'name': 'average_size',
'sub_type': 'general',
'title': 'Average Size',
'type': 'numeric',
'unit_of_measure': 'No. of Persons'},
{'name': 'median_size',
'sub_type': 'general',
'title': 'Median Size',
'type': 'numeric',
'unit_of_measure': 'No. of Persons'}],
'CSV'),
('https://storage.data.gov.sg/average-and-median-size-of-hdb-households-by-ethnic-group-and-flat-type/resources/household-size-by-ethnic-group-2017-05-05T07-34-20Z.csv',
'7a26fc9a-f660-4a71-a5af-ad0f0c2b6383',
[{'format': 'YYYY',
'name': 'shs_year',
'sub_type': 'year',
'title': 'SHS Year',
'type': 'datetime'},
{'name': 'ethnic_group',
'sub_type': 'general',
'title': 'Ethnic Group',
'type': 'text'},
{'name': 'household_size',
'sub_type': 'general',
'title': 'Household Size',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'percentage',
'sub_type': 'percentage',
'title': 'Percentage',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/average-and-median-size-of-hdb-households-by-ethnic-group-and-flat-type/resources/household-size-by-flat-type-2017-05-05T07-34-34Z.csv',
'77eeac11-9988-47f6-b426-4c33224a60f8',
[{'format': 'YYYY',
'name': 'shs_year',
'sub_type': 'year',
'title': 'SHS Year',
'type': 'datetime'},
{'name': 'flat_type',
'sub_type': 'general',
'title': 'Flat Type',
'type': 'text'},
{'name': 'household_size',
'sub_type': 'general',
'title': 'Household Size',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'percentage',
'sub_type': 'percentage',
'title': 'Percentage',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/average-daily-polyclinic-attendances-selected-diseases/resources/average-daily-polyclinic-attendances-for-selected-diseases-2017-04-30T07-40-32Z.csv',
'dd4dcaac-aa8d-49de-a96a-b809f8d3ae0d',
[{'description': 'Each epidemiological week begins on a Sunday and ends on Saturday. ',
'name': 'epi_week',
'sub_type': 'general',
'title': 'Epi week',
'type': 'text'},
{'name': 'disease',
'sub_type': 'general',
'title': 'Disease',
'type': 'text'},
{'description': 'Average Daily Polyclinic Attendances ',
'name': 'no._of_cases',
'sub_type': 'general',
'title': 'No. of Cases',
'type': 'numeric',
'unit_of_measure': 'No. of Cases'}],
'CSV'),
('https://storage.data.gov.sg/average-hospital-inpatient-bill-size/resources/average-hospital-inpatient-bill-size-2016-09-26T07-33-30Z.csv',
'2ead0222-fe15-4d52-9eb1-ca4c411ed0ff',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'specialty',
'sub_type': 'general',
'title': 'Specialty',
'type': 'text'},
{'name': 'sector',
'sub_type': 'general',
'title': 'Sector',
'type': 'text'},
{'name': 'ward_class',
'sub_type': 'general',
'title': 'Ward Class',
'type': 'text'},
{'name': 'hospital',
'sub_type': 'general',
'title': 'Hospital',
'type': 'text'},
{'description': 'Total amount of inpatient bills divided by total number of days stayed in hospital. Day surgery bills are not included.',
'name': 'average_per_day',
'sub_type': 'general',
'title': 'Average Per Day',
'type': 'numeric',
'unit_of_measure': 'S$'},
{'name': 'average_total_bill',
'sub_type': 'general',
'title': 'Average Total Bill',
'type': 'numeric',
'unit_of_measure': 'S$'},
{'name': 'total_bill_at_90p',
'sub_type': 'general',
'title': 'Total Bill at 90 Percentile',
'type': 'numeric',
'unit_of_measure': 'S$'},
{'name': 'total_bill_at_95p',
'sub_type': 'general',
'title': 'Total Bill at 95 Percentile',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/average-monthly-household-expenditure-by-household-size-and-type-of-dwelling-quinquennial/resources/average-monthly-household-expenditure-by-household-size-and-type-of-dwelling-2016-08-01T06-38-55Z.csv',
'4781ccc4-c8ca-4a44-bd38-f668a4a6e773',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Type of Dwelling',
'type': 'text'},
{'name': 'level_2a',
'sub_type': 'general',
'title': 'Household Size',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Average Monthly Household Expenditure',
'type': 'numeric',
'unit_of_measure': 'S$ Dollar'}],
'CSV'),
('https://storage.data.gov.sg/average-monthly-household-expenditure-by-household-size-and-type-of-dwelling-quinquennial/resources/average-household-size-by-type-of-dwelling-2016-08-01T06-39-55Z.csv',
'9775a685-37cb-4ec8-b2af-cc76fe502b57',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Type of Dwelling',
'type': 'text'},
{'name': 'level_2b', 'sub_type': 'general', 'title': 'All', 'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Average Household Size',
'type': 'numeric',
'unit_of_measure': 'Number of persons'}],
'CSV'),
('https://storage.data.gov.sg/average-monthly-household-expenditure-by-income-quintile-and-type-of-dwelling-quinquennial/resources/average-monthly-household-expenditure-by-income-quintile-and-type-of-dwelling-2016-08-01T06-30-42Z.csv',
'012791ce-2db8-44fa-833f-fe308be2f5b4',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Type of Dwelling',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Income Quintile',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Average Monthly Household Expenditure',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/average-monthly-household-income-by-income-quintile-and-type-of-dwelling-quinquennial/resources/average-monthly-household-income-by-income-quintile-and-type-of-dwelling-2016-08-01T06-13-24Z.csv',
'f184a3c8-2d18-4acf-bb50-898aa05e24b7',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Type of Dwelling',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Income Quintile',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Monthly Household Income',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/average-monthly-household-income-from-each-source-by-income-quintile-quinquennial/resources/average-monthly-household-income-by-income-quintile-and-source-of-household-income-2016-08-01T06-20-15Z.csv',
'2e5a7714-63dd-450d-93f4-43ee13c98607',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Income Quintile',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Source of Household Income',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Monthly Household Income',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/average-monthly-paid-hours-worked-per-employee-quarterly/resources/average-weekly-paid-hours-worked-per-employee-topline-2017-06-13T05-46-04Z.csv',
'c7cea730-96be-4273-a76d-9e3401b87632',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'total_paid_hours',
'sub_type': 'general',
'title': 'Total Paid Hours',
'type': 'numeric',
'unit_of_measure': 'Hours'}],
'CSV'),
('https://storage.data.gov.sg/average-monthly-paid-hours-worked-per-employee-quarterly/resources/average-weekly-paid-hours-worked-per-employee-by-industry-level-1-2017-06-13T05-47-32Z.csv',
'1109b8a4-dafe-42af-840e-0cf447147d5e',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry1',
'type': 'text'},
{'name': 'total_paid_hours',
'sub_type': 'general',
'title': 'Total Paid Hours',
'type': 'numeric',
'unit_of_measure': 'Hours'}],
'CSV'),
('https://storage.data.gov.sg/average-monthly-paid-hours-worked-per-employee-quarterly/resources/average-weekly-paid-hours-worked-per-employee-by-industry-level-2-2017-06-13T05-48-42Z.csv',
'fc5f73d5-6325-4ca1-9ca5-841f392ca606',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry1',
'type': 'text'},
{'name': 'industry2',
'sub_type': 'general',
'title': 'Industry2',
'type': 'text'},
{'name': 'total_paid_hours',
'sub_type': 'general',
'title': 'Total Paid Hours',
'type': 'numeric',
'unit_of_measure': 'Hours'}],
'CSV'),
('https://storage.data.gov.sg/average-monthly-paid-hours-worked-per-employee-quarterly/resources/average-weekly-paid-hours-worked-per-employee-by-industry-level-3-2017-06-13T05-49-46Z.csv',
'c52010a8-b063-40ca-acc6-7cd9f35eb606',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry1',
'type': 'text'},
{'name': 'industry2',
'sub_type': 'general',
'title': 'Industry2',
'type': 'text'},
{'name': 'industry3',
'sub_type': 'general',
'title': 'Industry3',
'type': 'text'},
{'name': 'total_paid_hours',
'sub_type': 'general',
'title': 'Total Paid Hours',
'type': 'numeric',
'unit_of_measure': 'Hours'}],
'CSV'),
('https://storage.data.gov.sg/average-monthly-recruitment-resignation-rates-by-industry-and-occupational-group-annual/resources/average-monthly-recruitment-resignation-rate-topline-2017-03-15T09-52-46Z.csv',
'205f7050-39fd-4af3-899b-ac2dd323e437',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'recruitment_rate',
'sub_type': 'percentage',
'title': 'Recruitment Rate',
'type': 'numeric'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'resignation_rate',
'sub_type': 'percentage',
'title': 'Resignation Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/average-monthly-recruitment-resignation-rates-by-industry-and-occupational-group-annual/resources/average-monthly-recruitment-resignation-rate-by-industry-level-1-2017-03-15T09-54-09Z.csv',
'96d6ca32-c164-4e5b-8f21-42313e2a41d0',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry1',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'recruitment_rate',
'sub_type': 'percentage',
'title': 'Recruitment Rate',
'type': 'numeric'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'resignation_rate',
'sub_type': 'percentage',
'title': 'Resignation Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/average-monthly-recruitment-resignation-rates-by-industry-and-occupational-group-annual/resources/average-monthly-recruitment-resignation-rate-by-industry-level-2-2017-03-15T09-55-22Z.csv',
'5134468c-9e02-479c-9cbe-4214efa5b3ca',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry1',
'type': 'text'},
{'name': 'industry2',
'sub_type': 'general',
'title': 'Industry2',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'recruitment_rate',
'sub_type': 'percentage',
'title': 'Recruitment Rate',
'type': 'numeric'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'resignation_rate',
'sub_type': 'percentage',
'title': 'Resignation Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/average-monthly-recruitment-resignation-rates-by-industry-and-occupational-group-annual/resources/average-monthly-recruitment-resignation-rate-by-industry-level-3-2017-03-15T09-56-17Z.csv',
'243896d0-1974-4fee-a4d8-613641b230ad',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry1',
'type': 'text'},
{'name': 'industry2',
'sub_type': 'general',
'title': 'Industry2',
'type': 'text'},
{'name': 'industry3',
'sub_type': 'general',
'title': 'Industry3',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'recruitment_rate',
'sub_type': 'percentage',
'title': 'Recruitment Rate',
'type': 'numeric'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'resignation_rate',
'sub_type': 'percentage',
'title': 'Resignation Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/average-monthly-recruitment-resignation-rates-by-industry-and-occupational-group-annual/resources/average-monthly-recruitment-resignation-rate-by-broad-occupational-group-2017-03-15T10-00-15Z.csv',
'736a09e9-1448-41b5-aa28-70c7d4f4ae4c',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'occupation1',
'sub_type': 'general',
'title': 'Occupation1',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'recruitment_rate',
'sub_type': 'percentage',
'title': 'Recruitment Rate',
'type': 'numeric'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'resignation_rate',
'sub_type': 'percentage',
'title': 'Resignation Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/average-monthly-recruitment-resignation-rates-by-industry-and-occupational-group-quarterly/resources/average-monthly-recruitment-resignation-rate-topline-2017-06-13T06-03-11Z.csv',
'7e227620-eea6-4232-bb60-d2c6bbdc3a81',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'recruitment_rate',
'sub_type': 'percentage',
'title': 'Recruitment Rate',
'type': 'numeric'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'resignation_rate',
'sub_type': 'percentage',
'title': 'Resignation Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/average-monthly-recruitment-resignation-rates-by-industry-and-occupational-group-quarterly/resources/average-monthly-recruitment-resignation-rate-by-industry-level1-2017-06-13T06-03-54Z.csv',
'41474b18-70a1-44c4-a645-3aac86fe71f9',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry1',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'recruitment_rate',
'sub_type': 'percentage',
'title': 'Recruitment Rate',
'type': 'numeric'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'resignation_rate',
'sub_type': 'percentage',
'title': 'Resignation Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/average-monthly-recruitment-resignation-rates-by-industry-and-occupational-group-quarterly/resources/average-monthly-recruitment-resignation-rate-by-industry-level-2-2017-06-13T06-04-45Z.csv',
'edd9f75d-ab16-468f-93d9-c566260889f2',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry1',
'type': 'text'},
{'name': 'industry2',
'sub_type': 'general',
'title': 'Industry2',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'recruitment_rate',
'sub_type': 'percentage',
'title': 'Recruitment Rate',
'type': 'numeric'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'resignation_rate',
'sub_type': 'percentage',
'title': 'Resignation Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/average-monthly-recruitment-resignation-rates-by-industry-and-occupational-group-quarterly/resources/average-monthly-recruitment-resignation-rate-by-industry-level-3-2017-06-13T06-05-38Z.csv',
'0e734bf5-6c0a-4554-9f7c-6ed8c820c69b',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry1',
'type': 'text'},
{'name': 'industry2',
'sub_type': 'general',
'title': 'Industry2',
'type': 'text'},
{'name': 'industry3',
'sub_type': 'general',
'title': 'Industry3',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'recruitment_rate',
'sub_type': 'percentage',
'title': 'Recruitment Rate',
'type': 'numeric'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'resignation_rate',
'sub_type': 'percentage',
'title': 'Resignation Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/average-monthly-recruitment-resignation-rates-by-industry-and-occupational-group-quarterly/resources/average-monthly-recruitment-resignation-rate-by-broad-occupational-group-2017-06-13T06-06-15Z.csv',
'54587f7d-4766-42a0-82fc-5526e7990181',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'occupation1',
'sub_type': 'general',
'title': 'Occupation1',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'recruitment_rate',
'sub_type': 'percentage',
'title': 'Recruitment Rate',
'type': 'numeric'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'resignation_rate',
'sub_type': 'percentage',
'title': 'Resignation Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/average-mthly-household-expenditure-by-type-of-goods-and-services-and-type-of-dwelling-quinquennial/resources/avg-mthly-household-exp-by-type-of-goods-and-services-broad-1-and-type-of-dwelling-2016-08-02T06-59-44Z.csv',
'3c55009c-4176-4475-87a8-cdcd0224f8cd',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Type of Dwelling',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Type of Goods and Services (Broad 1)',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Average Monthly Household Expenditure',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/average-mthly-household-expenditure-by-type-of-goods-and-services-and-type-of-dwelling-quinquennial/resources/avg-mthly-household-exp-by-type-of-goods-and-services-broad-2-and-type-of-dwelling-2016-08-02T07-01-09Z.csv',
'efe8e5aa-6b08-4266-80fa-46a6d88443c2',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Type of Dwelling',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Type of Goods and Services (Broad 1)',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Type of Goods and Services (Broad 2)',
'type': 'text'},
{'description': '"-" : Data is negligible or not significant',
'name': 'value',
'sub_type': 'general',
'title': 'Average Monthly Household Expenditure',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/average-mthly-household-expenditure-by-type-of-goods-and-services-and-type-of-dwelling-quinquennial/resources/avg-mthly-household-exp-by-type-of-goods-and-services-detailed-1-and-type-of-dwelling-2016-08-11T01-23-03Z.csv',
'8b3df971-18d7-417e-bd00-b151257e38d5',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Type of Dwelling',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Type of Goods and Services (Broad 1)',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Type of Goods and Services (Broad 2)',
'type': 'text'},
{'name': 'level_4',
'sub_type': 'general',
'title': 'Type of Goods and Services (Detailed 1)',
'type': 'text'},
{'description': '"-" : Data is negligible or not significant',
'name': 'value',
'sub_type': 'general',
'title': 'Average Monthly Household Expenditure',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/average-mthly-household-expenditure-by-type-of-goods-and-services-and-type-of-dwelling-quinquennial/resources/avg-mthly-household-exp-by-type-of-goods-and-services-detailed-2-and-type-of-dwelling-2016-08-11T01-24-08Z.csv',
'44f310da-a760-444f-bfc9-adfeaa707ea8',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Type of Dwelling',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Type of Goods and Services (Broad 1)',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Type of Goods and Services (Broad 2)',
'type': 'text'},
{'name': 'level_4',
'sub_type': 'general',
'title': 'Type of Goods and Services (Detailed 1)',
'type': 'text'},
{'name': 'level_5',
'sub_type': 'general',
'title': 'Type of Goods and Services (Detailed 2)',
'type': 'text'},
{'description': '"-" : Data is negligible or not significant',
'name': 'value',
'sub_type': 'general',
'title': 'Average Monthly Household Expenditure',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/average-number-chn-born-resident-ever-married-female-aged-40-49-years-highest-qualification-annual/resources/average-number-of-children-born-to-resident-ever-married-females-aged-40-49-years-by-hqa-2017-05-28T16-03-37Z.csv',
'3a26a3af-99c6-488d-b3dc-f189bc310689',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Highest Qualification Attained',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Per Resident Ever-married Female'}],
'CSV'),
('https://storage.data.gov.sg/average-number-of-children-born-by-age-group-of-resident-ever-married-females-annual/resources/average-number-of-children-born-to-resident-ever-married-females-aged-15-years-over-2017-05-28T16-03-41Z.csv',
'b32a4f0e-dcf3-40e9-9122-f53c89b9ab64',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Number of Children Born',
'type': 'numeric',
'unit_of_measure': 'Per Resident Ever-married Female'}],
'CSV'),
('https://storage.data.gov.sg/average-number-of-children-born-by-age-group-of-resident-ever-married-females-annual/resources/average-number-of-children-born-by-age-group-of-resident-ever-married-females-2017-05-28T16-03-59Z.csv',
'76a7eb04-0193-4775-81f7-b0e9b8b5714f',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Age Group',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Number of Children Born',
'type': 'numeric',
'unit_of_measure': 'Per Resident Ever-married Female'}],
'CSV'),
('https://storage.data.gov.sg/average-number-of-days-received-per-employee-on-infocomm-security-education/resources/average-number-of-days-received-per-employee-on-infocomm-security-education-2016-02-17T14-59-21Z.csv',
'a0179f41-b408-406b-8ded-a0371788db0e',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'average_number_of_days',
'sub_type': 'general',
'title': 'Average Number Of Days',
'type': 'numeric',
'unit_of_measure': 'No. Of Days'}],
'CSV'),
('https://storage.data.gov.sg/average-number-of-income-earners-of-hdb-households-by-ethnic-group-and-flat-type/resources/average-number-of-income-earners-by-ethnic-group-2017-03-10T08-57-37Z.csv',
'3be23103-8ede-4d63-b4e5-31cb2c8f3c91',
[{'format': 'YYYY',
'name': 'shs_year',
'sub_type': 'year',
'title': 'SHS Year',
'type': 'datetime'},
{'name': 'ethnic_group',
'sub_type': 'general',
'title': 'Ethnic Group',
'type': 'text'},
{'name': 'number',
'sub_type': 'general',
'title': 'No. of Persons',
'type': 'numeric',
'unit_of_measure': 'No. of Persons'}],
'CSV'),
('https://storage.data.gov.sg/average-number-of-income-earners-of-hdb-households-by-ethnic-group-and-flat-type/resources/average-number-of-income-earners-by-flat-type-2017-03-10T08-29-50Z.csv',
'32cf0af1-4314-45d6-8bb8-50dee16ef796',
[{'format': 'YYYY',
'name': 'shs_year',
'sub_type': 'year',
'title': 'SHS Year',
'type': 'datetime'},
{'name': 'flat_type',
'sub_type': 'general',
'title': 'Flat Type',
'type': 'text'},
{'name': 'number',
'sub_type': 'general',
'title': 'No. of Persons',
'type': 'numeric',
'unit_of_measure': 'No. of Persons'}],
'CSV'),
('https://storage.data.gov.sg/average-number-of-income-earners-of-hdb-households-by-ethnic-group-and-flat-type/resources/number-of-income-earners-by-ethnic-group-2017-05-05T07-34-07Z.csv',
'0c8bd388-24e9-4448-8c88-f7421aa255e0',
[{'format': 'YYYY',
'name': 'shs_year',
'sub_type': 'year',
'title': 'SHS Year',
'type': 'datetime'},
{'name': 'ethnic_group',
'sub_type': 'general',
'title': 'Ethnic Group',
'type': 'text'},
{'name': 'no_of_income_earners',
'sub_type': 'general',
'title': 'Number of Income Earners',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'percentage',
'sub_type': 'percentage',
'title': 'Percentage',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/average-number-of-income-earners-of-hdb-households-by-ethnic-group-and-flat-type/resources/number-of-income-earners-by-flat-type-2017-05-05T07-34-18Z.csv',
'75322179-f383-4e4e-b505-519b768323fe',
[{'name': 'shs',
'sub_type': 'general',
'title': 'Sample Household Survey',
'type': 'text'},
{'name': 'flat_type',
'sub_type': 'general',
'title': 'Flat Type',
'type': 'text'},
{'name': 'no_of_income_earners',
'sub_type': 'general',
'title': 'Number of Income Earners',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'percentage',
'sub_type': 'percentage',
'title': 'Percentage',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/average-recruitment-and-resignation-rates-annual/resources/average-recruitment-and-resignation-rates-annual-2016-02-11T10-12-38Z.csv',
'21e526cc-7d9f-4cb4-ab70-3096935e987f',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'recruitment_rate',
'sub_type': 'percentage',
'title': 'Recruitment Rate',
'type': 'numeric'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'resignation_rate',
'sub_type': 'percentage',
'title': 'Resignation Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/average-recruitment-and-resignation-rates-annual/resources/average-recruitment-and-resignation-rates-by-industry-group-1-annual-2016-02-11T10-15-17Z.csv',
'ffbed9b1-7924-4b3f-bd54-93bc0b010513',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry 1',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'recruitment_rate',
'sub_type': 'percentage',
'title': 'Recruitment Rate',
'type': 'numeric'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'resignation_rate',
'sub_type': 'percentage',
'title': 'Resignation Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/average-recruitment-and-resignation-rates-annual/resources/average-recruitment-and-resignation-rates-by-industry-group-2-annual-2016-02-11T10-19-11Z.csv',
'580ee371-6cce-4c0d-82ba-a7a4620bfaa6',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry 1',
'type': 'text'},
{'name': 'industry2',
'sub_type': 'general',
'title': 'Industry 2',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'recruitment_rate',
'sub_type': 'percentage',
'title': 'Recruitment Rate',
'type': 'numeric'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'resignation_rate',
'sub_type': 'percentage',
'title': 'Resignation Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/average-recruitment-and-resignation-rates-annual/resources/average-recruitment-and-resignation-rates-by-industry-group-3-annual-2016-02-11T10-21-17Z.csv',
'5c2dbc44-3423-4578-ae27-b4bda8e71ae3',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry 1',
'type': 'text'},
{'name': 'industry2',
'sub_type': 'general',
'title': 'Industry 2',
'type': 'text'},
{'name': 'industry3',
'sub_type': 'general',
'title': 'Industry 3',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'recruitment_rate',
'sub_type': 'percentage',
'title': 'Recruitment Rate',
'type': 'numeric'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'resignation_rate',
'sub_type': 'percentage',
'title': 'Resignation Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/average-retail-prices-of-selected-items-annual/resources/average-retail-prices-of-selected-consumer-items-annual-2017-05-28T16-04-05Z.csv',
'aa0ca1ad-4edd-4de0-bf4f-e8d205a62629',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Items',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'value',
'sub_type': 'general',
'title': 'Average Price',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/average-retail-prices-of-selected-items-monthly/resources/average-retail-prices-of-selected-items-monthly-2017-05-28T16-04-33Z.csv',
'5faa966f-0504-47b8-a58b-9403a3e3d52a',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Items',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'value',
'sub_type': 'general',
'title': 'Average Price',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/average-weekly-paid-hours-worked-per-employee/resources/average-weekly-paid-hours-worked-per-employee-2016-02-16T05-57-50Z.csv',
'7b764317-1497-4eea-8878-af1360e4dd17',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'total_paid_hours',
'sub_type': 'general',
'title': 'Total Paid Hours',
'type': 'numeric',
'unit_of_measure': 'No. of Hours'},
{'name': 'overtime_paid_hours',
'sub_type': 'general',
'title': 'Overtime Paid Hours',
'type': 'numeric',
'unit_of_measure': 'No. of Hours'}],
'CSV'),
('https://storage.data.gov.sg/average-weekly-paid-hours-worked-per-employee-annual/resources/average-weekly-paid-hours-worked-per-employee-topline-2017-03-16T01-40-47Z.csv',
'83b05db4-410e-49f5-98c7-b6d3c33534eb',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'total_paid_hours',
'sub_type': 'general',
'title': 'Total Paid Hours',
'type': 'numeric',
'unit_of_measure': 'Hours'}],
'CSV'),
('https://storage.data.gov.sg/average-weekly-paid-hours-worked-per-employee-annual/resources/average-weekly-paid-hours-worked-per-employee-by-industry-level-1-2017-03-16T01-41-44Z.csv',
'46263094-af26-4612-9205-8577003ea61b',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry1',
'type': 'text'},
{'name': 'total_paid_hours',
'sub_type': 'general',
'title': 'Total Paid Hours',
'type': 'numeric',
'unit_of_measure': 'Hours'}],
'CSV'),
('https://storage.data.gov.sg/average-weekly-paid-hours-worked-per-employee-annual/resources/average-weekly-paid-hours-worked-per-employee-by-industry-level-2-2017-03-16T01-42-28Z.csv',
'916ec5b7-0b0d-4dae-aada-197b3146403c',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry1',
'type': 'text'},
{'name': 'industry2',
'sub_type': 'general',
'title': 'Industry2',
'type': 'text'},
{'name': 'total_paid_hours',
'sub_type': 'general',
'title': 'Total Paid Hours',
'type': 'numeric',
'unit_of_measure': 'Hours'}],
'CSV'),
('https://storage.data.gov.sg/average-weekly-paid-hours-worked-per-employee-annual/resources/average-weekly-paid-hours-worked-per-employee-by-industry-level-3-2017-03-16T01-43-44Z.csv',
'6cb37f82-97ae-4b2f-9892-6d86925b6912',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry1',
'type': 'text'},
{'name': 'industry2',
'sub_type': 'general',
'title': 'Industry2',
'type': 'text'},
{'name': 'industry3',
'sub_type': 'general',
'title': 'Industry3',
'type': 'text'},
{'name': 'total_paid_hours',
'sub_type': 'general',
'title': 'Total Paid Hours',
'type': 'numeric',
'unit_of_measure': 'Hours'}],
'CSV'),
('https://storage.data.gov.sg/average-weekly-paid-hours-worked-per-employee-by-industry-and-type-of-employment-annual/resources/average-weekly-paid-hours-worked-per-employee-by-type-of-employment-topline-2017-03-16T01-49-36Z.csv',
'ecc88c54-6d33-4d1c-9af5-896825386d56',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'nature_of_employment',
'sub_type': 'general',
'title': 'Nature Of Employment',
'type': 'text'},
{'name': 'total_paid_hours',
'sub_type': 'general',
'title': 'Total Paid Hours',
'type': 'numeric',
'unit_of_measure': 'Hours'},
{'name': 'standard_hours',
'sub_type': 'general',
'title': 'Standard Hours',
'type': 'numeric',
'unit_of_measure': 'Hours'},
{'name': 'overtime_paid_hours',
'sub_type': 'general',
'title': 'Overtime Paid Hours',
'type': 'numeric',
'unit_of_measure': 'Hours'}],
'CSV'),
('https://storage.data.gov.sg/average-weekly-paid-hours-worked-per-employee-by-industry-and-type-of-employment-annual/resources/average-weekly-paid-hours-worked-per-employee-by-industry-and-type-of-employment-level-1-2017-03-16T01-50-19Z.csv',
'dd2147ce-20b7-401c-ac8f-8dbcc0d8e0d9',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'nature_of_employment',
'sub_type': 'general',
'title': 'Nature Of Employment',
'type': 'text'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry1',
'type': 'text'},
{'name': 'total_paid_hours',
'sub_type': 'general',
'title': 'Total Paid Hours',
'type': 'numeric',
'unit_of_measure': 'Hours'},
{'name': 'standard_hours',
'sub_type': 'general',
'title': 'Standard Hours',
'type': 'numeric',
'unit_of_measure': 'Hours'},
{'description': '"-" : Data is negligible or not significant',
'name': 'overtime_paid_hours',
'sub_type': 'general',
'title': 'Overtime Paid Hours',
'type': 'numeric',
'unit_of_measure': 'Hours'}],
'CSV'),
('https://storage.data.gov.sg/average-weekly-paid-hours-worked-per-employee-by-industry-and-type-of-employment-annual/resources/average-weekly-paid-hours-worked-per-employee-by-industry-and-type-of-employment-level-2-2017-03-16T01-51-21Z.csv',
'a7296d04-048d-4ec9-ba80-486f725241b4',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'nature_of_employment',
'sub_type': 'general',
'title': 'Nature Of Employment',
'type': 'text'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry1',
'type': 'text'},
{'name': 'industry2',
'sub_type': 'general',
'title': 'Industry2',
'type': 'text'},
{'name': 'total_paid_hours',
'sub_type': 'general',
'title': 'Total Paid Hours',
'type': 'numeric',
'unit_of_measure': 'Hours'},
{'name': 'standard_hours',
'sub_type': 'general',
'title': 'Standard Hours',
'type': 'numeric',
'unit_of_measure': 'Hours'},
{'description': '"-" : Data is negligible or not significant',
'name': 'overtime_paid_hours',
'sub_type': 'general',
'title': 'Overtime Paid Hours',
'type': 'numeric',
'unit_of_measure': 'Hours'}],
'CSV'),
('https://storage.data.gov.sg/average-weekly-paid-hours-worked-per-employee-by-industry-and-type-of-employment-annual/resources/average-weekly-paid-hours-worked-per-employee-by-industry-and-type-of-employment-level-3-2017-03-16T01-52-23Z.csv',
'82ed9565-3bca-4459-a887-c2aee05a877b',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'nature_of_employment',
'sub_type': 'general',
'title': 'Nature Of Employment',
'type': 'text'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry1',
'type': 'text'},
{'name': 'industry2',
'sub_type': 'general',
'title': 'Industry2',
'type': 'text'},
{'name': 'industry3',
'sub_type': 'general',
'title': 'Industry3',
'type': 'text'},
{'name': 'total_paid_hours',
'sub_type': 'general',
'title': 'Total Paid Hours',
'type': 'numeric',
'unit_of_measure': 'Hours'},
{'name': 'standard_hours',
'sub_type': 'general',
'title': 'Standard Hours',
'type': 'numeric',
'unit_of_measure': 'Hours'},
{'description': '"-" : Data is negligible or not significant',
'name': 'overtime_paid_hours',
'sub_type': 'general',
'title': 'Overtime Paid Hours',
'type': 'numeric',
'unit_of_measure': 'Hours'}],
'CSV'),
('https://storage.data.gov.sg/average-weekly-paid-overtime-hours-worked-per-employee-annual/resources/average-weekly-paid-overtime-hours-worked-per-employee-topline-2017-03-16T01-44-55Z.csv',
'1aa31461-d6cd-453d-a556-dcaaf1b4a4f9',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'overtime_paid_hours',
'sub_type': 'general',
'title': 'Overtime Paid Hours',
'type': 'numeric',
'unit_of_measure': 'Hours'}],
'CSV'),
('https://storage.data.gov.sg/average-weekly-paid-overtime-hours-worked-per-employee-annual/resources/average-weekly-paid-overtime-hours-worked-per-employee-by-industry-level-1-2017-03-16T01-46-14Z.csv',
'2920b834-6079-4a5b-b3f0-26b47b3103b1',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry1',
'type': 'text'},
{'name': 'overtime_paid_hours',
'sub_type': 'general',
'title': 'Overtime Paid Hours',
'type': 'numeric',
'unit_of_measure': 'Hours'}],
'CSV'),
('https://storage.data.gov.sg/average-weekly-paid-overtime-hours-worked-per-employee-annual/resources/average-weekly-paid-overtime-hours-worked-per-employee-by-industry-level-2-2017-03-16T01-47-06Z.csv',
'2a9dc1b8-a704-41f0-8241-a0097afe77fc',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry1',
'type': 'text'},
{'name': 'industry2',
'sub_type': 'general',
'title': 'Industry2',
'type': 'text'},
{'name': 'overtime_paid_hours',
'sub_type': 'general',
'title': 'Overtime Paid Hours',
'type': 'numeric',
'unit_of_measure': 'Hours'}],
'CSV'),
('https://storage.data.gov.sg/average-weekly-paid-overtime-hours-worked-per-employee-annual/resources/average-weekly-paid-overtime-hours-worked-per-employee-by-industry-level-3-2017-03-16T01-47-59Z.csv',
'b0c7ac6b-ee11-4701-be79-c57227165414',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry1',
'type': 'text'},
{'name': 'industry2',
'sub_type': 'general',
'title': 'Industry2',
'type': 'text'},
{'name': 'industry3',
'sub_type': 'general',
'title': 'Industry3',
'type': 'text'},
{'name': 'overtime_paid_hours',
'sub_type': 'general',
'title': 'Overtime Paid Hours',
'type': 'numeric',
'unit_of_measure': 'Hours'}],
'CSV'),
('https://storage.data.gov.sg/average-weekly-paid-overtime-hours-worked-per-employee-quarterly/resources/average-weekly-paid-overtime-hours-worked-per-employee-topline-2017-06-13T05-53-09Z.csv',
'd7b8e865-fd1c-44ec-9b9d-854e37f7a019',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'overtime_paid_hours',
'sub_type': 'general',
'title': 'Overtime Paid Hours',
'type': 'numeric',
'unit_of_measure': 'Hours'}],
'CSV'),
('https://storage.data.gov.sg/average-weekly-paid-overtime-hours-worked-per-employee-quarterly/resources/average-weekly-paid-overtime-hours-worked-per-employee-by-industry-level-1-2017-06-13T05-54-00Z.csv',
'2e8325b3-a015-4691-afb3-e477d200436e',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry1',
'type': 'text'},
{'name': 'overtime_paid_hours',
'sub_type': 'general',
'title': 'Overtime Paid Hours',
'type': 'numeric',
'unit_of_measure': 'Hours'}],
'CSV'),
('https://storage.data.gov.sg/average-weekly-paid-overtime-hours-worked-per-employee-quarterly/resources/average-weekly-paid-overtime-hours-worked-per-employee-by-industry-level-2-2017-06-13T05-54-51Z.csv',
'f0c761b8-85b3-4c0a-8599-f2b63e148579',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry1',
'type': 'text'},
{'name': 'industry2',
'sub_type': 'general',
'title': 'Industry2',
'type': 'text'},
{'name': 'overtime_paid_hours',
'sub_type': 'general',
'title': 'Overtime Paid Hours',
'type': 'numeric',
'unit_of_measure': 'Hours'}],
'CSV'),
('https://storage.data.gov.sg/average-weekly-paid-overtime-hours-worked-per-employee-quarterly/resources/average-weekly-paid-overtime-hours-worked-per-employee-by-industry-level-3-2017-06-13T05-55-40Z.csv',
'0aaa0dbe-4972-4c07-9ba0-ba24e8926630',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry1',
'type': 'text'},
{'name': 'industry2',
'sub_type': 'general',
'title': 'Industry2',
'type': 'text'},
{'name': 'industry3',
'sub_type': 'general',
'title': 'Industry3',
'type': 'text'},
{'description': '"-" : Data is negligible or not significant',
'name': 'overtime_paid_hours',
'sub_type': 'general',
'title': 'Overtime Paid Hours',
'type': 'numeric',
'unit_of_measure': 'Hours'}],
'CSV'),
('https://storage.data.gov.sg/avg-mthly-household-exp-household-member-type-goods-services-broad-type-dwelling-quinquennial/resources/avg-mthly-houshold-exp-per-member-by-type-of-goods-and-services-and-type-of-dwelling-2016-08-01T06-03-39Z.csv',
'6c2542bb-2bad-424c-ab36-db0d6710ef5b',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Type of Dwelling',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Type of Goods and Services (Broad 1)',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Average Monthly Household Expenditure',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/balances-of-cpf-members-by-account-type-as-at-end-of-quarter/resources/net-amount-of-balances-of-cpf-members-by-account-type-as-at-end-of-quarter-2017-06-14T07-29-17Z.csv',
'1f65595e-e9ab-4bfd-a041-9c8698c8752e',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'description': 'Refers to Ordinary, Special, Medisave or Retirement Account and Others ',
'name': 'account_type',
'sub_type': 'general',
'title': 'Account type',
'type': 'text'},
{'description': 'Figures are rounded to the nearest hundred thousand dollars.',
'name': 'net_amt',
'sub_type': 'general',
'title': 'Net amount of balances',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/births-and-fertility-annual/resources/live-births-2017-05-28T16-04-38Z.csv',
'55f8c651-6c18-4017-b1f4-f4c4b65785e2',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Live-Births',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Number '}],
'CSV'),
('https://storage.data.gov.sg/births-and-fertility-annual/resources/crude-birth-rate-2017-05-28T16-04-45Z.csv',
'2ba37efc-5411-4f1f-aecf-ea2455c9236d',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Crude Birth Rate',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Per Thousand Population'}],
'CSV'),
('https://storage.data.gov.sg/births-and-fertility-annual/resources/total-fertility-rate-and-reproduction-rate-2017-05-28T16-04-51Z.csv',
'f63d5535-f094-42d0-b7ff-dbcbccb97928',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Reproduction/ Fertility Rate',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Per Female'}],
'CSV'),
('https://storage.data.gov.sg/births-and-fertility-annual/resources/age-specific-fertility-rate-2017-05-28T16-04-58Z.csv',
'9482aa71-a495-4770-8d10-d7ac80f9b898',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Fertility Rate',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Age Group',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Per Thousand Females'}],
'CSV'),
('https://storage.data.gov.sg/births-and-fertility-annual/resources/total-fertility-rate-by-ethnic-group-2017-05-28T16-05-05Z.csv',
'fd66384c-10d8-4e08-ae11-adeba09834ba',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Fertility Rate',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Ethnic Group',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Per Female'}],
'CSV'),
('https://storage.data.gov.sg/bookings-for-new-flats-annual/resources/bookings-for-new-flats-2016-10-31T08-43-54Z.csv',
'666ed30a-8344-4213-9d2e-076eeafeddd3',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'name': 'no_of_units',
'sub_type': 'general',
'title': 'No of Units',
'type': 'numeric',
'unit_of_measure': 'Number of Units'}],
'CSV'),
('https://storage.data.gov.sg/breakdown-by-use-of-sla-managed-properties/resources/breakdown-by-use-of-sla-managed-properties-2017-01-04T08-59-30Z.csv',
'8bedf080-b76b-4966-8559-50d48561f337',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY-[Q]Q',
'name': 'financial_quarter',
'sub_type': 'financial_quarter',
'title': 'Financial quarter',
'type': 'datetime'},
{'name': 'usages',
'sub_type': 'general',
'title': 'Usages',
'type': 'text'},
{'name': 'estimated_gfa',
'sub_type': 'general',
'title': 'Estimated GFA',
'type': 'numeric',
'unit_of_measure': 'Square Metre'}],
'CSV'),
('https://storage.data.gov.sg/broadband-usage-amongst-enterprises-by-employment-size/resources/broadband-usage-amongst-enterprises-by-employment-size-2016-07-27T08-16-30Z.csv',
'ce5c82e1-35b5-4409-86dd-77a5c60bb584',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'employment_size',
'sub_type': 'general',
'title': 'Employment Size',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'broadband_usage',
'sub_type': 'percentage',
'title': 'Broadband Usage',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/business-expectations-for-the-services-sector/resources/general-business-outlook-for-next-6-months-net-weighted-balance-2017-05-28T16-05-11Z.csv',
'c3f30388-60f9-4124-b211-72683993a47c',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Services Sector',
'type': 'text'},
{'description': ['Net Weighted Balance',
'Percentages are expressed as a value over 100, i.e. "100" represents 100%'],
'name': 'value',
'sub_type': 'percentage',
'title': 'General Business Expectations',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/business-expectations-for-the-services-sector/resources/general-business-expectations-by-services-industry-quarterly-2017-05-28T16-05-17Z.csv',
'4a5c702b-17f5-4d30-ad14-9c7ca7c6db4c',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Services Sector',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Industry',
'type': 'text'},
{'description': ['Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'"na" : Data not available or not applicable'],
'name': 'value',
'sub_type': 'percentage',
'title': 'Value',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/business-expectations-for-the-services-sector/resources/general-business-expectations-by-detailed-services-industry-quarterly-2017-05-28T16-05-22Z.csv',
'4779dc47-673a-42a3-896f-7bfc90315c09',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Services Sector',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Industry',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Detailed Industry',
'type': 'text'},
{'description': ['Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'"na" : Data not available or not applicable'],
'name': 'value',
'sub_type': 'percentage',
'title': 'Value',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/business-expectations-manufacturing-sector/resources/most-important-factors-limiting-export-orders-forecast-for-next-3-mths-total-mfg-2017-05-28T16-05-32Z.csv',
'650bac8e-cb71-4a90-95f3-3acdf3dc11bd',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Most Important Factors Limiting Export Orders',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Per Cent',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/business-expectations-manufacturing-sector/resources/most-important-factors-limiting-export-orders-forecast-for-next-3-mths-mfg-clusters-2017-05-28T16-05-45Z.csv',
'6b9607a9-fa6f-46a2-b745-1d2fb49748c0',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Most Important Factors Limiting Export Orders ',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Manufacturing clusters',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Per Cent',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/business-expectations-manufacturing-sector/resources/most-important-factors-limiting-export-orders-forecast-for-next-3-mths-mfg-sub-clusters-2017-05-28T16-06-10Z.csv',
'ec9193e9-2a56-4e1a-843e-150012c72cb5',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Most Important Factors Limiting Export Orders ',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Manufacturing clusters',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Manufacturing sub-clusters',
'type': 'text'},
{'description': ['Per Cent',
'Percentages are expressed as a value over 100, i.e. "100" represents 100%'],
'name': 'value',
'sub_type': 'percentage',
'title': 'Per Cent',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/business-expectations-of-the-manufacturing-sector-forecast-by-industry-quarterly-seasonally-adjusted/resources/general-business-expectations-forecast-for-next-6-months-monthly-seasonally-adjusted-2017-05-28T16-06-15Z.csv',
'423b928a-dd55-4d2e-82fd-6149b0450184',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Description',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'General Business Expectations',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/business-expectations-of-the-manufacturing-sector-quarterly/resources/business-expectations-for-the-next-three-and-six-months-total-manufacturing-2017-05-28T16-06-31Z.csv',
'8fd4b431-43cb-4ac9-ae90-3f14bb388840',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'description': 'Variables by total manufacturing',
'name': 'level_1',
'sub_type': 'general',
'title': 'Variables',
'type': 'text'},
{'description': ['"Net weighted balance" is the difference between the weighted percentage of \'up\' responses and the weighted percentage of \'down\' responses. ',
'"na" : Data not available or not applicable',
'"-" : Data is negligible or not significant'],
'name': 'value',
'sub_type': 'general',
'title': 'Net Weighted Balance',
'type': 'numeric',
'unit_of_measure': 'Net Weighted Balance'}],
'CSV'),
('https://storage.data.gov.sg/business-expectations-of-the-manufacturing-sector-quarterly/resources/business-expectations-for-the-next-three-and-six-months-manufacturing-clusters-2017-05-28T16-07-14Z.csv',
'b8fcf8b2-5a04-41ef-ad34-472b52faa550',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Variables',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Manufacturing Clusters',
'type': 'text'},
{'description': ['"Net weighted balance" is the difference between the weighted percentage of \'up\' responses and the weighted percentage of \'down\' responses. ',
'"na" : Data not available or not applicable',
'"-" : Data is negligible or not significant'],
'name': 'value',
'sub_type': 'general',
'title': 'Net Weighted Balance',
'type': 'numeric',
'unit_of_measure': 'Net Weighted Balance'}],
'CSV'),
('https://storage.data.gov.sg/business-expectations-of-the-manufacturing-sector-quarterly/resources/business-expectations-for-the-next-three-and-six-months-manufacturing-sub-clusters-2017-05-28T16-08-02Z.csv',
'de507212-ca3d-48c4-b8c7-a6cfb0d3067d',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Variables',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Manufacturing clusters',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Manufacturing sub-clusters',
'type': 'text'},
{'description': ['"Net weighted balance" is the difference between the weighted percentage of \'up\' responses and the weighted percentage of \'down\' responses.',
'"na" : Data not available or not applicable',
'"-" : Data is negligible or not significant'],
'name': 'value',
'sub_type': 'general',
'title': 'Net Weighted Balance',
'type': 'numeric',
'unit_of_measure': 'Net Weighted Balance'}],
'CSV'),
('https://storage.data.gov.sg/business-expectations-services-sector-employment-forecast-next-quarter-net-weighted-quarterly/resources/employment-forecast-for-next-3-months-net-weighted-balance-2017-05-28T16-08-37Z.csv',
'c2d5e504-d61c-4400-aa5c-aa93d9a8b6bb',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Services Sector',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Value',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/business-expectations-services-sector-employment-forecast-next-quarter-net-weighted-quarterly/resources/employment-forecast-for-next-3-months-net-weighted-balance-by-industry-2017-05-28T16-09-12Z.csv',
'723d0d53-8a23-437b-85cd-40e07b58c094',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Services Sector',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Industry',
'type': 'text'},
{'description': ['Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'"na" : Data not available or not applicable'],
'name': 'value',
'sub_type': 'percentage',
'title': 'Value',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/business-expectations-services-sector-employment-forecast-next-quarter-net-weighted-quarterly/resources/employment-forecast-for-next-3-months-net-weighted-balance-by-detailed-industry-2017-05-28T16-09-18Z.csv',
'825effdf-f7cc-4d7b-b29b-21af189f36e2',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Services Sector',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Industry',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Detailed Industry',
'type': 'text'},
{'description': ['Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'"na" : Data not available or not applicable'],
'name': 'value',
'sub_type': 'percentage',
'title': 'Value',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/business-expectations-services-sector-employment-next-quarter-weighted-percentages-quarterly/resources/employment-forecast-for-next-3-months-weighted-percentage-2017-05-28T16-09-23Z.csv',
'8c815c48-30cf-479c-afb0-96ac5ca00f0e',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Business Expectation',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Proportion',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/business-expectations-services-sector-general-business-outlook-weighted-percentages-quarterly/resources/general-business-outlook-for-next-6-months-weighted-percentage-2017-05-28T16-09-27Z.csv',
'fe0203b0-7bd1-49ce-affa-3fa808b33cdc',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Services Sector',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Business Outlook',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/business-expectations-services-sector-operating-receipts-forecast-next-quarter-quarterly/resources/operating-receipts-forecast-for-next-3-months-net-weighted-balance-2017-05-28T16-09-31Z.csv',
'53afd03a-c33b-40fe-a761-61247c4125e9',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Services Sector',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Operating Receipts Forecast',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/business-expectations-services-sector-operating-receipts-forecast-next-quarter-quarterly/resources/operating-receipts-forecast-for-next-3-months-net-weighted-balance-by-industry-2017-05-28T16-09-36Z.csv',
'9c13826f-f661-4b30-85dd-94441295f804',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Services Sector',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Industry',
'type': 'text'},
{'description': ['Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'"na" : Data not available or not applicable'],
'name': 'value',
'sub_type': 'percentage',
'title': 'Operating Receipts Forecast',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/business-expectations-services-sector-operating-receipts-forecast-next-quarter-quarterly/resources/operating-receipts-forecast-for-next-3-months-net-weighted-balance-by-detailed-industry-2017-05-28T16-09-43Z.csv',
'b7db0d6a-7a9d-49be-abce-431fcb1fe0c1',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Services Sector',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Industry',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Detailed Industry',
'type': 'text'},
{'description': ['Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'"na" : Data not available or not applicable'],
'name': 'value',
'sub_type': 'percentage',
'title': 'Operating Receipts Forecast',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/business-expectations-services-sector-operating-receipts-next-quarter-weighted-percentages-quarterly/resources/operating-receipts-forecast-for-next-3-months-weighted-percentage-2017-05-28T16-09-49Z.csv',
'a951405d-4736-477c-a200-4e56f15eeb9b',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Services Sector',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Operating Receipts Forecast',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/business-receipts-index-for-services-industries-2014-100-ssic-2015-quarterly/resources/business-receipts-index-base-year-2014-100-quarterly-2017-05-28T16-09-52Z.csv',
'be558597-2b0e-4749-a9ef-6ffd2cd177e7',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total Services',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Index'}],
'CSV'),
('https://storage.data.gov.sg/business-receipts-index-for-services-industries-2014-100-ssic-2015-quarterly/resources/business-receipts-index-by-industry-base-year-2014-100-quarterly-2017-05-28T16-09-59Z.csv',
'fd40fab1-68eb-48d3-88c0-9c165a65e5e0',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total Services',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Industry',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Index'}],
'CSV'),
('https://storage.data.gov.sg/bus-stop-chinese-names-tourist-attractions/resources/bus-stop-chinese-names-2016-05-03T14-43-37Z.csv',
'abd0760e-3fa8-443b-94ba-b78e4ba391bc',
[{'name': 'id', 'sub_type': 'general', 'title': 'Id', 'type': 'text'},
{'name': 'bldg_name',
'sub_type': 'general',
'title': 'Bldg Name',
'type': 'text'},
{'name': 'street_name_orig',
'sub_type': 'general',
'title': 'Street Name Orig',
'type': 'text'},
{'name': 'street_chinese_name',
'sub_type': 'general',
'title': 'Street Chinese Name',
'type': 'text'},
{'name': 'building_chinese_name',
'sub_type': 'general',
'title': 'Building Chinese Name',
'type': 'text'},
{'name': 'attraction',
'sub_type': 'general',
'title': 'Attraction',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/car-prefix-identification-marks-for-cars-registered-in-singapore/resources/identification-marks-for-cars-registered-in-singapore-2017-05-03T07-04-12Z.csv',
'1aa5afaf-2512-4797-a2f7-7d97bf3b5f38',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'description': 'Car Prefix',
'name': 'car_prefix',
'sub_type': 'general',
'title': 'Car Prefix',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/causes-of-road-accidents-causes-of-accidents-by-severity-of-injury-sustained/resources/causes-of-accidents-by-severity-of-injury-sustained-2017-06-05T09-09-51Z.csv',
'd68321b6-c438-425d-b9f4-d5777eee9e77',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'accident_classification',
'sub_type': 'general',
'title': 'Accident classification',
'type': 'text'},
{'name': 'road_user_group',
'sub_type': 'general',
'title': 'Road user group',
'type': 'text'},
{'name': 'causes_of_accident',
'sub_type': 'general',
'title': 'Causes of accident',
'type': 'text'},
{'name': 'number_of_accidents',
'sub_type': 'general',
'title': 'Number of accidents',
'type': 'numeric',
'unit_of_measure': '-'}],
'CSV'),
('https://storage.data.gov.sg/changes-in-total-demand-at-2010-market-prices-annual/resources/changes-in-total-demand-at-2010-market-prices-annual-2017-05-28T16-10-06Z.csv',
'4760f401-d32e-4e70-b2d5-0479ebdfecb9',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total Demand',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Change in Total Demand',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/changes-in-total-demand-at-2010-market-prices-annual/resources/changes-in-total-demand-components-at-2010-market-prices-annual-2017-05-28T16-10-13Z.csv',
'6b92a7b3-3931-456c-a06f-06fabe5d6141',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total Demand',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Total Demand Components',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Change in Total Demand',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/changes-in-total-demand-at-2010-market-prices-annual/resources/changes-in-total-domestic-demand-components-at-2010-market-prices-annual-2017-05-28T16-10-19Z.csv',
'537a173e-4185-4310-8c36-ce69dcf210b8',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total Demand',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Total Demand Components',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Total Domestic Demand Components ',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Change in Total Demand',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/changes-in-total-demand-at-2010-market-prices-annual/resources/changes-in-final-domestic-demand-components-at-2010-market-prices-annual-2017-05-28T16-10-26Z.csv',
'48cfe984-1001-43d6-b3c8-ab7b3f96ebc6',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total Demand',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Total Demand Components ',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Total Domestic Demand Components',
'type': 'text'},
{'name': 'level_4',
'sub_type': 'general',
'title': 'Final Domestic Demand Components ',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Change in Total Demand',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/changes-in-total-demand-at-2010-market-prices-annual/resources/changes-in-final-domestic-demand-components-by-public-private-breakdown-2017-05-28T16-10-33Z.csv',
'fb5ee6be-cf3b-4e77-acdb-74ba906a85bf',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total Demand',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Total Demand Components',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Total Domestic Demand Components',
'type': 'text'},
{'name': 'level_4',
'sub_type': 'general',
'title': 'Final Domestic Demand Components ',
'type': 'text'},
{'name': 'level_5',
'sub_type': 'general',
'title': 'Public/Private',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Change in Total Demand',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/changes-in-total-demand-at-2010-market-prices-quarterly/resources/changes-in-total-demand-at-2010-market-prices-quarterly-2017-05-28T16-10-39Z.csv',
'06dbdd2d-567d-453c-aa63-017435eaf367',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total Demand',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Changes in Total Demand',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/changes-in-total-demand-at-2010-market-prices-quarterly/resources/changes-in-total-demand-components-at-2010-market-prices-quarterly-2017-05-28T16-10-47Z.csv',
'f2735995-4d62-4bc6-814d-95d2f433f2de',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total Demand',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Total Demand Components',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Changes in Total Demand',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/changes-in-total-demand-at-2010-market-prices-quarterly/resources/changes-in-total-domestic-demand-components-at-2010-market-prices-quarterly-2017-05-28T16-10-54Z.csv',
'18334c0c-2361-45aa-95a4-8464c350266f',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total Demand',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Total Demand Components',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Total Domestic Demand Components',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Changes in Total Demand',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/changes-in-total-demand-at-2010-market-prices-quarterly/resources/changes-in-final-domestic-demand-components-at-2010-market-prices-quarterly-2017-05-28T16-11-02Z.csv',
'06ff08b7-09be-43c9-b350-d531c487afc3',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total Demand',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Total Demand Components',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Total Domestic Demand Components',
'type': 'text'},
{'name': 'level_4',
'sub_type': 'general',
'title': 'Final Domestic Demand Components',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Changes in Total Demand',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/changes-in-total-demand-at-2010-market-prices-quarterly/resources/changes-in-final-domestic-demand-components-by-public-private-breakdown-2017-05-28T16-11-10Z.csv',
'82cd3073-c8ce-4572-b47b-2d0421a005f6',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total Demand',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Total Demand Components',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Total Domestic Demand Components',
'type': 'text'},
{'name': 'level_4',
'sub_type': 'general',
'title': 'Final Domestic Demand Components',
'type': 'text'},
{'name': 'level_5',
'sub_type': 'general',
'title': 'Public/Private',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Changes in Total Demand',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/changes-in-value-added-per-worker-at-2010-market-prices-by-industry-annual/resources/changes-in-value-added-per-worker-at-2010-market-prices-annual-2017-05-28T16-11-17Z.csv',
'adbd2d71-642e-49f0-9cc4-a43df1ba891c',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Value',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/changes-in-value-added-per-worker-at-2010-market-prices-by-industry-annual/resources/changes-in-va-per-worker-by-goods-and-services-producing-industries-annual-2017-05-28T16-11-22Z.csv',
'e3fa4e0a-c50a-4476-b73b-213fa1715170',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Goods and Services Industry',
'type': 'text'},
{'description': ['Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'"na" : Data not available or not applicable'],
'name': 'value',
'sub_type': 'percentage',
'title': 'Value',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/changes-in-value-added-per-worker-at-2010-market-prices-by-industry-annual/resources/changes-in-value-added-per-worker-at-2010-market-prices-by-detailed-industry-annual-2017-05-28T16-11-27Z.csv',
'7b39ef2c-34f5-4fb2-941c-81909727fb04',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Goods and Services Industry',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Detailed Industry',
'type': 'text'},
{'description': ['Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'"na" : Data not available or not applicable'],
'name': 'value',
'sub_type': 'percentage',
'title': 'Value',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/changes-in-value-added-per-worker-at-2010-market-prices-by-industry-quarterly/resources/changes-in-value-added-per-worker-at-2010-market-prices-quarterly-2017-05-28T16-11-36Z.csv',
'd4da6f42-9461-4274-98e5-8ac597d2742e',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Change In Value Added Per Worker',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/changes-in-value-added-per-worker-at-2010-market-prices-by-industry-quarterly/resources/changes-in-value-added-per-worker-at-2010-market-prices-by-industry-quarterly-2017-05-28T16-11-41Z.csv',
'cfa7d968-d83e-4927-8874-53c5a998eb1f',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Industry',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Change In Value Added Per Worker',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/changes-in-value-added-per-worker-at-2010-market-prices-by-industry-quarterly/resources/changes-in-value-added-per-worker-at-2010-market-prices-by-detailed-industry-quarterly-2017-05-28T16-11-48Z.csv',
'29210c05-2ebd-43f9-b647-13d4dcbdf1f8',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Industry',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Detailed Industry',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Change In Value Added Per Worker',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/child-abuse-investigations/resources/child-abuse-investigations-annual-2016-05-17T03-13-16Z.csv',
'6225d302-1a2b-43e9-bbb8-b359bab9bae8',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'count',
'sub_type': 'general',
'title': 'Count',
'type': 'numeric',
'unit_of_measure': 'Investigations'}],
'CSV'),
('https://storage.data.gov.sg/child-care-centres-capacity-and-enrolment-annual/resources/child-care-centres-capacity-and-enrolment-annual-2016-02-19T07-14-49Z.csv',
'ba39f632-4409-4af5-9918-d3f2a38b09e0',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'no_of_centres',
'sub_type': 'general',
'title': 'No. Of Centres',
'type': 'numeric',
'unit_of_measure': 'No. Of Centres'},
{'name': 'capacity',
'sub_type': 'general',
'title': 'Capacity',
'type': 'numeric',
'unit_of_measure': 'No. of Students'},
{'name': 'total_enrolment',
'sub_type': 'general',
'title': 'Total Enrolment',
'type': 'numeric',
'unit_of_measure': 'No. of Students'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'enrolment_rate',
'sub_type': 'percentage',
'title': 'Enrolment Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/percentage-of-children-immunised/resources/percentage-of-children-aged-2-years-immunised-2017-04-03T07-08-35Z.csv',
'2a5c72c4-90f0-4c15-8aa3-5df3e902a926',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'disease',
'sub_type': 'general',
'title': 'Disease',
'type': 'text'},
{'description': ['Percentage of children aged 2 years immunised against tuberculosis, diphtheria, poliomyelitis, hepatitis B and measles',
'Percentages are expressed as a value over 100, i.e. "100" represents 100%'],
'name': 'percentage',
'sub_type': 'percentage',
'title': 'Percentage',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/percentage-of-children-immunised/resources/percentage-of-primary-1-and-equivalent-age-groups-immunised-2017-04-03T07-11-16Z.csv',
'3461a8a2-85fe-4628-baaa-3e4d5498c808',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'description': ['Percentage of Primary 1 and equivalent age groups immunised against measles, mumps and rubella',
'Percentages are expressed as a value over 100, i.e. "100" represents 100%'],
'name': 'percentage',
'sub_type': 'percentage',
'title': 'Percentage',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/children-s-daily-time-spent-on-media-activities/resources/daily-time-spent-on-media-activities-2016-09-29T03-43-28Z.csv',
'606fea8c-462b-4a98-bfa1-f6f01073dc5a',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'age', 'sub_type': 'general', 'title': 'Age', 'type': 'text'},
{'name': 'activity',
'sub_type': 'general',
'title': 'Activity',
'type': 'text'},
{'name': 'sample',
'sub_type': 'general',
'title': 'Sample',
'type': 'numeric',
'unit_of_measure': 'No. of Respondents'},
{'name': 'hours',
'sub_type': 'general',
'title': 'Time Spent',
'type': 'numeric',
'unit_of_measure': 'No. of Hours'}],
'CSV'),
('https://storage.data.gov.sg/cinema-indicators-end-of-period-annual/resources/number-of-cinema-screens-2016-06-01T05-36-13Z.csv',
'e8a7138c-8cdf-4ccf-a93e-b963f9a46ea1',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Description',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'value',
'sub_type': 'general',
'title': 'Number of Cinema Screens',
'type': 'numeric',
'unit_of_measure': 'Number of Cinema Screens'}],
'CSV'),
('https://storage.data.gov.sg/cinema-indicators-end-of-period-annual/resources/cinema-seating-capacity-attendances-2016-06-01T05-38-16Z.csv',
'8e5f2f72-7363-4f77-9e1e-d7ed7ec52119',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Description',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'value',
'sub_type': 'general',
'title': 'Seating Capacity & Attendances',
'type': 'numeric',
'unit_of_measure': 'Count in Thousands'}],
'CSV'),
('https://storage.data.gov.sg/civil-aircraft-arrivals-departures-passengers-and-mail-changi-airport-monthly/resources/civil-aircraft-arrivals-departures-and-passengers-changi-airport-monthly-2017-05-28T16-12-14Z.csv',
'1a08ce4d-aafc-4fee-afb7-e8f4c3a41d80',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Type of Traffic',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Total'}],
'CSV'),
('https://storage.data.gov.sg/civil-aircraft-arrivals-departures-passengers-and-mail-changi-airport-monthly/resources/volume-of-mail-changi-airport-monthly-2017-05-28T16-12-21Z.csv',
'57e7a59d-1e44-404a-bbb5-6684bb0f03bd',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Type of Mail (Incoming or Outgoing)',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Total'}],
'CSV'),
('https://storage.data.gov.sg/claims-involving-non-unionised-workers/resources/issues-of-claims-registered-by-non-unionised-workers-2016-05-23T03-29-16Z.csv',
'52a564de-5ba0-4e9a-9468-69c740f6f137',
[{'description': 'Year that the issues were registered',
'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'description': 'Issues registered',
'name': 'issues_of_claims',
'sub_type': 'general',
'title': 'Issues Of Claims',
'type': 'text'},
{'name': 'no_of_issues',
'sub_type': 'general',
'title': 'No. of Issues',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/climate-change-and-energy-carbon-dioxide-emissions-from-combustion-of-fossil-fuels/resources/carbon-dioxide-emissions-from-combustion-of-fossil-fuels-2016-02-19T08-33-03Z.csv',
'aa650271-7c04-4705-a1ba-9f0467aef3e9',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'co2_emissions',
'sub_type': 'general',
'title': 'CO2 Emissions',
'type': 'numeric',
'unit_of_measure': 'Kilotons'}],
'CSV'),
('https://storage.data.gov.sg/climate-change-and-energy-carbon-intensity-of-electricity-generation/resources/carbon-intensity-of-electricity-generation-2016-02-19T06-59-03Z.csv',
'a3bf7c2a-937c-4f8b-922a-cb7ae3388ffa',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'carbon_intensity_of_electricity_generation',
'sub_type': 'general',
'title': 'Carbon Intensity Of Electricity Generation',
'type': 'numeric',
'unit_of_measure': 'kgCO2 / kWh'}],
'CSV'),
('https://storage.data.gov.sg/climate-change-and-energy-energy-consumption-per-dollar-gdp-improvement-from-2005-levels/resources/energy-consumption-per-dollar-gdp-improvement-from-2005-levels-2016-02-19T08-37-06Z.csv',
'45e7f290-a25b-468e-9692-6dc14297734d',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'energy_consumption_per_dollar_gdp',
'sub_type': 'percentage',
'title': 'Energy Consumption Per Dollar GDP',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/climate-change-and-energy-green-vehicles/resources/climate-change-and-energy-green-vehicles-2016-02-11T10-49-35Z.csv',
'105f3ee1-4cfa-4079-bbf1-7c96fbf9a896',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'no_of_green_vehicles',
'sub_type': 'general',
'title': 'No. Of Green Vehicles',
'type': 'numeric',
'unit_of_measure': 'Number'}],
'CSV'),
('https://storage.data.gov.sg/coe-bidding-results/resources/coe-results-2017-06-07T10-01-24Z.csv',
'f7bbdc43-c568-4e60-9afa-b77ba5a14aa0',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'description': 'Number of Bids',
'name': 'bidding_no',
'sub_type': 'general',
'title': 'Bidding No',
'type': 'numeric',
'unit_of_measure': 'No. of Bids'},
{'name': 'vehicle_class',
'sub_type': 'general',
'title': 'Vehicle Class',
'type': 'text'},
{'description': 'Number of Quota',
'name': 'quota',
'sub_type': 'general',
'title': 'Quota',
'type': 'numeric',
'unit_of_measure': 'No. of Quota'},
{'description': 'Number of Successful Bids',
'name': 'bids_success',
'sub_type': 'general',
'title': 'Bids Success',
'type': 'numeric',
'unit_of_measure': 'No. of Successful Bids'},
{'description': 'Number of Bids Recieved',
'name': 'bids_received',
'sub_type': 'general',
'title': 'Bids Received',
'type': 'numeric',
'unit_of_measure': 'No. of Bids Recieved'},
{'description': 'Premium ',
'name': 'premium',
'sub_type': 'general',
'title': 'Premium',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/coe-bidding-results/resources/coe-results-prevailing-quota-premium-2017-06-07T10-02-32Z.csv',
'85deb904-fbf9-46bc-80fd-9676213bbf1f',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'vehicle_class',
'sub_type': 'general',
'title': 'Vehicle Class',
'type': 'text'},
{'description': 'Premium',
'name': 'pqp',
'sub_type': 'general',
'title': 'PQP',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/collective-agreements-certified-by-type-of-organisations/resources/total-collective-agreements-certified-by-type-of-organisations-2016-06-23T06-52-44Z.csv',
'f0956f18-7659-4f29-8de6-e3391864bedc',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'no._certified',
'sub_type': 'general',
'title': 'No. of CAs certified',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/collective-agreements-certified-by-type-of-organisations/resources/collective-agreements-certified-by-type-of-organisations-2016-06-23T06-48-18Z.csv',
'14661c85-6ff0-4bf5-97d7-80cef48fbae0',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'type_of_organisations',
'sub_type': 'general',
'title': 'Type Of Organisations',
'type': 'text'},
{'name': 'no._certified',
'sub_type': 'general',
'title': 'No. Certified',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/collective-agreements-certified-by-type-of-workers-covered/resources/total-collective-agreements-certified-by-type-of-workers-covered-2016-06-23T08-37-57Z.csv',
'4f2f6e52-212a-4002-a03e-ac828d945918',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'no._certified',
'sub_type': 'general',
'title': 'No. of CAs Certified',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/collective-agreements-certified-by-type-of-workers-covered/resources/collective-agreements-certified-by-type-of-workers-covered-2016-06-23T08-30-49Z.csv',
'43d9fd22-787c-46a4-8fda-3e99376e009b',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'types_of_workers_covered',
'sub_type': 'general',
'title': 'Types Of Workers Covered',
'type': 'text'},
{'description': '"na" : not tracked or not applicable',
'name': 'no._certified',
'sub_type': 'general',
'title': 'No. Certified',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/combined-and-gross-enrolment-ratio-for-primary-secondary-tertiary-education/resources/combined-and-gross-enrolment-ratio-for-primary-secondary-tertiary-education-2016-09-15T06-44-40Z.csv',
'9dcdd20c-e24c-46a4-9044-cc2b2745a7fc',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'category',
'sub_type': 'general',
'title': 'Category',
'type': 'text'},
{'name': 'level_of_education',
'sub_type': 'general',
'title': 'Level Of Education',
'type': 'text'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'gross_enrolment_ratio',
'sub_type': 'percentage',
'title': 'Gross Enrolment Ratio',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/common-health-problems-in-students-defective-vision-annual/resources/common-health-problems-of-students-examined-defective-vision-annual-2017-02-24T07-00-30Z.csv',
'4c7c5734-53b6-4169-98ab-238329e61db2',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'name': 'per_10000_examined',
'sub_type': 'general',
'title': 'Defective vision rate',
'type': 'numeric',
'unit_of_measure': 'Per 10000 examined'}],
'CSV'),
('https://storage.data.gov.sg/common-health-problems-of-students-examined-obesity-annual/resources/common-health-problems-of-students-examined-obesity-annual-2017-02-23T02-18-39Z.csv',
'7f8abd13-5662-46ac-9c9b-12718ce973ea',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'age_group',
'sub_type': 'general',
'title': 'Age Group',
'type': 'text'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'name': 'per_10000_examined',
'sub_type': 'general',
'title': 'Obesity Rate',
'type': 'numeric',
'unit_of_measure': 'Per 10000 Examined'}],
'CSV'),
('https://storage.data.gov.sg/commuter-facilities/resources/commuter-facilities-2017-05-05T07-34-09Z.csv',
'2198da0e-e7fd-43f9-8b66-749255f430bf',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'facility',
'sub_type': 'general',
'title': 'Facility',
'type': 'text'},
{'name': 'number',
'sub_type': 'general',
'title': 'Number',
'type': 'numeric',
'unit_of_measure': 'No. of Facilities'}],
'CSV'),
('https://storage.data.gov.sg/compensation-of-employees-by-industry-at-current-prices-annual/resources/compensation-of-employees-at-current-prices-annual-2017-05-28T16-12-25Z.csv',
'1354d855-e29c-4ff7-bf02-97eb4d988b1f',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Compensation of Employees',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/compensation-of-employees-by-industry-at-current-prices-annual/resources/compensation-of-employees-by-industry-at-current-prices-annual-2017-05-28T16-12-29Z.csv',
'442c08cb-4765-4082-ab31-2302bc3ba2aa',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total ',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Industry',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Compensation of Employees',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/composite-leading-index-quarterly/resources/composite-leading-index-base-year-2010-quarterly-2017-05-28T16-12-32Z.csv',
'bb78fae9-80fe-46b7-9577-20b87454883c',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Composite Leading Index',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Index'}],
'CSV'),
('https://storage.data.gov.sg/computer-access-at-home/resources/computer-access-at-home-2016-05-04T05-14-10Z.csv',
'0f122caa-859c-4c70-a1e5-b6483cb9b14c',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'computer_access_at_home',
'sub_type': 'percentage',
'title': 'Computer Access At Home',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/computer-access-at-home/resources/computer-access-at-home-by-number-of-computers-2016-05-04T04-02-15Z.csv',
'7be6c267-5ba4-4fab-99cf-045f0823025a',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'number_of_computer',
'sub_type': 'general',
'title': 'Number Of Computer',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'computer_access_at_home',
'sub_type': 'percentage',
'title': 'Computer Access At Home',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/computer-access-at-home/resources/computer-access-at-home-by-housing-type-2016-05-04T03-46-31Z.csv',
'd4dd3d13-36bf-42fb-8104-14dc70d4e0d0',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'housing_type',
'sub_type': 'general',
'title': 'Housing Type',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'computer_access_at_home',
'sub_type': 'percentage',
'title': 'Computer Access At Home',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/computer-ownership-by-housing-type/resources/computer-ownership-by-housing-type-2016-06-13T09-31-10Z.csv',
'87ecee71-f6c5-41f2-ba58-0eca37502dab',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'type', 'sub_type': 'general', 'title': 'Type', 'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'home_computer_ownership',
'sub_type': 'percentage',
'title': 'Home Computer Ownership',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/computer-usage-amongst-enterprises-by-employment-size/resources/computer-usage-amongst-enterprises-by-employment-size-2016-06-14T02-41-06Z.csv',
'33641baf-a2b4-4bb2-a2ab-259c4935bf32',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'employment_size',
'sub_type': 'general',
'title': 'Employment Size',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'computer_usage',
'sub_type': 'percentage',
'title': 'Computer Usage',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/conservation-sites-sold-by-ura/resources/conservation-sites-sold-by-ura-2016-06-09T02-11-01Z.csv',
'6482703c-41d1-4060-bd00-b7dc0458f973',
[{'format': 'YYYY-MM-DD',
'name': 'date_of_launch',
'sub_type': 'date',
'title': 'Date Of Tender Launch',
'type': 'datetime'},
{'description': '"na" : Data not available or not applicable',
'format': 'YYYY-MM-DD',
'name': 'date_of_tender_closing',
'sub_type': 'date',
'title': 'Date Of Tender Closing',
'type': 'datetime'},
{'format': 'YYYY-MM-DD',
'name': 'date_of_award',
'sub_type': 'date',
'title': 'Date Of Tender Award',
'type': 'datetime'},
{'name': 'location',
'sub_type': 'general',
'title': 'Location of Sale Site',
'type': 'text'},
{'name': 'location_code',
'sub_type': 'general',
'title': 'Location Code',
'type': 'text'},
{'name': 'site_area',
'sub_type': 'general',
'title': 'Site Area',
'type': 'numeric',
'unit_of_measure': 'Square Metre'},
{'name': 'type_of_devt_allowed',
'sub_type': 'general',
'title': 'Type Of Development Allowed',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'no_of_storeys',
'sub_type': 'general',
'title': 'No. Of Storeys',
'type': 'text'},
{'name': 'successful_tenderer_name',
'sub_type': 'general',
'title': 'Name Of Successful Tenderer',
'type': 'text'},
{'name': 'successful_tender_price',
'sub_type': 'general',
'title': 'Successful Tender Price',
'type': 'numeric',
'unit_of_measure': 'S$'},
{'description': 'PSM stands for Per Square Metre. All figures are rounded to 2 decimal places.',
'name': 'price_psm_per_site_area',
'sub_type': 'general',
'title': 'Price Per Square Metre Per Site Area',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/consumer-price-index-annual/resources/consumer-price-index-base-year-2014-100-annual-2017-01-23T16-02-53Z.csv',
'88f3fe54-92b7-446e-bd58-a466058dcdca',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'All Items',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Index'}],
'CSV'),
('https://storage.data.gov.sg/consumer-price-index-annual/resources/consumer-price-index-at-division-level-base-year-2014-100-annual-2017-01-23T16-02-57Z.csv',
'0a35d11d-0752-4423-8ac6-924ecb6c3bcf',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'All Items',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Division',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Index'}],
'CSV'),
('https://storage.data.gov.sg/consumer-price-index-annual/resources/consumer-price-index-at-group-level-base-year-2014-100-annual-2017-01-23T16-03-00Z.csv',
'1f850626-19ef-40e0-ac58-ad9970cacbeb',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'All Items',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Division',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Group',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Index'}],
'CSV'),
('https://storage.data.gov.sg/consumer-price-index-cpi-base-year-2014-monthly-seasonally-adjusted/resources/consumer-price-index-base-year-2014-100-all-items-monthly-seasonally-adjusted-2017-05-28T16-12-48Z.csv',
'1f7787b4-2650-4673-b7ff-cad4ace40dfe',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'All Items',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'value',
'sub_type': 'general',
'title': 'Consumer Price Index',
'type': 'numeric',
'unit_of_measure': 'Index'}],
'CSV'),
('https://storage.data.gov.sg/consumer-price-index-cpi-base-year-2014-monthly-seasonally-adjusted/resources/consumer-price-index-base-year-2014-100-by-division-monthly-seasonally-adjusted-2017-05-28T16-13-11Z.csv',
'f43c0784-b875-4fa9-b540-40b1bdf1ac4c',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'All Items',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Division',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'value',
'sub_type': 'general',
'title': 'Consumer Price Index',
'type': 'numeric',
'unit_of_measure': 'Index'}],
'CSV'),
('https://storage.data.gov.sg/consumer-price-index-cpi-base-year-2014-monthly-seasonally-adjusted/resources/consumer-price-index-base-year-2014-100-by-group-monthly-seasonally-adjusted-2017-05-28T16-13-37Z.csv',
'e23d85d3-5a61-40da-9ee2-d18b84df77e9',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'All Items',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Division',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Group',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'value',
'sub_type': 'general',
'title': 'Consumer Price Index',
'type': 'numeric',
'unit_of_measure': 'Index'}],
'CSV'),
('https://storage.data.gov.sg/consumer-price-index-cpi-for-households-in-different-income-groups-base-year-2014-100-half-yearly/resources/consumer-price-index-by-income-group-base-year-2014-100-all-items-half-yearly-2017-01-23T16-03-59Z.csv',
'e431b044-9256-42bc-bc0b-dda93e3ad2fa',
[{'format': 'YYYY-[H]H',
'name': 'half_year',
'sub_type': 'half_year',
'title': 'Half year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'All Items',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Consumer Price Index',
'type': 'numeric',
'unit_of_measure': 'Index'}],
'CSV'),
('https://storage.data.gov.sg/consumer-price-index-cpi-for-households-in-different-income-groups-base-year-2014-100-half-yearly/resources/consumer-price-index-by-income-group-base-year-2014-100-by-division-half-yearly-2017-01-23T16-04-06Z.csv',
'f2d4463f-7581-42d0-8266-75f6083d8ceb',
[{'format': 'YYYY-[H]H',
'name': 'half_year',
'sub_type': 'half_year',
'title': 'Half year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'All Items',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Division',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'value',
'sub_type': 'general',
'title': 'Consumer Price Index',
'type': 'numeric',
'unit_of_measure': 'Index'}],
'CSV'),
('https://storage.data.gov.sg/consumer-price-index-monthly/resources/consumer-price-index-base-year-2014-100-monthly-2017-05-28T16-13-55Z.csv',
'67d08d6b-2efa-4825-8bdb-667d23b7285e',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'All Items',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Index'}],
'CSV'),
('https://storage.data.gov.sg/consumer-price-index-monthly/resources/consumer-price-index-at-division-level-base-year-2014-100-monthly-2017-05-28T16-14-18Z.csv',
'49ca0f3d-4ea4-44a3-9012-d1fd3b8495a4',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'All Items',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Division',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Index'}],
'CSV'),
('https://storage.data.gov.sg/consumer-price-index-monthly/resources/consumer-price-index-at-group-level-base-year-2014-100-monthly-2017-05-28T16-14-58Z.csv',
'5fa8c503-9bdc-41cb-912f-923851eb2eca',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'All Items',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Division',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Group',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Index'}],
'CSV'),
('https://storage.data.gov.sg/consumer-price-indices-general-and-healthcare/resources/consumer-price-indices-cpi-2017-05-31T07-31-49Z.csv',
'530e0bcc-a9c4-419f-88af-394e688c939c',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'category',
'sub_type': 'general',
'title': 'Category',
'type': 'text'},
{'name': 'cpi',
'sub_type': 'general',
'title': 'Consumer Price Index',
'type': 'numeric',
'unit_of_measure': 'Index'}],
'CSV'),
('https://storage.data.gov.sg/cpf/resources/ordinary-wage-ceiling-2016-05-30T04-53-03Z.csv',
'64dcb906-c10b-41cd-9cc2-fca49b0ce8a9',
[{'format': 'YYYY-MM',
'name': 'effective_from',
'sub_type': 'month',
'title': 'Effective from',
'type': 'datetime'},
{'name': 'ordinary_wage_ceiling',
'sub_type': 'general',
'title': 'Ordinary wage ceiling',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/contribution-rates-allocation-rates-and-applicable-wage-ceiling/resources/cpf-allocation-rates-2017-05-15T08-15-40Z.csv',
'b2a7620a-118d-4cd4-95ba-1530471da004',
[{'format': 'YYYY-MM',
'name': 'effective_from',
'sub_type': 'month',
'title': 'Effective from',
'type': 'datetime'},
{'name': 'age_grp',
'sub_type': 'general',
'title': 'Employee age group',
'type': 'text'},
{'description': 'Refers to Ordinary, Special or Medisave account',
'name': 'account_type',
'sub_type': 'general',
'title': 'Account type',
'type': 'text'},
{'description': ['Percentage', '"na" : Not available or applicable'],
'name': 'allocation_rate',
'sub_type': 'general',
'title': 'Allocation rate',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/contribution-rates-allocation-rates-and-applicable-wage-ceiling/resources/cpf-contribution-rates-2017-05-15T08-17-57Z.csv',
'65db3d22-9b16-43a3-8d4b-a2133043a78b',
[{'format': 'YYYY-MM',
'name': 'effective_from',
'sub_type': 'month',
'title': 'Effective from',
'type': 'datetime'},
{'name': 'age_grp',
'sub_type': 'general',
'title': 'Employee age group',
'type': 'text'},
{'description': 'Refers to employee or employer',
'name': 'contributing_party',
'sub_type': 'general',
'title': 'Contributing party',
'type': 'text'},
{'name': 'contribution_rate',
'sub_type': 'general',
'title': 'Contribution rate',
'type': 'numeric',
'unit_of_measure': 'Percentage'}],
'CSV'),
('https://storage.data.gov.sg/contribution-to-growth-in-gross-domestic-product-at-2010-market-prices-by-industry-annual/resources/contribution-to-growth-in-gross-domestic-product-at-2010-market-prices-annual-2017-05-28T16-15-04Z.csv',
'3bb4ec7c-25fc-4eb2-873d-5e27e0979ae7',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Contribution To Growth',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/contribution-to-growth-in-gross-domestic-product-at-2010-market-prices-by-industry-annual/resources/contribution-to-growth-in-gross-domestic-product-at-2010-market-prices-by-industry-annual-2017-05-28T16-15-11Z.csv',
'7b5dfdd7-7890-4835-95c0-1f4252b50712',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Industry',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Contribution To Growth',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/contribution-to-growth-in-gross-domestic-product-at-2010-market-prices-by-industry-annual/resources/contribution-to-growth-in-gross-domestic-product-at-2010-market-prices-by-detailed-industr-2017-05-28T16-15-17Z.csv',
'5dc1ecfe-ef1a-4b45-b270-dc6ef89ceaea',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Industry',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Detailed Industry',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Contribution To Growth',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/contribution-to-growth-in-gross-domestic-product-at-2010-market-prices-by-industry-quarterly/resources/contribution-to-growth-in-gross-domestic-product-at-2010-market-prices-quarterly-2017-05-28T16-15-25Z.csv',
'53a21393-5d8b-4f33-ada0-de5801de40f4',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Contribution To Growth',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/contribution-to-growth-in-gross-domestic-product-at-2010-market-prices-by-industry-quarterly/resources/contribution-to-growth-in-gross-domestic-product-at-2010-market-prices-by-industry-quarte-2017-05-28T16-15-32Z.csv',
'b5f16e20-7d1e-4a85-9d44-049e289d701c',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Industry',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Contribution To Growth',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/contribution-to-growth-in-gross-domestic-product-at-2010-market-prices-by-industry-quarterly/resources/contribution-to-growth-in-gross-domestic-product-at-2010-market-prices-by-detailed-industr-2017-05-28T16-15-42Z.csv',
'cc744eba-eac0-423a-a594-298d42bc2a91',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Industry',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Detailed Industry',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Contribution To Growth',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/contribution-to-growth-in-total-demand-at-2010-market-prices-annual/resources/contribution-to-growth-in-total-demand-at-2010-market-prices-annual-2017-05-28T16-15-47Z.csv',
'7bb280a2-f06e-4769-b337-7f7a8286e500',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total Demand',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Contribution to Growth',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/contribution-to-growth-in-total-demand-at-2010-market-prices-annual/resources/contribution-to-growth-of-total-demand-components-at-2010-market-prices-annual-2017-05-28T16-15-53Z.csv',
'39c79971-f4fa-4a32-9e43-3a0d5eafe61c',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total Demand',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Total Demand Components',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Contribution to Growth',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/contribution-to-growth-in-total-demand-at-2010-market-prices-annual/resources/contribution-to-growth-of-total-domestic-demand-components-at-2010-market-prices-annual-2017-05-28T16-16-00Z.csv',
'84e5c7fc-8cae-44f0-a3c6-028e4913784a',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total Demand',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Total Demand Components',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Total Domestic Demand Components',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Contribution to Growth',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/contribution-to-growth-in-total-demand-at-2010-market-prices-annual/resources/contribution-to-growth-of-final-domestic-demand-components-at-2010-market-prices-2017-05-28T16-16-09Z.csv',
'6f12cfe6-2512-42df-a441-ca9302c152a5',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total Demand',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Total Demand Components',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Total Domestic Demand Components',
'type': 'text'},
{'name': 'level_4',
'sub_type': 'general',
'title': 'Final Domestic Demand Components',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Contribution to Growth',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/contribution-to-growth-in-total-demand-at-2010-market-prices-annual/resources/contribution-to-growth-of-final-domestic-demand-components-by-public-private-breakdown-2017-05-28T16-16-16Z.csv',
'81a0d1f8-111c-4f0c-9905-af05e144d98c',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total Demand',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Total Demand Components',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Total Domestic Demand Components',
'type': 'text'},
{'name': 'level_4',
'sub_type': 'general',
'title': 'Final Domestic Demand Components',
'type': 'text'},
{'name': 'level_5',
'sub_type': 'general',
'title': 'Public/Private',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Contribution to Growth',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/contribution-to-growth-in-total-demand-at-2010-market-prices-quarterly/resources/contribution-to-growth-in-total-demand-at-2010-market-prices-quarterly-2017-05-28T16-16-23Z.csv',
'e6852ec6-17a4-4e4e-9076-7963a80accc3',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total Demand',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Contribution to Growth',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/contribution-to-growth-in-total-demand-at-2010-market-prices-quarterly/resources/contribution-to-growth-of-total-demand-components-at-2010-market-prices-quarterly-2017-05-28T16-16-30Z.csv',
'd4827a80-08c5-4512-a63d-475456f78248',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total Demand',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Total Demand Components',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Contribution to Growth',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/contribution-to-growth-in-total-demand-at-2010-market-prices-quarterly/resources/contribution-to-growth-of-total-domestic-demand-components-at-2010-market-prices-quarterl-2017-05-28T16-16-37Z.csv',
'd4383dc1-a9d0-4eb9-a8cd-a01ac5056e72',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total Demand',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Total Demand Components',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Total Domestic Demand Components',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Contribution to Growth',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/contribution-to-growth-in-total-demand-at-2010-market-prices-quarterly/resources/contribution-to-growth-of-final-domestic-demand-components-at-2010-market-prices-2017-05-28T16-16-45Z.csv',
'f60fa826-e3e2-44b5-89df-feb0e743e43e',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total Demand',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Total Demand Components',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Total Domestic Demand Components',
'type': 'text'},
{'name': 'level_4',
'sub_type': 'general',
'title': 'Final Domestic Demand Components',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Contribution to Growth',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/contribution-to-growth-in-total-demand-at-2010-market-prices-quarterly/resources/contribution-to-growth-of-final-domestic-demand-components-by-public-private-breakdown-2017-05-28T16-16-53Z.csv',
'1803a075-b9ba-4e44-98de-cc30b49585a2',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total Demand',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Total Demand Components',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Total Domestic Demand Components',
'type': 'text'},
{'name': 'level_4',
'sub_type': 'general',
'title': 'Final Domestic Demand Components',
'type': 'text'},
{'name': 'level_5',
'sub_type': 'general',
'title': 'Public/Private',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Contribution to Growth',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/convicted-penal-admission/resources/convicted-penal-admission-2017-02-27T08-49-10Z.csv',
'67d5276b-ff0e-4c66-b49e-07cb768332a8',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'number_of_admissions',
'sub_type': 'general',
'title': 'Number Of Admissions',
'type': 'numeric',
'unit_of_measure': 'Number Of Admissions'}],
'CSV'),
('https://storage.data.gov.sg/convicted-penal-admission/resources/convicted-penal-admission-by-age-group-2017-02-27T08-56-51Z.csv',
'8177ca36-9dac-4aeb-8eb7-62698e9a4e26',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'admissions_by_age_group',
'sub_type': 'general',
'title': 'Admissions By Age Group',
'type': 'text'},
{'name': 'number_of_admissions',
'sub_type': 'general',
'title': 'Number Of Admissions',
'type': 'numeric',
'unit_of_measure': 'Number of Inmates'}],
'CSV'),
('https://storage.data.gov.sg/convicted-penal-admission/resources/convicted-penal-admission-by-education-level-2017-02-27T08-58-21Z.csv',
'936f996e-82d5-4dde-8805-261e2941f566',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'admissions_by_education_level',
'sub_type': 'general',
'title': 'Admissions By Education Level',
'type': 'text'},
{'name': 'number_of_admissions',
'sub_type': 'general',
'title': 'Number Of Admissions',
'type': 'numeric',
'unit_of_measure': 'Number of inmates'}],
'CSV'),
('https://storage.data.gov.sg/convicted-penal-admission/resources/convicted-penal-admission-by-gender-2017-02-27T08-59-26Z.csv',
'b143b3c9-76ac-4df7-90ad-967d4175ed8b',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'admissions_by_gender',
'sub_type': 'general',
'title': 'Admissions By Gender',
'type': 'text'},
{'name': 'number_of_admissions',
'sub_type': 'general',
'title': 'Number Of Admissions',
'type': 'numeric',
'unit_of_measure': 'Number of Inmates'}],
'CSV'),
('https://storage.data.gov.sg/convicted-penal-admission/resources/convicted-penal-admission-by-offence-group-2017-02-27T09-00-31Z.csv',
'86991d85-c2db-41b2-8290-daf4bbf80668',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'admissions_by_main_offence_group',
'sub_type': 'general',
'title': 'Admissions By Main Offence Group',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'number_of_admissions',
'sub_type': 'general',
'title': 'Number Of Admissions',
'type': 'numeric',
'unit_of_measure': 'Number of Inmates'}],
'CSV'),
('https://storage.data.gov.sg/convicted-penal-inmates-population/resources/convicted-penal-population-2017-02-27T08-24-00Z.csv',
'b53a919f-31df-4077-92c4-5d629c6038b1',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'number_of_population',
'sub_type': 'general',
'title': 'Number Of Population',
'type': 'numeric',
'unit_of_measure': 'Number of Inmates'}],
'CSV'),
('https://storage.data.gov.sg/convicted-penal-inmates-population/resources/convicted-penal-population-by-age-group-2017-06-16T03-32-34Z.csv',
'5c59d146-acb2-48d3-aac3-1de59eb20633',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'population_by_age_group',
'sub_type': 'general',
'title': 'Population By Age Group',
'type': 'text'},
{'name': 'number_of_population',
'sub_type': 'general',
'title': 'Number Of Population',
'type': 'numeric',
'unit_of_measure': 'Number of Inmates'}],
'CSV'),
('https://storage.data.gov.sg/convicted-penal-inmates-population/resources/convicted-penal-population-by-education-level-2017-06-16T03-37-13Z.csv',
'3ccfe79a-dcd1-427b-be63-e507a1ee7480',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'population_by_education_level',
'sub_type': 'general',
'title': 'Population By Education Level',
'type': 'text'},
{'name': 'number_of_population',
'sub_type': 'general',
'title': 'Number Of Population',
'type': 'numeric',
'unit_of_measure': 'Number of Inmates'}],
'CSV'),
('https://storage.data.gov.sg/convicted-penal-inmates-population/resources/convicted-penal-population-by-gender-2017-02-27T08-30-17Z.csv',
'7070dc26-a95a-4560-8670-6682705a9cff',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'population_by_gender',
'sub_type': 'general',
'title': 'Population By Gender',
'type': 'text'},
{'name': 'number_of_population',
'sub_type': 'general',
'title': 'Number Of Population',
'type': 'numeric',
'unit_of_measure': 'Number of Inmates'}],
'CSV'),
('https://storage.data.gov.sg/convicted-penal-inmates-population/resources/convicted-penal-population-by-offence-group-2017-02-27T08-31-36Z.csv',
'e06a88bb-8a2b-4c88-a5e1-d8a17fbb80cb',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'population_by_main_offence_group',
'sub_type': 'general',
'title': 'Population By Main Offence Group',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'number_of_population',
'sub_type': 'general',
'title': 'Number Of Population',
'type': 'numeric',
'unit_of_measure': 'Number of Inmates'}],
'CSV'),
('https://storage.data.gov.sg/convicted-penal-inmates-population/resources/convicted-penal-population-by-age-group-and-offence-group-2017-02-27T08-33-01Z.csv',
'1f644f67-a7e4-44e0-bd5a-307ebb5baded',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'population_by_age_group',
'sub_type': 'general',
'title': 'Population By Age Group',
'type': 'text'},
{'name': 'population_by_main_offence_group',
'sub_type': 'general',
'title': 'Population By Main Offence Group',
'type': 'text'},
{'name': 'number_of_population',
'sub_type': 'general',
'title': 'Number Of Population',
'type': 'numeric',
'unit_of_measure': 'Number of Inmates'}],
'CSV'),
('https://storage.data.gov.sg/convicted-penal-inmates-population/resources/convicted-penal-population-by-education-level-and-offence-group-2017-02-27T08-34-23Z.csv',
'046b6c78-26b2-4e2b-bbef-740dfb14a690',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'population_by_education_level',
'sub_type': 'general',
'title': 'Population By Education Level',
'type': 'text'},
{'name': 'population_by_main_offence_group',
'sub_type': 'general',
'title': 'Population By Main Offence Group',
'type': 'text'},
{'name': 'number_of_population',
'sub_type': 'general',
'title': 'Number Of Population',
'type': 'numeric',
'unit_of_measure': 'Number of Inmates'}],
'CSV'),
('https://storage.data.gov.sg/convicted-penal-inmates-population/resources/convicted-penal-population-by-gender-and-offence-group-2017-02-27T08-37-51Z.csv',
'ff6936e6-4fcd-4985-99d4-07d1486eedfe',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'population_by_gender',
'sub_type': 'general',
'title': 'Population By Gender',
'type': 'text'},
{'name': 'population_by_main_offence_group',
'sub_type': 'general',
'title': 'Population By Main Offence Group',
'type': 'text'},
{'name': 'number_of_population',
'sub_type': 'general',
'title': 'Number Of Population',
'type': 'numeric',
'unit_of_measure': 'Number of Inmates'}],
'CSV'),
('https://storage.data.gov.sg/convicted-penal-release/resources/convicted-penal-release-2017-02-27T08-19-18Z.csv',
'c67cb818-5f0c-48e4-92b0-098158304c55',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'number_of_releases',
'sub_type': 'general',
'title': 'Number Of Releases',
'type': 'numeric',
'unit_of_measure': 'Number of Inmates'}],
'CSV'),
('https://storage.data.gov.sg/convicted-penal-release/resources/convicted-penal-releases-by-gender-2017-02-27T08-20-32Z.csv',
'30f39191-cd23-4dc7-a037-c7776660d55e',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'releases_by_gender',
'sub_type': 'general',
'title': 'Releases By Gender',
'type': 'text'},
{'name': 'number_of_releases',
'sub_type': 'general',
'title': 'Number Of Releases',
'type': 'numeric',
'unit_of_measure': 'Number of Inmates'}],
'CSV'),
('https://storage.data.gov.sg/corporate-performance-approval-of-land-lots/resources/approval-of-land-lots-2016-12-23T07-00-26Z.csv',
'18a0acf4-b487-400a-a552-ca489ab5f724',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'number_of_approved_land_lots',
'sub_type': 'general',
'title': 'Number Of Approved Land Lots',
'type': 'numeric',
'unit_of_measure': 'No. of approved land lots'}],
'CSV'),
('https://storage.data.gov.sg/corporate-performance-approval-of-strata-lots/resources/approval-of-strata-lots-2016-12-23T06-59-11Z.csv',
'716502a0-1805-496b-82a2-54a0138b79de',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'number_of_approved_strata_lots',
'sub_type': 'general',
'title': 'Number Of Approved Strata Lots',
'type': 'numeric',
'unit_of_measure': 'No. of approved strata lots'}],
'CSV'),
('https://storage.data.gov.sg/cost-of-tax-collection-annual/resources/cost-of-tax-collection-2016-10-03T00-22-13Z.csv',
'9c9d18fa-0865-43c9-a24e-8a90c7303a40',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'name': 'cost_per_dollar_of_tax_collected',
'sub_type': 'general',
'title': 'Cost per Dollar of Tax Collected',
'type': 'numeric',
'unit_of_measure': 'cent'}],
'CSV'),
('https://storage.data.gov.sg/cpf-contributions-received-net-amount-withdrawn-annual/resources/cpf-contributions-received-annual-2017-04-19T06-42-11Z.csv',
'11fda2ce-004e-4fff-9c93-ee2208fa1b5e',
[{'format': 'YYYY',
'name': 'yr',
'sub_type': 'year',
'title': 'Yr',
'type': 'datetime'},
{'description': 'Figures are rounded to the nearest million dollars.',
'name': 'con_received',
'sub_type': 'general',
'title': 'Amount of CPF contributions received ',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/cpf-contributions-received-net-amount-withdrawn-annual/resources/net-amount-withdrawn-annual-2017-06-14T08-11-37Z.csv',
'23d7cbf8-bea7-410e-a939-5921014a31fc',
[{'format': 'YYYY',
'name': 'yr',
'sub_type': 'year',
'title': 'Yr',
'type': 'datetime'},
{'description': 'Figures are rounded to the nearest million dollars.',
'name': 'net_wdl_amt',
'sub_type': 'general',
'title': 'Net amount withdrawn',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/cpf-interest-rates/resources/cpf-interest-rates-2017-06-14T07-06-48Z.csv',
'ca512365-7f3a-4e5c-a7cd-8ea2807931b7',
[{'format': 'YYYY-MM',
'name': 'mth',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'description': 'Refers to Ordinary, Special, Medisave or Retirement Account',
'name': 'account_type',
'sub_type': 'general',
'title': 'Account type',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'interest_rate',
'sub_type': 'general',
'title': 'Interest rate',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/cpi-for-households-in-different-income-groups-base-year-2014-100-annual/resources/cpi-for-households-by-income-group-all-items-2017-01-23T16-07-08Z.csv',
'99332bec-b360-4f38-83c5-69edb0f6d37d',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Income Group',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Index',
'type': 'numeric',
'unit_of_measure': 'Index'}],
'CSV'),
('https://storage.data.gov.sg/cpi-for-households-in-different-income-groups-base-year-2014-100-annual/resources/cpi-for-households-by-income-group-and-division-all-items-2017-01-23T16-07-12Z.csv',
'1c54b9b3-a85e-4975-bfe2-f9dc47b61605',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Income Group',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Division',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'value',
'sub_type': 'general',
'title': 'Index',
'type': 'numeric',
'unit_of_measure': 'Index'}],
'CSV'),
('https://storage.data.gov.sg/credit-and-charge-card-statistics/resources/credit-and-charge-card-statistics-annual-2016-02-11T10-33-16Z.csv',
'aae7f304-f003-4c82-83e2-c0c05590f061',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'cards_main',
'sub_type': 'general',
'title': 'Cards - Main',
'type': 'numeric',
'unit_of_measure': 'No. of Cards'},
{'name': 'cards_supplementary',
'sub_type': 'general',
'title': 'Cards - Supplementary',
'type': 'numeric',
'unit_of_measure': 'No. of Cards'},
{'name': 'total_billings',
'sub_type': 'general',
'title': 'Total Billings',
'type': 'numeric',
'unit_of_measure': 'S$ Million'},
{'name': 'rollover_balance',
'sub_type': 'general',
'title': 'Rollover Balance',
'type': 'numeric',
'unit_of_measure': 'S$ Million'},
{'name': 'bad_debts_written_off',
'sub_type': 'general',
'title': 'Bad Debts Written Off',
'type': 'numeric',
'unit_of_measure': 'S$ Million'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'charge_off_rates',
'sub_type': 'percentage',
'title': 'Charge Off Rates',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/credit-and-charge-card-statistics/resources/credit-and-charge-card-statistics-monthly-2016-02-11T10-35-54Z.csv',
'abb9c5b4-2d9f-4c97-bc19-b701dbb074d4',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'cards_main',
'sub_type': 'general',
'title': 'Cards - Main',
'type': 'numeric',
'unit_of_measure': 'No. of Cards'},
{'name': 'cards_supplementary',
'sub_type': 'general',
'title': 'Cards - Supplementary',
'type': 'numeric',
'unit_of_measure': 'No. of Cards'},
{'name': 'total_billings',
'sub_type': 'general',
'title': 'Total Billings',
'type': 'numeric',
'unit_of_measure': 'S$ Million'},
{'name': 'rollover_balance',
'sub_type': 'general',
'title': 'Rollover Balance',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/crude-death-rates-by-ethnic-group-from-1971-onwards/resources/crude-birth-death-natural-increase-rates-by-ethnic-group-from-1971-2015-2016-07-13T03-37-50Z.csv',
'1c8ea8a5-3f1f-43be-ad36-3e510adbd2d3',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'ethnic_group',
'sub_type': 'general',
'title': 'Ethnic Group',
'type': 'text'},
{'name': 'crude_death_rate',
'sub_type': 'general',
'title': 'Crude Death Rate',
'type': 'numeric',
'unit_of_measure': 'No. of Deaths per thousand population'},
{'name': 'crude_birth_rate',
'sub_type': 'general',
'title': 'Crude Birth Rate',
'type': 'numeric',
'unit_of_measure': 'No. of Live Births per thousand population'},
{'name': 'crude_natural_inc_rate',
'sub_type': 'general',
'title': 'Crude Natural Inc Rate',
'type': 'numeric',
'unit_of_measure': 'No. of Natural Increase per thousand population'}],
'CSV'),
('https://storage.data.gov.sg/cumulative-area-reclaimed-for-engineering-projects/resources/cumulative-area-reclaimed-for-engineering-projects-2016-11-07T07-10-48Z.csv',
'84d2e9ce-e210-4755-b320-7f884699d7c5',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial year',
'type': 'datetime'},
{'name': 'engineering_project',
'sub_type': 'general',
'title': 'Engineering Project',
'type': 'text'},
{'name': 'area_reclaimed',
'sub_type': 'general',
'title': 'Area Reclaimed',
'type': 'numeric',
'unit_of_measure': 'Hectares'}],
'CSV'),
('https://storage.data.gov.sg/cumulative-number-of-sites-under-sers-since-1995/resources/cumulative-number-of-sites-under-sers-since-1995-2017-03-14T04-39-56Z.csv',
'6f489df0-7199-450a-82e6-d00af9532ed1',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial year',
'type': 'datetime'},
{'name': 'status',
'sub_type': 'general',
'title': 'Status',
'type': 'text'},
{'name': 'no_of_sites',
'sub_type': 'general',
'title': 'No. of Sites',
'type': 'numeric',
'unit_of_measure': 'No. of Sites'}],
'CSV'),
('https://storage.data.gov.sg/cumulative-units-completed-since-1960/resources/cumulative-dwelling-units-completed-since-1960-2017-05-15T08-46-04Z.csv',
'76987fe1-e59f-427a-b27e-addc75024538',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'name': 'dwelling_type',
'sub_type': 'general',
'title': 'Dwelling Type',
'type': 'text'},
{'description': '"na" : data is not available',
'name': 'no_of_units',
'sub_type': 'general',
'title': 'No. of Units',
'type': 'numeric',
'unit_of_measure': 'No. of Units'}],
'CSV'),
('https://storage.data.gov.sg/cumulative-units-completed-since-1960/resources/cumulative-hdb-commercial-properties-completed-since-1960-2017-03-14T07-00-09Z.csv',
'cd9c99d4-34e4-45ac-a7be-e813b8ad44bc',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'name': 'category',
'sub_type': 'general',
'title': 'Category',
'type': 'text'},
{'name': 'no_of_units',
'sub_type': 'general',
'title': 'No. of Units',
'type': 'numeric',
'unit_of_measure': 'No. of Units'}],
'CSV'),
('https://storage.data.gov.sg/cumulative-units-completed-since-1960/resources/cumulative-industrial-properties-completed-since-1960-2017-03-14T06-59-55Z.csv',
'cdaa8ea9-9601-4f8a-9bef-4f772e09b5bf',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'name': 'category',
'sub_type': 'general',
'title': 'Category',
'type': 'text'},
{'name': 'no_of_units',
'sub_type': 'general',
'title': 'No. of Units',
'type': 'numeric',
'unit_of_measure': 'No. of Units'}],
'CSV'),
('https://storage.data.gov.sg/cumulative-units-completed-since-1960/resources/cumulative-shops-and-recreational-facilities-completed-since-1960-2017-03-14T07-07-00Z.csv',
'f8a51d67-6381-4c48-be91-35a88521e0e9',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'name': 'category',
'sub_type': 'general',
'title': 'Category',
'type': 'text'},
{'name': 'no_of_units',
'sub_type': 'general',
'title': 'No. of Units',
'type': 'numeric',
'unit_of_measure': 'No. of Units'}],
'CSV'),
('https://storage.data.gov.sg/cumulative-units-completed-since-1960/resources/cumulative-hdb-government-or-institutional-facilities-completed-since-1960-2017-05-15T08-38-57Z.csv',
'c1d57b37-c9af-4103-b078-8f8bce4ff963',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'name': 'category',
'sub_type': 'general',
'title': 'Category',
'type': 'text'},
{'name': 'no_of_units',
'sub_type': 'general',
'title': 'No. of Units',
'type': 'numeric',
'unit_of_measure': 'No. of Units'}],
'CSV'),
('https://storage.data.gov.sg/data-on-inhalant-abusers-arrested/resources/data-on-inhalant-abusers-arrested-by-status-2016-07-01T09-22-36Z.csv',
'ab75ed14-5a82-480a-b3c9-72e46176e036',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'status',
'sub_type': 'general',
'title': 'Status',
'type': 'text'},
{'name': 'no_of_inhalant_abusers_arrested',
'sub_type': 'general',
'title': 'No Of Inhalant Abusers Arrested',
'type': 'numeric',
'unit_of_measure': 'No Of Inhalant Abusers Arrested'}],
'CSV'),
('https://storage.data.gov.sg/data-on-inhalant-abusers-arrested/resources/data-on-inhalant-abusers-arrested-by-age-group-2016-07-01T08-58-56Z.csv',
'ec8b68a5-ef76-45a0-b555-e4a50116fc46',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'status',
'sub_type': 'general',
'title': 'Status',
'type': 'text'},
{'name': 'age_group',
'sub_type': 'general',
'title': 'Age Group',
'type': 'text'},
{'name': 'no_of_inhalant_abusers_arrested',
'sub_type': 'general',
'title': 'No. Of Inhalant Abusers Arrested',
'type': 'numeric',
'unit_of_measure': 'No. Of Inhalant Abusers Arrested'}],
'CSV'),
('https://storage.data.gov.sg/data-on-inhalant-abusers-arrested/resources/data-on-inhalant-abusers-arrested-by-ethnic-group-2016-07-01T09-24-40Z.csv',
'7accfce4-306f-4074-9108-3b6dba14d1ab',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'status',
'sub_type': 'general',
'title': 'Status',
'type': 'text'},
{'name': 'race', 'sub_type': 'general', 'title': 'Race', 'type': 'text'},
{'name': 'no_of_inhalant_abusers_arrested',
'sub_type': 'general',
'title': 'No. Of Inhalant Abusers Arrested',
'type': 'numeric',
'unit_of_measure': 'No. Of Inhalant Abusers Arrested'}],
'CSV'),
('https://storage.data.gov.sg/data-on-inhalant-abusers-arrested/resources/data-on-inhalant-abusers-arrested-by-gender-2016-07-01T09-26-36Z.csv',
'79f55383-33a6-463a-8d79-4bdd467ee766',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'status',
'sub_type': 'general',
'title': 'Status',
'type': 'text'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'name': 'no_of_inhalant_abusers_arrested',
'sub_type': 'general',
'title': 'No. Of Inhalant Abusers Arrested',
'type': 'numeric',
'unit_of_measure': 'No. Of Inhalant Abusers Arrested'}],
'CSV'),
('https://storage.data.gov.sg/dataset-listing/resources/data-gov-sg-dataset-listing-2017-04-21T01-13-01Z.csv',
'85be5dcc-93f6-4d36-ae10-c85b0907948c',
[{'name': 'organisation',
'sub_type': 'general',
'title': 'Organisation',
'type': 'text'},
{'name': 'dataset_id',
'sub_type': 'general',
'title': 'Dataset ID',
'type': 'text'},
{'name': 'dataset_name',
'sub_type': 'general',
'title': 'Dataset Name',
'type': 'text'},
{'format': 'YYYY-MM-DD',
'name': 'date_created',
'sub_type': 'date',
'title': 'Date created',
'type': 'datetime'},
{'format': 'YYYY-MM-DD',
'name': 'last_updated',
'sub_type': 'date',
'title': 'Last updated',
'type': 'datetime'},
{'name': 'description',
'sub_type': 'general',
'title': 'Description',
'type': 'text'},
{'name': 'frequency',
'sub_type': 'general',
'title': 'Frequency',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'format': 'YYYY-MM-DD',
'name': 'coverage_start',
'sub_type': 'date',
'title': 'Coverage Start',
'type': 'datetime'},
{'description': '"na" : Data not available or not applicable',
'format': 'YYYY-MM-DD',
'name': 'coverage_end',
'sub_type': 'date',
'title': 'Coverage End',
'type': 'datetime'},
{'name': 'resource_id',
'sub_type': 'general',
'title': 'Resource ID',
'type': 'text'},
{'name': 'resource_name',
'sub_type': 'general',
'title': 'Resource Name',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'resource_description',
'sub_type': 'general',
'title': 'Resource Description',
'type': 'text'},
{'name': 'resource_format',
'sub_type': 'general',
'title': 'Resource Format',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/death-by-cause-and-age-group/resources/cause-of-death-by-age-group-2016-08-04T08-56-16Z.csv',
'04787aed-3c46-4854-839f-6c0755a2ffdc',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'icd_main_category',
'sub_type': 'general',
'title': 'Icd main category',
'type': 'text'},
{'name': 'icd_detail_category',
'sub_type': 'general',
'title': 'Icd detail category',
'type': 'text'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'description': 'Age group',
'name': 'death_age',
'sub_type': 'general',
'title': 'Death Age',
'type': 'text'},
{'name': 'death_count',
'sub_type': 'general',
'title': 'Death count',
'type': 'numeric',
'unit_of_measure': 'Number of death'}],
'CSV'),
('https://storage.data.gov.sg/death-rates-annual/resources/crude-death-rate-age-standardised-death-rate-2017-05-28T16-17-07Z.csv',
'db3aa9df-d7c2-460c-a50a-0a99ab74ba6a',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Indicator',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Per Thousand Residents'}],
'CSV'),
('https://storage.data.gov.sg/death-rates-annual/resources/infant-mortality-rate-by-sex-neonatal-mortality-rate-under-5-mortality-rate-by-sex-2017-05-28T16-17-13Z.csv',
'33c45684-0120-47ab-8c36-196573a76c64',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Indicator',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Per Thousand Resident Live-Births'}],
'CSV'),
('https://storage.data.gov.sg/death-rates-annual/resources/perinatal-mortality-rate-2017-05-28T16-17-18Z.csv',
'f06a656c-6017-485d-b3d4-11dc4d436109',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Indicator',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Per Thousand Live-births And Still-births'}],
'CSV'),
('https://storage.data.gov.sg/death-rates-annual/resources/maternal-mortality-rate-2017-05-28T16-17-23Z.csv',
'5d747680-b6e0-4168-8ae9-eac8f27f5599',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Indicator',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Per Hundred Thousand Live-births And Still-births'}],
'CSV'),
('https://storage.data.gov.sg/deaths-and-death-rates-by-cause/resources/deaths-and-death-rates-by-cause-2016-08-04T06-49-42Z.csv',
'c408bc74-50e3-40ae-968f-217744965c5b',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'description': '1st level grouping of similar cause of death listed in ICD-10',
'name': 'icd_main_category',
'sub_type': 'general',
'title': 'ICD Main Category',
'type': 'text'},
{'description': '2nd level grouping of similar cause of death listed in ICD-10',
'name': 'icd_detail_category',
'sub_type': 'general',
'title': 'ICD Detail Category',
'type': 'text'},
{'name': 'death_count',
'sub_type': 'general',
'title': 'No. of Deaths',
'type': 'numeric',
'unit_of_measure': 'No. of Deaths'},
{'name': 'death_rate',
'sub_type': 'general',
'title': 'Death Rate',
'type': 'numeric',
'unit_of_measure': 'Death Rate per 100,000 Residents'}],
'CSV'),
('https://storage.data.gov.sg/deaths-by-age-ethnic-group-and-gender/resources/deaths-by-age-ethnic-group-and-gender-2016-09-22T00-50-16Z.csv',
'1a8eadc6-9532-4a89-990f-b8da4b36ba7e',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'ethnic_group',
'sub_type': 'general',
'title': 'Ethnic Group',
'type': 'text'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'description': 'Death age in Years',
'name': 'death_age',
'sub_type': 'general',
'title': 'Death Age',
'type': 'text'},
{'description': ['Infant death or non Infant death.',
'Infant death are death below 1 year of age.'],
'name': 'infant_indicator',
'sub_type': 'general',
'title': 'Infant Indicator',
'type': 'text'},
{'description': ['Death age in days and months',
'"na" : Non Infant deaths'],
'name': 'infant_death_age',
'sub_type': 'general',
'title': 'Infant Death Age',
'type': 'text'},
{'name': 'death_count',
'sub_type': 'general',
'title': 'Death Count',
'type': 'numeric',
'unit_of_measure': 'No. of Deaths'}],
'CSV'),
('https://storage.data.gov.sg/deaths-by-age-group-marital-status-and-gender/resources/deaths-by-age-group-marital-status-and-gender-2016-08-04T06-24-29Z.csv',
'51c380db-2b6f-41bd-9202-0fb01cdf1a6a',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'marital_status',
'sub_type': 'general',
'title': 'Marital Status',
'type': 'text'},
{'name': 'death_age_group',
'sub_type': 'general',
'title': 'Death Age Group',
'type': 'text'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'name': 'death_count',
'sub_type': 'general',
'title': 'Death Count',
'type': 'numeric',
'unit_of_measure': 'Number of Deaths'}],
'CSV'),
('https://storage.data.gov.sg/deaths-by-age-group-occupation-and-sex/resources/deaths-by-age-group-occupation-and-sex-2016-08-05T02-32-18Z.csv',
'c7eb9b89-b99b-46a5-a97f-7c51b71e1deb',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'sex', 'sub_type': 'general', 'title': 'Sex', 'type': 'text'},
{'name': 'age_group',
'sub_type': 'general',
'title': 'Age Group',
'type': 'text'},
{'name': 'occupation',
'sub_type': 'general',
'title': 'Occupation',
'type': 'text'},
{'name': 'deaths',
'sub_type': 'general',
'title': 'Deaths',
'type': 'numeric',
'unit_of_measure': 'No. of Deaths'}],
'CSV'),
('https://storage.data.gov.sg/deaths-by-cause-and-type-of-certification/resources/deaths-by-cause-and-type-of-certification-2016-08-08T03-23-12Z.csv',
'646e62ac-54ae-4d5d-bc14-962cea854c61',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'icd_main_category',
'sub_type': 'general',
'title': 'Icd main category',
'type': 'text'},
{'name': 'icd_detail_category',
'sub_type': 'general',
'title': 'Icd detail category',
'type': 'text'},
{'description': 'by doctors or coroners',
'name': 'certified_by',
'sub_type': 'general',
'title': 'Certified By',
'type': 'text'},
{'name': 'death_count',
'sub_type': 'general',
'title': 'Death count',
'type': 'numeric',
'unit_of_measure': 'Number of Deaths'}],
'CSV'),
('https://storage.data.gov.sg/deaths-by-place-of-occurrence-and-ethnic-group/resources/deaths-by-place-of-occurrence-and-ethnic-group-2016-08-04T05-47-25Z.csv',
'892f3632-1021-4a68-96b8-105474f6be1f',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'race', 'sub_type': 'general', 'title': 'Race', 'type': 'text'},
{'name': 'place_of_occurrence',
'sub_type': 'general',
'title': 'Place Of Occurrence',
'type': 'text'},
{'description': 'Infant deaths are age at death is less than 1 yrs.',
'name': 'infant_indicator',
'sub_type': 'general',
'title': 'Infant Indicator',
'type': 'text'},
{'name': 'death_count',
'sub_type': 'general',
'title': 'Death Count',
'type': 'numeric',
'unit_of_measure': 'number of deaths'}],
'CSV'),
('https://storage.data.gov.sg/deflators-of-expenditure-on-gross-domestic-product-2010-100-annual/resources/deflators-of-expenditure-on-gross-domestic-product-2010-100-annual-2017-05-28T16-17-29Z.csv',
'50cd88da-488d-4b1c-b059-1a486b86bc0a',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Deflator',
'type': 'numeric',
'unit_of_measure': 'Index'}],
'CSV'),
('https://storage.data.gov.sg/deflators-of-expenditure-on-gross-domestic-product-2010-100-annual/resources/deflators-of-expenditure-on-gdp-by-consumption-expenditure-2010-100-annual-2017-05-28T16-17-32Z.csv',
'7ab8f730-bd01-4436-8d74-cfd36e98fd69',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Consumption Expenditure',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Deflator',
'type': 'numeric',
'unit_of_measure': 'Index'}],
'CSV'),
('https://storage.data.gov.sg/demographic-profile-of-drug-abusers/resources/drug-abusers-by-status-2016-07-01T09-35-55Z.csv',
'07553b43-2277-4497-9873-a00a92f37f3e',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'status',
'sub_type': 'general',
'title': 'Status',
'type': 'text'},
{'name': 'no_of_drug_abusers',
'sub_type': 'general',
'title': 'No Of Drug Abusers',
'type': 'numeric',
'unit_of_measure': 'No Of Drug Abusers'}],
'CSV'),
('https://storage.data.gov.sg/demographic-profile-of-drug-abusers/resources/drug-abusers-by-major-drugs-of-abuse-2016-07-01T09-37-06Z.csv',
'7bb2d879-c0b7-4887-af83-3486bbcd0b0c',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'status',
'sub_type': 'general',
'title': 'Status',
'type': 'text'},
{'name': 'drug_of_abuse',
'sub_type': 'general',
'title': 'Drug Of Abuse',
'type': 'text'},
{'name': 'no_of_drug_abusers',
'sub_type': 'general',
'title': 'No Of Drug Abusers',
'type': 'numeric',
'unit_of_measure': 'No Of Drug Abusers'}],
'CSV'),
('https://storage.data.gov.sg/demographic-profile-of-drug-abusers/resources/drug-abusers-by-age-group-2016-07-01T09-42-58Z.csv',
'becd5ec5-9f45-4646-bf26-456d3a1b574a',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'status',
'sub_type': 'general',
'title': 'Status',
'type': 'text'},
{'name': 'age_group',
'sub_type': 'general',
'title': 'Age Group',
'type': 'text'},
{'name': 'no_of_drug_abusers',
'sub_type': 'general',
'title': 'No Of Drug Abusers',
'type': 'numeric',
'unit_of_measure': 'No Of Drug Abusers'}],
'CSV'),
('https://storage.data.gov.sg/demographic-profile-of-drug-abusers/resources/drug-abusers-by-ethnic-group-2016-07-01T09-45-40Z.csv',
'0bfb208d-17f8-40c6-a0e9-1cdb302cf019',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'status',
'sub_type': 'general',
'title': 'Status',
'type': 'text'},
{'name': 'ethnic_group',
'sub_type': 'general',
'title': 'Ethnic Group',
'type': 'text'},
{'name': 'no_of_drug_abusers',
'sub_type': 'general',
'title': 'No Of Drug Abusers',
'type': 'numeric',
'unit_of_measure': 'No Of Drug Abusers'}],
'CSV'),
('https://storage.data.gov.sg/demographic-profile-of-drug-abusers/resources/drug-abusers-by-gender-2016-07-01T09-49-07Z.csv',
'81181cb9-71e4-4a01-b4e2-265569258dae',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'status',
'sub_type': 'general',
'title': 'Status',
'type': 'text'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'name': 'no_of_drug_abusers',
'sub_type': 'general',
'title': 'No Of Drug Abusers',
'type': 'numeric',
'unit_of_measure': 'No Of Drug Abusers'}],
'CSV'),
('https://storage.data.gov.sg/dental-index-dental-health-status-of-the-school-children-at-12-and-15-years-old/resources/dental-index-dental-health-status-of-the-school-children-at-12-and-15-years-old-2017-01-19T02-11-03Z.csv',
'a87b9e32-adc9-4500-9519-507187f8fa15',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'age', 'sub_type': 'general', 'title': 'Age', 'type': 'text'},
{'name': 'dental_index',
'sub_type': 'general',
'title': 'Dental Index',
'type': 'numeric',
'unit_of_measure': 'DMFT Index'}],
'CSV'),
('https://storage.data.gov.sg/dependency-ratio-of-hdb-resident-population-by-ethnic-group-and-flat-type/resources/old-age-dependency-ratio-of-hdb-resident-population-by-ethnic-group-2017-05-05T07-34-08Z.csv',
'4b8f44f0-d58c-431a-92a0-82b69e0ff7d1',
[{'format': 'YYYY',
'name': 'shs_year',
'sub_type': 'year',
'title': 'SHS Year',
'type': 'datetime'},
{'name': 'ethnic_group',
'sub_type': 'general',
'title': 'Ethnic Group',
'type': 'text'},
{'name': 'old_age_depndency_ratio',
'sub_type': 'general',
'title': 'Old-age Dependency Ratio',
'type': 'numeric',
'unit_of_measure': 'Ratio'}],
'CSV'),
('https://storage.data.gov.sg/dependency-ratio-of-hdb-resident-population-by-ethnic-group-and-flat-type/resources/old-age-dependency-ratio-of-hdb-resident-population-by-flat-type-2017-05-05T07-34-24Z.csv',
'2ad70718-f96b-45a3-be9d-3fdc11630441',
[{'format': 'YYYY',
'name': 'shs_year',
'sub_type': 'year',
'title': 'SHS Year',
'type': 'datetime'},
{'name': 'flat_type',
'sub_type': 'general',
'title': 'Flat Type',
'type': 'text'},
{'name': 'old_age_dependency_ratio',
'sub_type': 'general',
'title': 'Old-age Dependency Ratio',
'type': 'numeric',
'unit_of_measure': 'Ratio'}],
'CSV'),
('https://storage.data.gov.sg/dependency-ratio-of-hdb-resident-population-by-ethnic-group-and-flat-type/resources/child-dependency-ratio-of-hdb-resident-population-by-ethnic-group-2017-05-05T07-34-37Z.csv',
'9ecb8812-feab-4ee2-95a3-a830c60ab366',
[{'format': 'YYYY',
'name': 'shs_year',
'sub_type': 'year',
'title': 'SHS Year',
'type': 'datetime'},
{'name': 'ethnic_group',
'sub_type': 'general',
'title': 'Ethnic Group',
'type': 'text'},
{'name': 'child_dependency_ratio',
'sub_type': 'general',
'title': 'Child Dependency Ratio',
'type': 'numeric',
'unit_of_measure': 'Ratio'}],
'CSV'),
('https://storage.data.gov.sg/dependency-ratio-of-hdb-resident-population-by-ethnic-group-and-flat-type/resources/child-dependency-ratio-of-hdb-resident-population-by-flat-type-2017-05-05T07-34-44Z.csv',
'9d4d7eac-cecb-47ec-b561-1977e391ec2e',
[{'format': 'YYYY',
'name': 'shs_year',
'sub_type': 'year',
'title': 'SHS Year',
'type': 'datetime'},
{'name': 'flat_type',
'sub_type': 'general',
'title': 'Flat Type',
'type': 'text'},
{'name': 'child_dependency_ratio',
'sub_type': 'general',
'title': 'Child Dependency Ratio',
'type': 'numeric',
'unit_of_measure': 'Ratio'}],
'CSV'),
('https://storage.data.gov.sg/distribution-monthly-household-expenditure-type-goods-services-detailed-income-quintile/resources/distribution-of-mhe-by-type-of-goods-and-services-broad-1-and-income-quintile-2016-08-02T06-55-07Z.csv',
'6d3087a6-a040-452f-a1ee-cf27ba81a98f',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Income Quintile',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Type of Goods and Services (Broad 1)',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Distribution',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/distribution-monthly-household-expenditure-type-goods-services-detailed-income-quintile/resources/distribution-of-mhe-by-type-of-goods-and-services-broad-2-and-income-quintile-2016-08-11T01-08-56Z.csv',
'2fc2ffe3-53d8-40b7-b8f2-32a66d9eadd7',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Income Quintile',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Type of Goods and Services (Broad 1)',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Type of Goods and Services (Broad 2)',
'type': 'text'},
{'description': ['Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'"-" : Data is negligible or not significant'],
'name': 'value',
'sub_type': 'percentage',
'title': 'Distribution',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/distribution-monthly-household-expenditure-type-goods-services-detailed-income-quintile/resources/distribution-of-mhe-by-type-of-goods-and-services-detailed-1-and-income-quintile-2016-08-11T01-09-51Z.csv',
'5de72566-0bd3-46b7-a4dd-9e43ed7318eb',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Income Quintile',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Type of Goods and Services (Broad 1)',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Type of Goods and Services (Broad 2)',
'type': 'text'},
{'name': 'level_4',
'sub_type': 'general',
'title': 'Type of Goods and Services (Detailed 1)',
'type': 'text'},
{'description': ['Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'"-" : Data is negligible or not significant'],
'name': 'value',
'sub_type': 'percentage',
'title': 'Distribution',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/distribution-monthly-household-expenditure-type-goods-services-detailed-income-quintile/resources/distribution-of-mhe-by-type-of-goods-and-services-detailed-2-and-income-quintile-2016-08-11T01-11-06Z.csv',
'4391d1ce-58aa-493f-b48a-deb837159485',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Income Quintile',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Type of Goods and Services (Broad 1)',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Type of Goods and Services (Broad 2)',
'type': 'text'},
{'name': 'level_4',
'sub_type': 'general',
'title': 'Type of Goods and Services (Detailed 1)',
'type': 'text'},
{'name': 'level_5',
'sub_type': 'general',
'title': 'Type of Goods and Services (Detailed 2)',
'type': 'text'},
{'description': ['Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'"-" : Data is negligible or not significant'],
'name': 'value',
'sub_type': 'percentage',
'title': 'Distribution',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/distribution-monthly-household-expenditure-type-goods-services-detailed-type-dwelling/resources/distribution-of-mhe-by-type-of-goods-and-services-broad-1-and-type-of-dwelling-2016-08-02T07-05-41Z.csv',
'12a9d8d9-b96b-4cec-a215-1e43a85d1e88',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Type of Dwelling',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Type of Goods and Services (Broad 1)',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Distribution',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/distribution-monthly-household-expenditure-type-goods-services-detailed-type-dwelling/resources/distribution-of-mhe-by-type-of-goods-and-services-broad-2-and-type-of-dwelling-2016-08-11T01-31-27Z.csv',
'd836951e-b2af-4072-889e-a58b89b7f9e2',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Type of Dwelling',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Type of Goods and Services (Broad 1)',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Type of Goods and Services (Broad 2)',
'type': 'text'},
{'description': ['Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'"-" : Data is negligible or not significant'],
'name': 'value',
'sub_type': 'percentage',
'title': 'Distribution',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/distribution-monthly-household-expenditure-type-goods-services-detailed-type-dwelling/resources/distribution-of-mhe-by-type-of-goods-and-services-detailed-1-and-type-of-dwelling-2016-08-11T01-29-41Z.csv',
'abe95e45-9c1e-4e8a-8646-6f386c28c2fb',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Type of Dwelling',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Type of Goods and Services (Broad 1)',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Type of Goods and Services (Broad 2)',
'type': 'text'},
{'name': 'level_4',
'sub_type': 'general',
'title': 'Type of Goods and Services (Detailed 1)',
'type': 'text'},
{'description': ['Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'"-" : Data is negligible or not significant'],
'name': 'value',
'sub_type': 'percentage',
'title': 'Distribution',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/distribution-monthly-household-expenditure-type-goods-services-detailed-type-dwelling/resources/distribution-of-mhe-by-type-of-goods-and-services-detailed-2-and-type-of-dwelling-2016-08-11T01-30-44Z.csv',
'2f6a99be-af58-4f6d-bb50-ab6c11a9906b',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Type of Dwelling',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Type of Goods and Services (Broad 1)',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Type of Goods and Services (Broad 2)',
'type': 'text'},
{'name': 'level_4',
'sub_type': 'general',
'title': 'Type of Goods and Services (Detailed 1)',
'type': 'text'},
{'name': 'level_5',
'sub_type': 'general',
'title': 'Type of Goods and Services (Detailed 2)',
'type': 'text'},
{'description': ['Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'"-" : Data is negligible or not significant'],
'name': 'value',
'sub_type': 'percentage',
'title': 'Distribution',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/distribution-of-disability-adjusted-life-years-by-broad-cause-group/resources/distribution-of-disability-adjusted-life-years-by-broad-cause-group-2017-03-28T02-38-51Z.csv',
'051f815e-326e-4973-b62f-61cad9ed3284',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'broad_cause_group',
'sub_type': 'general',
'title': 'Broad cause group',
'type': 'text'},
{'description': ['share of total DALYs',
'Percentages are expressed as a value over 100, i.e. "100" represents 100%'],
'name': 'percentage',
'sub_type': 'percentage',
'title': 'Percentage',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/distribution-of-monthly-household-expenditure-by-type-of-goods-and-services-quinquennial/resources/distribution-of-monthly-household-expenditure-by-type-of-goods-and-services-2016-06-17T03-00-43Z.csv',
'1c871bd6-db1c-4564-9a6b-e4fc4c9dc087',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Type of Goods and Services',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Value',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/distribution-of-monthly-household-expenditure-by-type-of-goods-and-services-quinquennial/resources/distribution-of-monthly-household-expenditure-imputed-rental-2016-06-17T03-00-44Z.csv',
'ef910a5d-fe63-4d1d-967c-cf1e1bc9039a',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Type of Goods and Services',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Imputed Rental of Owner-occupied Accomodation',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Value',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/divorce-rates-annual/resources/male-general-divorce-rate-2016-09-28T16-03-32Z.csv',
'ffd8bc8d-27a1-4bff-b9a5-449dae04392c',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'General Divorce Rate',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Death Rate',
'type': 'numeric',
'unit_of_measure': 'Per 1,000 Married Resident Males 20 Years & Over'}],
'CSV'),
('https://storage.data.gov.sg/divorce-rates-annual/resources/female-general-divorce-rate-2016-09-28T16-03-35Z.csv',
'd3f584c4-e89f-4dc1-bfb1-414da6781ba6',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'General Divorce Rate',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Death Rate',
'type': 'numeric',
'unit_of_measure': 'Per 1,000 Married Resident Females 20 Years & Over'}],
'CSV'),
('https://storage.data.gov.sg/divorce-rates-annual/resources/crude-divorce-rate-2016-07-18T02-38-05Z.csv',
'90fb728d-2444-4a59-aaf2-861956539518',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Crude Divorce Rate',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Death Rate',
'type': 'numeric',
'unit_of_measure': 'Per 1,000 Residents'}],
'CSV'),
('https://storage.data.gov.sg/divorce-rates-annual/resources/male-age-specific-divorce-rate-2016-07-18T02-38-07Z.csv',
'250d3cc9-1651-45ef-8b8a-243ac0097298',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'General Divorce Rate',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Age Group',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Death Rate',
'type': 'numeric',
'unit_of_measure': 'Per 1,000 Married Resident Males 20 Years & Over'}],
'CSV'),
('https://storage.data.gov.sg/divorce-rates-annual/resources/female-age-specific-divorce-rate-2016-07-18T02-38-10Z.csv',
'3ae4b4f4-3af3-43a0-8490-66af2087acde',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'General Divorce Rate',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Age Group',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Death Rate',
'type': 'numeric',
'unit_of_measure': 'Per 1,000 Married Resident Females 20 Years & Over'}],
'CSV'),
('https://storage.data.gov.sg/doctors-per-10-000-total-population/resources/doctors-per-10-000-total-population-2016-02-19T08-42-50Z.csv',
'd5488c4a-886c-4174-b139-b85718cf162a',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'doctors_per_10000_total_population',
'sub_type': 'general',
'title': 'Doctors',
'type': 'numeric',
'unit_of_measure': 'Per 10,000 Total Population'}],
'CSV'),
('https://storage.data.gov.sg/domestic-exports-by-area/resources/domestic-exports-by-area-annual-2016-02-15T07-33-50Z.csv',
'f5542e9d-58d5-48dc-b8c6-4ba692318b41',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'area', 'sub_type': 'general', 'title': 'Area', 'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'domestic_exports',
'sub_type': 'general',
'title': 'Domestic Exports',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/domestic-revenue-of-infocomm-industry-by-market-segment/resources/domestic-revenue-of-infocomm-industry-by-market-segment-2016-06-14T02-37-44Z.csv',
'0637fd8b-af8f-45c6-8996-a6bae892145f',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'market_segment',
'sub_type': 'general',
'title': 'Market Segment',
'type': 'text'},
{'name': 'domestic_revenue',
'sub_type': 'general',
'title': 'Domestic Revenue',
'type': 'numeric',
'unit_of_measure': 'S$ Billion'}],
'CSV'),
('https://storage.data.gov.sg/domestic-supply-price-index-by-commodity-division-2-digit-level-base-year-2012-100-annual/resources/domestic-supply-price-index-by-commodity-division-2017-05-28T16-19-19Z.csv',
'cb146890-2f8b-407e-86aa-325f3107393c',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Commodity Division',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'value',
'sub_type': 'general',
'title': 'Domestic Supply Price Index',
'type': 'numeric',
'unit_of_measure': 'Index'}],
'CSV'),
('https://storage.data.gov.sg/domestic-supply-price-index-by-commodity-division-2-digit-level-base-year-2012-100-monthly/resources/domestic-supply-price-index-by-commodity-division-2017-05-28T16-20-00Z.csv',
'41068032-3481-4330-999f-82ce0ae23117',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Commodity Division',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'value',
'sub_type': 'general',
'title': 'Domestic Supply Price Index',
'type': 'numeric',
'unit_of_measure': 'Index'}],
'CSV'),
('https://storage.data.gov.sg/domestic-supply-price-index-by-commodity-group-3-digit-level-base-year-2012-100-monthly/resources/domestic-supply-price-index-by-commodity-group-2017-05-28T16-20-54Z.csv',
'd8652b11-4025-4fe0-b392-7944a362b810',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Commodity Group',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'value',
'sub_type': 'general',
'title': 'Domestic Supply Price Index',
'type': 'numeric',
'unit_of_measure': 'Index'}],
'CSV'),
('https://storage.data.gov.sg/domestic-supply-price-index-by-commodity-section-1-digit-level-base-year-2012-100-annual/resources/domestic-supply-price-index-2017-05-28T16-21-30Z.csv',
'875ca4dc-5d40-4c1d-af1c-19a4fd33f86c',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Main Index',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Index'}],
'CSV'),
('https://storage.data.gov.sg/domestic-supply-price-index-by-commodity-section-1-digit-level-base-year-2012-100-annual/resources/domestic-supply-price-index-by-commodity-section-2017-05-28T16-22-05Z.csv',
'57d18e4c-fadd-4f53-b00a-bc59654fe66d',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Main Index',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Commodity Section',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Index'}],
'CSV'),
('https://storage.data.gov.sg/domestic-supply-price-index-by-commodity-section-base-year-2012-100-monthly/resources/domestic-supply-price-index-2017-05-28T16-22-41Z.csv',
'7325befa-c933-4a0c-95d8-7a0899aa67ad',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Main Index',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Domestic Supply Price Index',
'type': 'numeric',
'unit_of_measure': 'Index'}],
'CSV'),
('https://storage.data.gov.sg/domestic-supply-price-index-by-commodity-section-base-year-2012-100-monthly/resources/domestic-supply-price-index-by-commodity-section-2017-05-28T16-22-55Z.csv',
'aaae651c-4b6f-4399-81e3-3e118a2dab24',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Main Index',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Commodity Section',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Domestic Supply Price Index',
'type': 'numeric',
'unit_of_measure': 'Index'}],
'CSV'),
('https://storage.data.gov.sg/domestic-wholesale-trade-index-2012-100-current-quarterly/resources/domestic-wholesale-trade-index-base-year-2012-100-current-quarterly-2017-05-28T16-23-07Z.csv',
'2751dd30-54ad-4c51-bb1c-f14254c3bf3a',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Industry',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Index'}],
'CSV'),
('https://storage.data.gov.sg/do-not-call-registry-statistics/resources/monthly-dnc-registry-figures-2017-05-02T03-25-28Z.csv',
'bf4624e5-ebe1-41f0-9de3-40d3dce7772f',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'consumer_numbers',
'sub_type': 'general',
'title': 'Consumer Numbers Registered',
'type': 'numeric',
'unit_of_measure': 'No. of Telephone Numbers'},
{'name': 'organisation_accounts',
'sub_type': 'general',
'title': 'Organisation Accounts Created',
'type': 'numeric',
'unit_of_measure': 'No. of Accounts'},
{'name': 'numbers_checked_million',
'sub_type': 'general',
'title': 'Numbers Checked by Organisations',
'type': 'numeric',
'unit_of_measure': 'Millions'}],
'CSV'),
('https://storage.data.gov.sg/do-not-call-registry-statistics/resources/cumulative-dnc-registry-figures-2017-05-02T03-32-42Z.csv',
'5d531cd8-b456-4f57-83fb-542b01910093',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'cumulative_consumer_numbers',
'sub_type': 'general',
'title': 'Cumulative Consumer Numbers Registered',
'type': 'numeric',
'unit_of_measure': 'No. of Phone Numbers'},
{'name': 'cumulative_organisation_accounts',
'sub_type': 'general',
'title': 'Cumulative Organisation Accounts',
'type': 'numeric',
'unit_of_measure': 'No. of Accounts'},
{'name': 'cumulative_numbers_checked_million',
'sub_type': 'general',
'title': 'Cumulative Numbers Checked',
'type': 'numeric',
'unit_of_measure': 'Millions'}],
'CSV'),
('https://storage.data.gov.sg/drinking-water-quality/resources/drinking-water-quality-datasets-2017-05-25T06-50-37Z.csv',
'c29de4d2-1e51-43e2-b3e1-9835f9fe6221',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'water_quality_parameter',
'sub_type': 'general',
'title': 'Water quality parameter',
'type': 'text'},
{'name': 'average_value',
'sub_type': 'general',
'title': 'Average value',
'type': 'text'},
{'name': 'unit', 'sub_type': 'general', 'title': 'Unit', 'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/driving-licence-information-qualified-driving-licence-holders/resources/total-number-of-persons-holding-qualified-driving-licence-2017-06-05T09-23-47Z.csv',
'a587568d-35c7-4774-90d7-caaa7e258eb9',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'qualified_driving_licence_holders',
'sub_type': 'general',
'title': 'Qualified Driving Licence Holders',
'type': 'numeric',
'unit_of_measure': 'No. of Persons'}],
'CSV'),
('https://storage.data.gov.sg/driving-licence-information-qualified-driving-licence-holders/resources/qualified-driving-licence-qdl-holders-by-class-of-licence-2017-06-05T09-19-54Z.csv',
'2c9d02bb-d9c3-4659-a86c-ce6d94a208bd',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'class_of_licence',
'sub_type': 'general',
'title': 'Class Of Licence',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'qualified_driving_licence_holders',
'sub_type': 'general',
'title': 'Qualified Driving Licence Holders',
'type': 'numeric',
'unit_of_measure': 'No. of Persons'}],
'CSV'),
('https://storage.data.gov.sg/duty-rates-for-stamp-duty/resources/duty-rates-for-buyers-stamp-duty-2016-09-15T02-50-23Z.csv',
'da404c7d-b73a-4326-83da-d8d4ce1bedb5',
[{'format': 'YYYY-MM-DD',
'name': 'from',
'sub_type': 'date',
'title': 'From',
'type': 'datetime'},
{'name': 'stamp_duty_type',
'sub_type': 'general',
'title': 'Type of Stamp Duty',
'type': 'text'},
{'name': 'document_type',
'sub_type': 'general',
'title': 'Type of Document',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'transaction_type',
'sub_type': 'general',
'title': 'Type of Transaction',
'type': 'text'},
{'name': 'duty_levied_on',
'sub_type': 'general',
'title': 'Duty Levied On',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'duty_amount',
'sub_type': 'general',
'title': 'Amount of Duty',
'type': 'numeric',
'unit_of_measure': 'S$'},
{'description': ['Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'"na" : Data not available or not applicable'],
'name': 'duty_rate',
'sub_type': 'percentage',
'title': 'Rate of Duty',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/duty-rates-for-stamp-duty/resources/duty-rates-for-sellers-stamp-duty-2016-09-15T03-05-50Z.csv',
'c8420b63-781a-48f1-9d98-4b8d549bcf45',
[{'description': 'Date of Purchase/ Acquistion',
'format': 'YYYY-MM-DD',
'name': 'from',
'sub_type': 'date',
'title': 'From',
'type': 'datetime'},
{'name': 'stamp_duty_type',
'sub_type': 'general',
'title': 'Type of Stamp Duty',
'type': 'text'},
{'name': 'document_type',
'sub_type': 'general',
'title': 'Type of Document',
'type': 'text'},
{'name': 'holding_period',
'sub_type': 'general',
'title': 'Holding Period',
'type': 'text'},
{'name': 'duty_levied_on',
'sub_type': 'general',
'title': 'Duty Levied On',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'duty_amount',
'sub_type': 'general',
'title': 'Amount of Duty',
'type': 'numeric',
'unit_of_measure': 'S$'},
{'description': ['Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'"na" : Data not available or not applicable'],
'name': 'duty_rate',
'sub_type': 'percentage',
'title': 'Rate of Duty',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/duty-rates-for-stamp-duty/resources/duty-rates-for-lease-duty-mortgage-duty-and-duty-on-share-transfer-2016-09-15T03-33-48Z.csv',
'c80bd08a-957f-4269-b1d1-df8a426e48f3',
[{'format': 'YYYY-MM-DD',
'name': 'from',
'sub_type': 'date',
'title': 'From',
'type': 'datetime'},
{'name': 'document_type',
'sub_type': 'general',
'title': 'Type of Document',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'lease_term',
'sub_type': 'general',
'title': 'Lease Term',
'type': 'text'},
{'name': 'duty_levied_on',
'sub_type': 'general',
'title': 'Duty Levied On',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'duty_amount',
'sub_type': 'general',
'title': 'Amount of Duty',
'type': 'numeric',
'unit_of_measure': 'S$'},
{'description': ['Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'"na" : Data not available or not applicable'],
'name': 'duty_rate',
'sub_type': 'percentage',
'title': 'Rate of Duty',
'type': 'numeric'},
{'description': '"na" : Data not available or not applicable',
'name': 'maximum_duty',
'sub_type': 'general',
'title': 'Maximum Amount of Duty',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/economically-active-hdb-population-by-ethnic-group-and-flat-type/resources/economically-active-hdb-resident-population-by-ethnic-group-2017-05-05T07-34-09Z.csv',
'c00d960a-8ddd-4932-8ae4-a85aaac8d613',
[{'format': 'YYYY',
'name': 'shs_year',
'sub_type': 'year',
'title': 'SHS Year',
'type': 'datetime'},
{'name': 'ethnic_group',
'sub_type': 'general',
'title': 'Ethnic Group',
'type': 'text'},
{'name': 'economically_active_status',
'sub_type': 'general',
'title': 'Economically Active Status',
'type': 'text'},
{'name': 'no',
'sub_type': 'general',
'title': 'Number of Persons',
'type': 'numeric',
'unit_of_measure': 'No. of Persons'}],
'CSV'),
('https://storage.data.gov.sg/economically-active-hdb-population-by-ethnic-group-and-flat-type/resources/economically-active-hdb-resident-population-by-flat-type-2017-05-05T07-34-15Z.csv',
'a2b6cda2-b4ae-439a-9ff3-154b8fcd343f',
[{'format': 'YYYY',
'name': 'shs_year',
'sub_type': 'year',
'title': 'SHS Year',
'type': 'datetime'},
{'name': 'flat_type',
'sub_type': 'general',
'title': 'Flat Type',
'type': 'text'},
{'name': 'economically_active_status',
'sub_type': 'general',
'title': 'Economically Active Status',
'type': 'text'},
{'name': 'no',
'sub_type': 'general',
'title': 'Number of Persons',
'type': 'numeric',
'unit_of_measure': 'No. of Persons'}],
'CSV'),
('https://storage.data.gov.sg/eldershield/resources/number-of-policyholders-for-eldershield-annual-2016-07-07T02-33-49Z.csv',
'a55f6baa-f17e-4795-87b9-eb59f00336b2',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'description': 'Number of ElderShield Policyholders, rounded off to the nearest thousand',
'name': 'policyholders',
'sub_type': 'general',
'title': 'Policyholders',
'type': 'numeric',
'unit_of_measure': 'No. of Policyholders'},
{'description': ['Number of ElderShield Policyholders with Supplements, rounded off to the nearest thousand',
'"na" : Data not available or not applicable'],
'name': 'policyholders_with_supplements',
'sub_type': 'general',
'title': 'Policyholders with Supplements',
'type': 'numeric',
'unit_of_measure': 'No. of Policyholders'}],
'CSV'),
('https://storage.data.gov.sg/electricity-generated-monthly/resources/electricity-generated-monthly-2016-02-19T06-23-40Z.csv',
'648b29e0-63a2-4673-856b-c551c23e7650',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'electricity_generated',
'sub_type': 'general',
'title': 'Electricity Generated',
'type': 'numeric',
'unit_of_measure': 'Gwh'}],
'CSV'),
('https://storage.data.gov.sg/electricity-generation-annual/resources/electricity-generation-annual-2016-02-19T06-29-45Z.csv',
'710b6e24-7833-414a-b112-2d9ae5de5007',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'electricity_generation',
'sub_type': 'general',
'title': 'Electricity Generation',
'type': 'numeric',
'unit_of_measure': 'Gwh'}],
'CSV'),
('https://storage.data.gov.sg/electronic-searches-dips-stars/resources/electronic-searches-dips-stars-2016-12-27T03-36-50Z.csv',
'f02b6455-0761-4ea2-9c37-556e9e7229ff',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'number_of_electronic_searches',
'sub_type': 'general',
'title': 'Number of electronic searches',
'type': 'numeric',
'unit_of_measure': 'Number'}],
'CSV'),
('https://storage.data.gov.sg/emplacement-and-completion-rates-for-community-based-programmes-cbp/resources/emplacement-number-for-community-based-programmes-cbp-2017-02-27T08-14-58Z.csv',
'e76478b6-5062-4d4a-97be-38747ae3a005',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'types_of_inmates',
'sub_type': 'general',
'title': 'Types Of Inmates',
'type': 'text'},
{'name': 'cbp_emplacement_number',
'sub_type': 'general',
'title': 'CBP Emplacement Number',
'type': 'numeric',
'unit_of_measure': 'Number of CBP Emplacement'}],
'CSV'),
('https://storage.data.gov.sg/emplacement-and-completion-rates-for-community-based-programmes-cbp/resources/completion-rates-for-community-based-programmes-cbp-2017-02-27T08-16-15Z.csv',
'b17170de-3e21-427b-a297-ba8a18f07bb7',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'types_of_inmates',
'sub_type': 'general',
'title': 'Types Of Inmates',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'cbp_completion_rate',
'sub_type': 'percentage',
'title': 'Cbp Completion Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/employed-ict-manpower/resources/employed-ict-manpower-2016-07-11T09-13-46Z.csv',
'9a12df82-a2af-47ba-a3a6-fda0a187b83b',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'manpower',
'sub_type': 'general',
'title': 'Manpower',
'type': 'numeric',
'unit_of_measure': 'No. of Manpower Employed'},
{'description': ['Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'"na" : Data not available or not applicable'],
'name': 'growth',
'sub_type': 'percentage',
'title': 'Growth',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/employer-default-indicator/resources/employer-default-indicator-2017-06-14T08-04-28Z.csv',
'66effa83-145d-47b7-91a8-31e430d63020',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'default_rate',
'sub_type': 'percentage',
'title': 'Default rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/enrolment-moe-kindergartens/resources/enrolment-moe-kindergartens-2017-04-06T03-55-07Z.csv',
'4ad866a7-c43a-4645-87fd-fc961c9de78a',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'enrolment',
'sub_type': 'general',
'title': 'Enrolment',
'type': 'numeric',
'unit_of_measure': 'No. of Students'}],
'CSV'),
('https://storage.data.gov.sg/enrolment-preu-by-age/resources/pre-u-enrolment-by-age-2016-10-25T02-44-32Z.csv',
'c8f793e3-d141-4cbf-a307-a4ddbd79afe0',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'age', 'sub_type': 'general', 'title': 'Age', 'type': 'text'},
{'name': 'sex', 'sub_type': 'general', 'title': 'Sex', 'type': 'text'},
{'name': 'enrolment_jc',
'sub_type': 'general',
'title': 'Pre-U Enrolment',
'type': 'numeric',
'unit_of_measure': 'No. of Students'}],
'CSV'),
('https://storage.data.gov.sg/enrolment-pre-university-by-level/resources/enrolment-pre-university-by-level-and-course-2016-10-17T03-15-31Z.csv',
'8b436e71-ef7d-4a92-86e5-dfdebdc25d8c',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level', 'sub_type': 'general', 'title': 'Level', 'type': 'text'},
{'name': 'course',
'sub_type': 'general',
'title': 'Course',
'type': 'text'},
{'name': 'sex', 'sub_type': 'general', 'title': 'Sex', 'type': 'text'},
{'name': 'enrolment_preu',
'sub_type': 'general',
'title': 'Enrolment',
'type': 'numeric',
'unit_of_measure': 'No. of Students'}],
'CSV'),
('https://storage.data.gov.sg/enrolment-primary-by-age/resources/primary-enrolment-by-age-2016-10-25T02-56-57Z.csv',
'0094016c-a6dd-4801-8608-329775e1dab3',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'age', 'sub_type': 'general', 'title': 'Age', 'type': 'text'},
{'name': 'sex', 'sub_type': 'general', 'title': 'Sex', 'type': 'text'},
{'name': 'enrolment_primary',
'sub_type': 'general',
'title': 'Primary Enrolment',
'type': 'numeric',
'unit_of_measure': 'No. of Students'}],
'CSV'),
('https://storage.data.gov.sg/enrolment-primary-by-level/resources/enrolment-primary-one-2016-10-13T06-15-07Z.csv',
'b4b01dcd-9262-44e6-bf60-6d0126b7b2bb',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'sex', 'sub_type': 'general', 'title': 'Sex', 'type': 'text'},
{'name': 'enrolment_pri1',
'sub_type': 'general',
'title': 'Primary 1 Enrolment',
'type': 'numeric',
'unit_of_measure': 'No. of Students'}],
'CSV'),
('https://storage.data.gov.sg/enrolment-primary-by-level/resources/enrolment-primary-two-2016-10-13T06-16-27Z.csv',
'fa091779-831b-47c5-82b1-314d50ca1ba6',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'sex', 'sub_type': 'general', 'title': 'Sex', 'type': 'text'},
{'name': 'enrolment_pri_2',
'sub_type': 'general',
'title': 'Primary 2 Enrolment',
'type': 'numeric',
'unit_of_measure': 'No. of Students'}],
'CSV'),
('https://storage.data.gov.sg/enrolment-primary-by-level/resources/enrolment-primary-three-2016-10-13T06-17-16Z.csv',
'6692a2f5-78a4-42f4-9e6b-a126f234bbe3',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'sex', 'sub_type': 'general', 'title': 'Sex', 'type': 'text'},
{'name': 'enrolment_pri_3',
'sub_type': 'general',
'title': 'Primary 3 Enrolment',
'type': 'numeric',
'unit_of_measure': 'No. of Students'}],
'CSV'),
('https://storage.data.gov.sg/enrolment-primary-by-level/resources/enrolment-primary-four-2016-10-13T06-18-02Z.csv',
'f6d33eea-7e0f-4194-bc9c-adca5d743781',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'sex', 'sub_type': 'general', 'title': 'Sex', 'type': 'text'},
{'name': 'enrolment_pri_4',
'sub_type': 'general',
'title': 'Primary 4 Enrolment',
'type': 'numeric',
'unit_of_measure': 'No. of Students'}],
'CSV'),
('https://storage.data.gov.sg/enrolment-primary-by-level/resources/enrolment-primary-five-2016-10-13T06-19-09Z.csv',
'0e4266f2-dc06-48d2-937d-9b499b794637',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'stream',
'sub_type': 'general',
'title': 'Stream',
'type': 'text'},
{'name': 'sex', 'sub_type': 'general', 'title': 'Sex', 'type': 'text'},
{'name': 'enrolment_pri_5',
'sub_type': 'general',
'title': 'Primary 5 Enrolment',
'type': 'numeric',
'unit_of_measure': 'No. of Students'}],
'CSV'),
('https://storage.data.gov.sg/enrolment-primary-by-level/resources/enrolment-primary-six-2016-10-13T06-20-54Z.csv',
'516c1824-61f9-4387-bea8-c453e8f4d55b',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'stream',
'sub_type': 'general',
'title': 'Stream',
'type': 'text'},
{'name': 'sex', 'sub_type': 'general', 'title': 'Sex', 'type': 'text'},
{'name': 'enrolment_pri_6',
'sub_type': 'general',
'title': 'Primary 6 Enrolment',
'type': 'numeric',
'unit_of_measure': 'No. of Students'}],
'CSV'),
('https://storage.data.gov.sg/enrolment-primary-by-level/resources/enrolment-primary-seven-2016-10-25T03-25-36Z.csv',
'8b0e6394-982e-41fe-b834-9dd92e39b3fb',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'stream',
'sub_type': 'general',
'title': 'Stream',
'type': 'text'},
{'name': 'sex', 'sub_type': 'general', 'title': 'Sex', 'type': 'text'},
{'name': 'enrolment_pri_7',
'sub_type': 'general',
'title': 'Enrolment pri 7',
'type': 'numeric',
'unit_of_measure': 'No. of students'}],
'CSV'),
('https://storage.data.gov.sg/enrolment-primary-by-level/resources/enrolment-primary-eight-2016-10-25T03-27-39Z.csv',
'6d237d09-c269-4853-80dd-b23b64c5334a',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'stream',
'sub_type': 'general',
'title': 'Stream',
'type': 'text'},
{'name': 'sex', 'sub_type': 'general', 'title': 'Sex', 'type': 'text'},
{'name': 'enrolment_pri_8',
'sub_type': 'general',
'title': 'Enrolment pri 8',
'type': 'numeric',
'unit_of_measure': 'No. of students'}],
'CSV'),
('https://storage.data.gov.sg/enrolment-secondary-by-age/resources/secondary-enrolment-by-age-2016-10-25T02-51-04Z.csv',
'7bfa57fa-da30-495e-8dc1-4b7bcbc8d7de',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'age', 'sub_type': 'general', 'title': 'Age', 'type': 'text'},
{'name': 'sex', 'sub_type': 'general', 'title': 'Sex', 'type': 'text'},
{'name': 'enrolment_secondary',
'sub_type': 'general',
'title': 'Secondary Enrolment',
'type': 'numeric',
'unit_of_measure': 'No. of Students'}],
'CSV'),
('https://storage.data.gov.sg/enrolment-secondary-by-level/resources/enrolment-secondary-by-level-and-course-2016-10-17T03-48-05Z.csv',
'e30f699f-a246-4016-8bba-d83366da46c6',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level', 'sub_type': 'general', 'title': 'Level', 'type': 'text'},
{'name': 'course',
'sub_type': 'general',
'title': 'Course',
'type': 'text'},
{'name': 'sex', 'sub_type': 'general', 'title': 'Sex', 'type': 'text'},
{'name': 'enrolment_secondary',
'sub_type': 'general',
'title': 'Enrolment',
'type': 'numeric',
'unit_of_measure': 'No. of Students'}],
'CSV'),
('https://storage.data.gov.sg/entities-with-unique-entity-number/resources/entities-registered-with-acra-2017-03-11T04-25-32Z.csv',
'bdb377b8-096f-4f86-9c4f-85bad80ef93c',
[{'name': 'uen',
'sub_type': 'general',
'title': 'UEN Number',
'type': 'text'},
{'name': 'issuance_agency_id',
'sub_type': 'general',
'title': 'Issuance Agency',
'type': 'text'},
{'description': ['* R = Registered', '* D = Deregistered'],
'name': 'uen_status',
'sub_type': 'general',
'title': 'UEN Status',
'type': 'text'},
{'name': 'entity_name',
'sub_type': 'general',
'title': 'Entity Name',
'type': 'text'},
{'description': 'Reference table: https://www.uen.gov.sg/ueninternet/faces/pages/admin/aboutUEN.jspx',
'name': 'entity_type',
'sub_type': 'general',
'title': 'Entity Type',
'type': 'text'},
{'format': 'YYYY-MM-DD',
'name': 'uen_issue_date',
'sub_type': 'date',
'title': 'UEN Issue Date',
'type': 'datetime'},
{'description': '"na" : Data not available or not applicable',
'name': 'reg_street_name',
'sub_type': 'general',
'title': 'Registered Street Name',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'reg_postal_code',
'sub_type': 'postal_code',
'title': 'Registered Postal Code',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/entities-with-unique-entity-number/resources/entities-registered-with-other-uen-issuance-agencies-2017-03-10T02-34-16Z.csv',
'5ab68aac-91f6-4f39-9b21-698610bdf3f7',
[{'name': 'uen', 'sub_type': 'general', 'title': 'UEN', 'type': 'text'},
{'name': 'issuance_agency_id',
'sub_type': 'general',
'title': 'Issuance Agency ID',
'type': 'text'},
{'description': ['* R = Registered', '* D = Deregistered'],
'name': 'uen_status',
'sub_type': 'general',
'title': 'UEN Status',
'type': 'text'},
{'name': 'entity_name',
'sub_type': 'url',
'title': 'Entity Name',
'type': 'text'},
{'description': 'Reference table: https://www.uen.gov.sg/ueninternet/faces/pages/admin/aboutUEN.jspx',
'name': 'entity_type',
'sub_type': 'general',
'title': 'Entity Type',
'type': 'text'},
{'format': 'YYYY-MM-DD',
'name': 'uen_issue_date',
'sub_type': 'date',
'title': 'UEN Issue Date',
'type': 'datetime'},
{'description': ['"na" : Data not available or not applicable',
'"-" : Data is negligible or not significant'],
'name': 'reg_street_name',
'sub_type': 'general',
'title': 'Registered Street Name',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'reg_postal_code',
'sub_type': 'postal_code',
'title': 'Registered Postal Code',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/escape-rate/resources/escape-rate-2017-02-27T08-12-21Z.csv',
'55158187-11ca-4afa-ba62-c375cef40abb',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'escape_rate_per_10000_inmates',
'sub_type': 'general',
'title': 'Escape Rate Per 10000 Inmates',
'type': 'numeric',
'unit_of_measure': 'Number of cases per 10000 inmates'}],
'CSV'),
('https://storage.data.gov.sg/estimated-resident-population-living-in-hdb-flats/resources/estimated-resident-population-in-hdb-flats-by-town-2016-08-29T02-03-43Z.csv',
'b29c1af8-e11a-4e61-b813-933db9f69633',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'name': 'town_or_estate',
'sub_type': 'general',
'title': 'Town or Estate',
'type': 'text'},
{'name': 'population',
'sub_type': 'general',
'title': 'HDB Resident Population',
'type': 'numeric',
'unit_of_measure': 'Number of Persons'}],
'CSV'),
('https://storage.data.gov.sg/estimated-resident-population-living-in-hdb-flats/resources/estimated-percentage-of-singapore-resident-population-in-hdb-flats-2016-08-24T07-39-00Z.csv',
'a7d9516f-b193-4f9b-8bbf-9c85a4c9b61b',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'description': 'HDB flats include sold flats and public rental flats',
'name': 'type',
'sub_type': 'general',
'title': 'Type',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'percentage_of_pop_in',
'sub_type': 'percentage',
'title': 'Percentage of Singapore Resident Population',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/exchange-rates-sgd-per-unit-of-usd-average-for-period-annual/resources/exchange-rates-sgd-per-unit-of-usd-average-for-period-annual-2016-02-24T02-18-46Z.csv',
'f927c39b-3b44-492e-8b54-174e775e0d98',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'sgd_per_unit_of_usd',
'sub_type': 'general',
'title': 'SGD Per Unit Of USD',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/exchange-rates-sgd-per-unit-of-usd-average-for-period-annual/resources/exchange-rates-sgd-per-unit-of-usd-daily-2016-04-04T05-59-33Z.csv',
'2bc8eac9-8183-4e78-bf3e-9572a21a0ba4',
[{'format': 'YYYY-MM-DD',
'name': 'date',
'sub_type': 'date',
'title': 'Date',
'type': 'datetime'},
{'name': 'exchange_rate_usd',
'sub_type': 'general',
'title': 'Exchange Rate USD',
'type': 'numeric',
'unit_of_measure': 'S$ Per US$'}],
'CSV'),
('https://storage.data.gov.sg/expenditure-on-gross-domestic-product-at-2010-market-prices-annual/resources/expenditure-on-gross-domestic-product-at-2010-market-prices-annual-2017-05-28T16-24-02Z.csv',
'3d393b93-fa14-4b92-934b-9b6149e96c2f',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Expenditure on GDP',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/expenditure-on-gross-domestic-product-at-2010-market-prices-annual/resources/expenditure-on-gdp-at-2010-market-prices-by-expenditure-component-annual-2017-05-26T16-21-40Z.csv',
'6c2de10a-e133-42bc-8fe7-7f690f6d0d87',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Expenditure on GDP',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Expenditure Component',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/expenditure-on-gross-domestic-product-at-2010-market-prices-annual/resources/expenditure-on-gdp-at-2010-market-prices-by-exports-imports-of-goods-and-services-annual-2017-05-26T16-21-44Z.csv',
'c00b9df8-a6ae-4703-8783-07bbcd620063',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Expenditure on GDP',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Expenditure Component',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Exports/Imports of Goods and Services',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/expenditure-on-gross-domestic-product-at-current-market-prices-annual/resources/expenditure-on-gross-domestic-product-at-current-market-prices-annual-2017-05-26T16-22-28Z.csv',
'4f40e337-eac8-4773-aea7-3336c2dae6ec',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Expenditure on GDP',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/expenditure-on-gross-domestic-product-at-current-market-prices-annual/resources/expenditure-on-gdp-at-current-market-prices-by-expenditure-component-annual-2017-05-26T16-22-32Z.csv',
'dde4ef93-9dad-4232-b78d-2743ddeb142e',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Expenditure on GDP',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Expenditure Component',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/expenditure-on-gross-domestic-product-at-current-market-prices-annual/resources/expenditure-on-gdp-at-current-market-prices-by-exports-imports-of-goods-and-services-2017-05-26T16-22-36Z.csv',
'9a7fda1b-83b2-46f1-a0de-af784a54b113',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Expenditure on GDP',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Expenditure Component',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Exports/Imports of Goods and Services',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/export-price-index-by-commodity-section-base-year-2012-100-monthly/resources/export-price-index-2017-05-26T16-25-21Z.csv',
'd740b8db-d2b8-41fc-ab58-cbd2f3ac18bf',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Main Index',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Index',
'type': 'numeric',
'unit_of_measure': 'Index'}],
'CSV'),
('https://storage.data.gov.sg/export-price-index-by-commodity-section-base-year-2012-100-monthly/resources/export-price-index-by-commodity-section-2017-05-26T16-25-32Z.csv',
'4a432ce5-b0cd-44a9-828c-41a0b2d164fc',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Main Index',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Commodity Section',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Index',
'type': 'numeric',
'unit_of_measure': 'Index'}],
'CSV'),
('https://storage.data.gov.sg/export-revenue-destinations-by-region/resources/export-revenue-destinations-by-region-2016-07-22T06-22-28Z.csv',
'243b0a65-da1d-4fbc-879c-7c5af410a90a',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'region',
'sub_type': 'general',
'title': 'Region',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'export_revenue',
'sub_type': 'percentage',
'title': 'Export Revenue',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/export-revenue-of-infocomm-industry-by-market-segment/resources/export-revenue-of-infocomm-industry-by-market-segment-2016-06-14T02-24-56Z.csv',
'823cad5b-8200-48af-ad9d-684a02149f5d',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'segment',
'sub_type': 'general',
'title': 'Segment',
'type': 'text'},
{'name': 'export_revenue',
'sub_type': 'general',
'title': 'Export Revenue',
'type': 'numeric',
'unit_of_measure': 'S$ Billion'}],
'CSV'),
('https://storage.data.gov.sg/fare-for-express-bus-services/resources/fares-for-express-bus-services-effective-from-30-december-2016-2017-01-03T10-12-07Z.csv',
'd9b3b8ec-ac41-41f1-b76f-70396125774d',
[{'name': 'distance',
'sub_type': 'general',
'title': 'Distance',
'type': 'text'},
{'name': 'cash_fare_per_ride',
'sub_type': 'general',
'title': 'Cash Fare Per Ride',
'type': 'numeric',
'unit_of_measure': 'cent'},
{'name': 'adult_card_fare_per_ride',
'sub_type': 'general',
'title': 'Adult Card Fare Per Ride',
'type': 'numeric',
'unit_of_measure': 'cent'},
{'name': 'senior_citizen_card_fare_per_ride',
'sub_type': 'general',
'title': 'Senior Citizen Card Fare Per Ride',
'type': 'numeric',
'unit_of_measure': 'cent'},
{'name': 'student_card_fare_per_ride',
'sub_type': 'general',
'title': 'Student Card Fare Per Ride',
'type': 'numeric',
'unit_of_measure': 'cent'},
{'name': 'workfare_transport_concession_card_fare_per_ride',
'sub_type': 'general',
'title': 'Workfare Transport Concession Card Fare Per Ride',
'type': 'numeric',
'unit_of_measure': 'cent'},
{'name': 'persons_with_disabilities_card_fare_per_ride',
'sub_type': 'general',
'title': 'Persons With Disabilities Card Fare Per Ride',
'type': 'numeric',
'unit_of_measure': 'cent'}],
'CSV'),
('https://storage.data.gov.sg/fare-for-feeder-bus-services/resources/fares-for-feeder-bus-services-effective-from-30-december-2016-2017-01-03T10-14-05Z.csv',
'0aacc5ee-ac61-48db-bb08-63dd64439184',
[{'name': 'description',
'sub_type': 'general',
'title': 'Description',
'type': 'text'},
{'name': 'adult_card_fare_per_ride',
'sub_type': 'general',
'title': 'Adult Card Fare Per Ride',
'type': 'numeric',
'unit_of_measure': 'cent'},
{'name': 'adult_cash_fare_per_ride',
'sub_type': 'general',
'title': 'Adult Cash Fare Per Ride',
'type': 'numeric',
'unit_of_measure': 'cent'},
{'name': 'senior_citizen_card_fare_per_ride',
'sub_type': 'general',
'title': 'Senior Citizen Card Fare Per Ride',
'type': 'numeric',
'unit_of_measure': 'cent'},
{'name': 'senior_citizen_cash_fare_per_ride',
'sub_type': 'general',
'title': 'Senior Citizen Cash Fare Per Ride',
'type': 'numeric',
'unit_of_measure': 'cent'},
{'name': 'student_card_fare_per_ride',
'sub_type': 'general',
'title': 'Student Card Fare Per Ride',
'type': 'numeric',
'unit_of_measure': 'cent'},
{'name': 'student_cash_fare_per_ride',
'sub_type': 'general',
'title': 'Student Cash Fare Per Ride',
'type': 'numeric',
'unit_of_measure': 'cent'},
{'name': 'workfare_transport_concession_card_fare_per_ride',
'sub_type': 'general',
'title': 'Workfare Transport Concession Card Fare Per Ride',
'type': 'numeric',
'unit_of_measure': 'cent'},
{'name': 'workfare_transport_concession_cash_fare_per_ride',
'sub_type': 'general',
'title': 'Workfare Transport Concession Cash Fare Per Ride',
'type': 'numeric',
'unit_of_measure': 'cent'},
{'name': 'persons_with_disabilities_card_fare_per_ride',
'sub_type': 'general',
'title': 'Persons With Disabilities Card Fare Per Ride',
'type': 'numeric',
'unit_of_measure': 'cent'},
{'name': 'persons_with_disabilities_cash_fare_per_ride',
'sub_type': 'general',
'title': 'Persons With Disabilities Cash Fare Per Ride',
'type': 'numeric',
'unit_of_measure': 'cent'}],
'CSV'),
('https://storage.data.gov.sg/fare-structure-for-trunk-bus-services/resources/fares-for-trunk-bus-service-effective-from-30-december-2016-2017-01-03T10-15-59Z.csv',
'e1c20915-ab7c-4bf9-bbbd-0197bbc7b98c',
[{'name': 'distance',
'sub_type': 'general',
'title': 'Distance',
'type': 'text'},
{'name': 'single_trip_ticket_fare_per_ride',
'sub_type': 'general',
'title': 'Single trip ticket fare per ride',
'type': 'numeric',
'unit_of_measure': 'cent'},
{'name': 'adult_card_fare_per_ride',
'sub_type': 'general',
'title': 'Adult Card Fare Per Ride',
'type': 'numeric',
'unit_of_measure': 'cent'},
{'name': 'senior_citizen_card_fare_per_ride',
'sub_type': 'general',
'title': 'Senior Citizen Card Fare Per Ride',
'type': 'numeric',
'unit_of_measure': 'cent'},
{'name': 'student_card_fare_per_ride',
'sub_type': 'general',
'title': 'Student Card Fare Per Ride',
'type': 'numeric',
'unit_of_measure': 'cent'},
{'name': 'workfare_transport_concession_card_fare_per_ride',
'sub_type': 'general',
'title': 'Workfare Transport Concession Card Fare Per Ride',
'type': 'numeric',
'unit_of_measure': 'cent'},
{'name': 'persons_with_disabilities_card_fare_per_ride',
'sub_type': 'general',
'title': 'Persons With Disabilities Card Fare Per Ride',
'type': 'numeric',
'unit_of_measure': 'cent'}],
'CSV'),
('https://storage.data.gov.sg/fare-structure-north-south-and-east-west-lines-and-lrts-wef-27-december-2015/resources/fares-for-mrt-and-lrt-effective-from-30-december-2016-2017-01-03T10-19-43Z.csv',
'70f568d2-85a4-4926-ab7a-e28c7728b6c0',
[{'name': 'distance',
'sub_type': 'general',
'title': 'Distance',
'type': 'text'},
{'name': 'single_trip_ticket_fare_per_ride',
'sub_type': 'general',
'title': 'Single Trip Ticket Fare Per Ride',
'type': 'numeric',
'unit_of_measure': 'cent'},
{'name': 'adult_card_fare_per_ride',
'sub_type': 'general',
'title': 'Adult Card Fare Per Ride',
'type': 'numeric',
'unit_of_measure': 'cent'},
{'name': 'senior_citizen_card_fare_per_ride',
'sub_type': 'general',
'title': 'Senior Citizen Card Fare Per Ride',
'type': 'numeric',
'unit_of_measure': 'cent'},
{'name': 'student_card_fare_per_ride',
'sub_type': 'general',
'title': 'Student Card Fare Per Ride',
'type': 'numeric',
'unit_of_measure': 'cent'},
{'name': 'workfare_transport_concession_card_fare_per_ride',
'sub_type': 'general',
'title': 'Workfare Transport Concession Card Fare Per Ride',
'type': 'numeric',
'unit_of_measure': 'cent'},
{'name': 'persons_with_disabilities_card_fare_per_ride',
'sub_type': 'general',
'title': 'Persons With Disabilities Card Fare Per Ride',
'type': 'numeric',
'unit_of_measure': 'cent'}],
'CSV'),
('https://storage.data.gov.sg/farming-area/resources/farming-area-by-category-2016-07-17T15-31-24Z.csv',
'9a826bf2-34c4-4694-b4af-f338d6205fb3',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial year',
'type': 'datetime'},
{'name': 'category',
'sub_type': 'general',
'title': 'Category',
'type': 'text'},
{'name': 'sub_category',
'sub_type': 'general',
'title': 'Sub Category',
'type': 'text'},
{'name': 'farming_area',
'sub_type': 'general',
'title': 'Farming Area',
'type': 'numeric',
'unit_of_measure': 'Hectares'}],
'CSV'),
('https://storage.data.gov.sg/fees-for-ite-full-time-diploma-courses/resources/course-fees-of-full-time-diploma-courses-offered-in-ite-2017-01-10T01-54-43Z.csv',
'496fb5c1-1692-4214-963e-df371d024917',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'course',
'sub_type': 'general',
'title': 'Course',
'type': 'text'},
{'name': 'fee_per_term',
'sub_type': 'general',
'title': 'Fee per term',
'type': 'numeric',
'unit_of_measure': '$'}],
'CSV'),
('https://storage.data.gov.sg/fees-for-ite-full-time-higher-nitec-and-nitec-courses/resources/fees-for-ite-full-time-higher-nitec-and-nitec-courses-by-year-and-participant-category-2017-01-11T02-30-42Z.csv',
'107ab418-52ce-41b6-88fd-4094c74f9af3',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'course_level',
'sub_type': 'general',
'title': 'Course Level',
'type': 'text'},
{'name': 'participant_category',
'sub_type': 'general',
'title': 'Participant Category',
'type': 'text'},
{'description': 'One academic year comprises of 2 term',
'name': 'fee_per_term',
'sub_type': 'general',
'title': 'Fee Per Term',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/fees-for-ite-part-time-higher-nitec-courses-by-year-and-participant-category/resources/course-fees-of-part-time-higher-nitec-courses-offered-in-ite-2017-01-11T02-33-29Z.csv',
'e874ac75-1f89-4920-ad33-ab33ae8b3667',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'module_type',
'sub_type': 'general',
'title': 'Module Type',
'type': 'text'},
{'name': 'participant_category',
'sub_type': 'general',
'title': 'Participant Category',
'type': 'text'},
{'name': 'fee_per_module',
'sub_type': 'general',
'title': 'Fee Per Module',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/fees-for-ite-part-time-nitec-and-isc-courses-by-year-and-participant-category/resources/course-fees-of-part-time-nitec-and-isc-courses-offered-in-ite-2017-01-11T02-47-14Z.csv',
'0c7d9ca5-c156-42f9-ae1f-e4d4c35069e6',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'module_type',
'sub_type': 'general',
'title': 'Module Type',
'type': 'text'},
{'name': 'participant_category',
'sub_type': 'general',
'title': 'Participant Category',
'type': 'text'},
{'name': 'fee_per_module',
'sub_type': 'general',
'title': 'Fee Per Module',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/filing-of-tax-returns-annual/resources/filing-of-tax-returns-for-individual-income-tax-and-corporate-income-tax-2016-10-03T00-31-47Z.csv',
'5ddf4ed9-1318-4cf3-900f-5e029fa10938',
[{'format': 'YYYY',
'name': 'year_of_assessment',
'sub_type': 'year',
'title': 'Year of Assessment',
'type': 'datetime'},
{'name': 'tax_type',
'sub_type': 'general',
'title': 'Tax Type',
'type': 'text'},
{'name': 'return_type',
'sub_type': 'general',
'title': 'Type of Return',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'no_of_returns',
'sub_type': 'general',
'title': 'No. of Returns',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/filing-of-tax-returns-annual/resources/filing-of-tax-returns-for-goods-and-services-tax-2016-10-03T00-33-16Z.csv',
'7fc69f67-9a68-4657-a6c2-0747d39ac508',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'name': 'tax_type',
'sub_type': 'general',
'title': 'Tax Type',
'type': 'text'},
{'name': 'return_type',
'sub_type': 'general',
'title': 'Type of Return',
'type': 'text'},
{'name': 'no_of_returns',
'sub_type': 'general',
'title': 'No. of Returns',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/five-preventable-crime-cases-recorded-by-npcs/resources/five-preventable-crime-cases-recorded-by-npcs-2016-09-20T09-35-46Z.csv',
'10a2b502-2ffd-4df7-8b6f-6ea7d74893b7',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'division',
'sub_type': 'general',
'title': 'Division',
'type': 'text'},
{'name': 'npc', 'sub_type': 'general', 'title': 'NPC', 'type': 'text'},
{'name': 'offence',
'sub_type': 'general',
'title': 'Offence',
'type': 'text'},
{'description': ['(i) Compilation of 5Ps for Woodlands West & Woodlands East NPC started wef 2012.',
'(ii) Compilation of 5Ps for Punggol NPC started wef 2013.',
'"na" : Data not available or not applicable'],
'name': 'no_of_cases',
'sub_type': 'general',
'title': 'No. Of Cases',
'type': 'numeric',
'unit_of_measure': 'No. Of Cases'}],
'CSV'),
('https://storage.data.gov.sg/fixed-broadband-plans-and-prices/resources/fixed-broadband-plans-and-prices-2016-08-29T06-48-10Z.csv',
'70e20cb2-f7a7-4e2d-bd95-47575b4dcbe6',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'date_of_retrieval_',
'sub_type': 'general',
'title': 'Date of retrieval ',
'type': 'text'},
{'name': 'operator',
'sub_type': 'general',
'title': 'Operator',
'type': 'text'},
{'name': 'plan', 'sub_type': 'general', 'title': 'Plan', 'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'max_speed',
'sub_type': 'general',
'title': 'Max speed',
'type': 'numeric',
'unit_of_measure': 'Mbps'},
{'name': 'plan_type',
'sub_type': 'general',
'title': 'Plan type',
'type': 'text'},
{'name': 'connection_type',
'sub_type': 'general',
'title': 'Connection type',
'type': 'text'},
{'name': 'contract_duration',
'sub_type': 'general',
'title': 'Contract duration',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'price_of_plan',
'sub_type': 'general',
'title': 'Price of plan',
'type': 'numeric',
'unit_of_measure': 'S$'},
{'description': '"na" : Data not available or not applicable',
'name': 'price_per_mbps',
'sub_type': 'general',
'title': 'Price per Mbps',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/fixed-line-subscriptions/resources/fixed-line-subscriptions-2017-04-18T12-22-52Z.csv',
'7f1d15bd-b0b6-4045-8e57-120efceb2891',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'number_of_subscriptions',
'sub_type': 'general',
'title': 'Number Of Subscriptions',
'type': 'numeric',
'unit_of_measure': 'Number of Fixed Line Subscriptions'}],
'CSV'),
('https://storage.data.gov.sg/fixed-line-subscriptions/resources/fixed-line-subscriptions-by-type-2017-04-18T12-24-33Z.csv',
'6d8347ec-5a09-44aa-a011-1a60616a6346',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'type_of_fixed_lines',
'sub_type': 'general',
'title': 'Type Of Fixed Lines',
'type': 'text'},
{'name': 'number_of_subscriptions',
'sub_type': 'general',
'title': 'Number Of Subscriptions',
'type': 'numeric',
'unit_of_measure': 'Number of fixed line subscriptions by Type'}],
'CSV'),
('https://storage.data.gov.sg/flats-constructed/resources/flats-constructed-by-housing-and-development-board-annual-2017-04-11T08-53-56Z.csv',
'4af42bbf-1ac0-46bf-9318-6efa6aa475a7',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'flats_constructed',
'sub_type': 'general',
'title': 'Flats Constructed',
'type': 'numeric',
'unit_of_measure': 'No. of Flats'}],
'CSV'),
('https://storage.data.gov.sg/flood-prone-areas/resources/flood-prone-areas-2016-09-26T13-43-19Z.csv',
'4072cb64-3efd-4b51-adff-0e05f7ca1e7f',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'hectares',
'sub_type': 'general',
'title': 'Area',
'type': 'numeric',
'unit_of_measure': 'Hectares'}],
'CSV'),
('https://storage.data.gov.sg/foreign-direct-equity-investment-in-singapore-by-country-region-stock-as-at-year-end-annual/resources/stock-of-foreign-direct-equity-investment-in-singapore-annual-2017-05-26T16-27-06Z.csv',
'5479bf06-ff2c-440c-b062-13cc3df33c2c',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/foreign-direct-equity-investment-in-singapore-by-country-region-stock-as-at-year-end-annual/resources/stock-of-foreign-direct-equity-investment-in-singapore-by-region-annual-2017-05-26T16-27-11Z.csv',
'e2a874dc-6995-4546-a7c2-6c11bb7191e7',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Region',
'type': 'text'},
{'description': '"-" : Data is negligible or not significant',
'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/foreign-direct-equity-investment-in-singapore-by-country-region-stock-as-at-year-end-annual/resources/stock-of-foreign-direct-equity-investment-in-singapore-by-country-annual-2017-05-26T16-27-16Z.csv',
'e8788097-0588-4dbf-9aac-3944cc12ffd3',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Region',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Country',
'type': 'text'},
{'description': '"-" : Data is negligible or not significant',
'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/foreign-direct-investment-in-singapore-by-country-region-stock-as-at-year-end-annual/resources/stock-of-foreign-direct-investment-in-singapore-annual-2017-05-26T16-27-47Z.csv',
'41449d77-4d62-40b3-8ee6-6cc6a2abe503',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/foreign-direct-investment-in-singapore-by-country-region-stock-as-at-year-end-annual/resources/stock-of-foreign-direct-investment-in-singapore-by-region-annual-2017-05-26T16-27-52Z.csv',
'21736fd0-a4ed-42a8-97e4-932e2b06970d',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Region',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/foreign-direct-investment-in-singapore-by-country-region-stock-as-at-year-end-annual/resources/stock-of-foreign-direct-investment-in-singapore-by-country-annual-2017-05-26T16-27-57Z.csv',
'44764a59-1b20-48d2-955c-60862af46bf3',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Region',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Country',
'type': 'text'},
{'description': '"-" : Data is negligible or not significant',
'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/foreign-wholesale-trade-index-2012-100-current-quarterly/resources/foreign-wholesale-trade-index-base-year-2012-100-current-quarterly-2017-05-26T16-28-35Z.csv',
'287e7732-4449-4235-9ee3-b5ccd15bf3ab',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Industry',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Index'}],
'CSV'),
('https://storage.data.gov.sg/foreign-workforce-numbers/resources/total-foreign-workforce-2016-06-13T03-36-54Z.csv',
'5f705294-44aa-45ad-9ae0-16b913a4a949',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'count',
'sub_type': 'general',
'title': 'Count',
'type': 'numeric',
'unit_of_measure': 'No. of People'}],
'CSV'),
('https://storage.data.gov.sg/foreign-workforce-numbers/resources/stock-of-foreign-workforce-by-pass-type-2016-06-13T05-33-10Z.csv',
'6514463e-ae4e-40e4-951a-753b482a20b4',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'work_pass_type',
'sub_type': 'general',
'title': 'Work Pass Type',
'type': 'text'},
{'name': 'count',
'sub_type': 'general',
'title': 'Count',
'type': 'numeric',
'unit_of_measure': 'No. of People'}],
'CSV'),
('https://storage.data.gov.sg/foreign-workforce-numbers/resources/number-of-foreign-domestic-workers-and-construction-workers-employed-2016-06-13T03-43-10Z.csv',
'c032a026-a973-43eb-9151-1d97dcd46111',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'work_pass_type',
'sub_type': 'general',
'title': 'Work Pass Type',
'type': 'text'},
{'name': 'count',
'sub_type': 'general',
'title': 'Count',
'type': 'numeric',
'unit_of_measure': 'No. of People'}],
'CSV'),
('https://storage.data.gov.sg/foreign-workforce-numbers/resources/foreign-workforce-excluding-foreign-domestic-workers-2016-06-13T05-36-19Z.csv',
'8ef2a3db-19cc-4654-9603-491811c95aa9',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'count',
'sub_type': 'general',
'title': 'Count',
'type': 'numeric',
'unit_of_measure': 'No. of People'}],
'CSV'),
('https://storage.data.gov.sg/foreign-workforce-numbers/resources/foreign-workforce-excluding-foreign-domestic-workers-and-construction-workers-2016-06-13T06-04-59Z.csv',
'156d3aae-015f-499c-b7c1-0790f710a8d5',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'count',
'sub_type': 'general',
'title': 'Count',
'type': 'numeric',
'unit_of_measure': 'No. of People'}],
'CSV'),
('https://storage.data.gov.sg/full-retirement-sum/resources/full-retirement-sum-2017-02-24T03-42-05Z.csv',
'd987f947-a05e-4033-90aa-2b7108e05552',
[{'name': 'effective_from',
'sub_type': 'general',
'title': 'Effective from',
'type': 'text'},
{'name': 'full_retirement_sum',
'sub_type': 'general',
'title': 'Full Retirement Sum',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/gas-sales-annual/resources/total-liquefied-petroleum-gas-sales-annual-2017-05-26T16-28-46Z.csv',
'313be489-62f1-424b-92c5-37fb2a4396bd',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Level 1',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Net Tonnes'}],
'CSV'),
('https://storage.data.gov.sg/gas-sales-quarterly/resources/total-liquefied-petroleum-gas-sales-quarterly-2016-06-28T01-31-50Z.csv',
'bebfdc3c-d3dc-4d6f-b051-cf01f94786ea',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Net Tonnes'}],
'CSV'),
('https://storage.data.gov.sg/gender-composition-of-hdb-resident-population-by-ethnic-group-and-flat-type/resources/gender-composition-of-hdb-resident-population-by-ethnic-group-2017-05-05T07-34-11Z.csv',
'319acecb-cb17-4742-862d-4a4774d18a8f',
[{'format': 'YYYY',
'name': 'shs_year',
'sub_type': 'year',
'title': 'SHS Year',
'type': 'datetime'},
{'name': 'ethnic_group',
'sub_type': 'general',
'title': 'Ethnic Group',
'type': 'text'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'percentage',
'sub_type': 'percentage',
'title': 'Percentage',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/gender-composition-of-hdb-resident-population-by-ethnic-group-and-flat-type/resources/gender-composition-of-hdb-resident-population-by-flat-type-2017-05-05T07-34-28Z.csv',
'29a31bd8-e71b-4f19-a8e3-09f72dc14fdc',
[{'format': 'YYYY',
'name': 'shs_year',
'sub_type': 'year',
'title': 'SHS Year',
'type': 'datetime'},
{'name': 'flat_type',
'sub_type': 'general',
'title': 'Flat Type',
'type': 'text'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'percentage',
'sub_type': 'percentage',
'title': 'Percentage',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/gender-composition-of-hdb-resident-population-by-ethnic-group-and-flat-type/resources/gender-composition-of-hdb-resident-population-aged-15-years-and-above-by-ethnic-group-2017-05-05T07-34-39Z.csv',
'8594dc00-c144-4c8d-b047-e620810fdf42',
[{'format': 'YYYY',
'name': 'shs_year',
'sub_type': 'year',
'title': 'SHS Year',
'type': 'datetime'},
{'name': 'ethnic_group',
'sub_type': 'general',
'title': 'Ethnic Group',
'type': 'text'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'percentage',
'sub_type': 'percentage',
'title': 'Percentage',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/gender-composition-of-hdb-resident-population-by-ethnic-group-and-flat-type/resources/gender-composition-of-hdb-resident-population-aged-15-years-and-above-by-flat-type-2017-05-05T07-34-47Z.csv',
'50b98b4b-cb9b-4a9a-9a3a-ee5107bc2515',
[{'format': 'YYYY',
'name': 'shs_year',
'sub_type': 'year',
'title': 'SHS Year',
'type': 'datetime'},
{'name': 'flat_type',
'sub_type': 'general',
'title': 'Flat Type',
'type': 'text'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'percentage',
'sub_type': 'percentage',
'title': 'Percentage',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/gender-parity-index-for-primary-secondary-tertiary-students/resources/gender-parity-index-for-primary-secondary-tertiary-students-2016-09-15T06-48-15Z.csv',
'56122c03-3fd7-4146-ab22-049c1008ba46',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_of_education',
'sub_type': 'general',
'title': 'Level Of Education',
'type': 'text'},
{'name': 'gender_parity_index',
'sub_type': 'general',
'title': 'Gender Parity Index',
'type': 'numeric',
'unit_of_measure': 'Ratio'}],
'CSV'),
('https://storage.data.gov.sg/general-waste-collector-details/resources/listing-of-general-waste-collectors-2016-12-23T06-36-15Z.csv',
'f1a0ffab-0da7-4571-93d0-dbd893e5410c',
[{'name': 'company_name',
'sub_type': 'general',
'title': 'Company name',
'type': 'text'},
{'name': 'company_address',
'sub_type': 'address',
'title': 'Company address',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'telephone_no',
'sub_type': 'telephone',
'title': 'Telephone no',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'fax_no',
'sub_type': 'telephone',
'title': 'Fax no',
'type': 'text'},
{'name': 'class_of_licence',
'sub_type': 'general',
'title': 'Class of licence',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/government-development-expenditure-on-education/resources/government-development-expenditure-on-education-2016-10-11T06-39-40Z.csv',
'ceb94ae8-9d00-40b0-8191-fc5ff05857a0',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'expenditure_development',
'sub_type': 'general',
'title': 'Development Expenditure On Education',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'}],
'CSV'),
('https://storage.data.gov.sg/government-expenditure-on-education/resources/government-expenditure-on-education-2016-10-11T06-57-01Z.csv',
'79a62357-49ec-4d78-9d00-50b0cf73084c',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'total_expenditure_on_education',
'sub_type': 'general',
'title': 'Total Expenditure On Education',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'}],
'CSV'),
('https://storage.data.gov.sg/government-fiscal-position-annual/resources/government-fiscal-position-2017-02-20T14-52-48Z.csv',
'98856a60-33cd-482a-9dc4-1ed52e562d5d',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'description': 'The data for the latest financial year is estimated, while that for the previous year is revised. ',
'name': 'actual_revised_estimated',
'sub_type': 'general',
'title': 'Actual/Revised/Estimated',
'type': 'text'},
{'name': 'category',
'sub_type': 'general',
'title': 'Category',
'type': 'text'},
{'name': 'item', 'sub_type': 'general', 'title': 'Item', 'type': 'text'},
{'name': 'amount',
'sub_type': 'general',
'title': 'Amount',
'type': 'numeric',
'unit_of_measure': 'S$ million'},
{'description': 'Percentages are expressed as a value over 1, i.e. "1" represents 100%',
'name': 'percent_of_gdp',
'sub_type': 'percentage',
'title': 'Percentage of GDP',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/government-fiscal-position-annual/resources/government-operating-revenue-2017-02-20T14-57-45Z.csv',
'd4dbffc1-b097-4d86-9da8-afaf91dfbcbd',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'description': 'The data for the latest financial year is estimated, while that for the previous year is revised. ',
'name': 'actual_revised_estimated',
'sub_type': 'general',
'title': 'Actual/Revised/Estimated',
'type': 'text'},
{'name': 'class', 'sub_type': 'general', 'title': 'Class', 'type': 'text'},
{'name': 'type', 'sub_type': 'general', 'title': 'Type', 'type': 'text'},
{'name': 'amount',
'sub_type': 'general',
'title': 'Amount',
'type': 'numeric',
'unit_of_measure': 'S$ million'},
{'description': 'Percentages are expressed as a value over 1, i.e. "1" represents 100%',
'name': 'percent_of_gdp',
'sub_type': 'percentage',
'title': 'Percentage of GDP',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/government-fiscal-position-annual/resources/government-total-expenditure-2017-02-20T15-04-26Z.csv',
'7b4af397-3e8f-40de-9208-90d168afc810',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'description': 'The data for the latest financial year is estimated, while that for the previous year is revised.',
'name': 'actual_revised_estimated',
'sub_type': 'general',
'title': 'Actual/Revised/Estimated',
'type': 'text'},
{'name': 'sector',
'sub_type': 'general',
'title': 'Sector',
'type': 'text'},
{'name': 'ministry',
'sub_type': 'general',
'title': 'Ministry',
'type': 'text'},
{'name': 'type', 'sub_type': 'general', 'title': 'Type', 'type': 'text'},
{'name': 'amount',
'sub_type': 'general',
'title': 'Amount',
'type': 'numeric',
'unit_of_measure': 'S$ million'},
{'description': 'Percentages are expressed as a value over 1, i.e. "1" represents 100%',
'name': 'percent_of_gdp',
'sub_type': 'percentage',
'title': 'Percentage of GDP',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/government-fiscal-position-annual/resources/government-expenditure-by-type-2017-02-20T15-07-44Z.csv',
'032ac035-7a69-4e09-9007-7426ddef63e4',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'description': 'The data for the latest financial year is estimated, while that for the previous year is revised.',
'name': 'actual_revised_estimated',
'sub_type': 'general',
'title': 'Actual/Revised/Estimated',
'type': 'text'},
{'name': 'type', 'sub_type': 'general', 'title': 'Type', 'type': 'text'},
{'name': 'category',
'sub_type': 'general',
'title': 'Category',
'type': 'text'},
{'name': 'class', 'sub_type': 'general', 'title': 'Class', 'type': 'text'},
{'name': 'amount',
'sub_type': 'general',
'title': 'Amount',
'type': 'numeric',
'unit_of_measure': 'S$ million'}],
'CSV'),
('https://storage.data.gov.sg/government-headcount/resources/government-headcount-by-ministry-2017-02-20T15-34-45Z.csv',
'cbcc128f-081d-4a03-8970-9bac1be13a5d',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'description': 'The data for the latest financial year is estimated, while that for the previous year is revised.',
'name': 'actual_revised_estimated',
'sub_type': 'general',
'title': 'Actual/Revised/Estimated',
'type': 'text'},
{'name': 'ministry',
'sub_type': 'general',
'title': 'Ministry',
'type': 'text'},
{'name': 'count',
'sub_type': 'general',
'title': 'Count',
'type': 'numeric',
'unit_of_measure': 'No. of people'}],
'CSV'),
('https://storage.data.gov.sg/government-health-expenditure/resources/government-health-expenditure-2017-05-31T07-12-29Z.csv',
'cf7b1696-9b0e-425d-a96a-e61c41629623',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial year',
'type': 'datetime'},
{'name': 'operating_expenditure',
'sub_type': 'general',
'title': 'Operating Expenditure',
'type': 'numeric',
'unit_of_measure': 'S$ Million'},
{'name': 'development_expenditure',
'sub_type': 'general',
'title': 'Development Expenditure',
'type': 'numeric',
'unit_of_measure': 'S$ Million'},
{'name': 'government_health_expenditure',
'sub_type': 'general',
'title': 'Government Health Expenditure',
'type': 'numeric',
'unit_of_measure': 'S$ Million'},
{'description': ['Government Health Expenditure as a percentage of GDP',
'Percentages are expressed as a value over 100, i.e. "100" represents 100%'],
'name': 'percentage_gdp',
'sub_type': 'percentage',
'title': 'Percentage of GDP',
'type': 'numeric'},
{'description': ['Government Health Expenditure as a percentage of Total Government Expenditure',
'Percentages are expressed as a value over 100, i.e. "100" represents 100%'],
'name': 'percentage_tge',
'sub_type': 'percentage',
'title': 'Percentage of Total Government Expenditure',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/government-procurement/resources/government-procurement-via-gebiz-2016-11-22T11-45-37Z.csv',
'b9d8d509-5cb6-45dc-bb46-9508e670e3c2',
[{'name': 'tender_no.',
'sub_type': 'general',
'title': 'Tender No.',
'type': 'text'},
{'name': 'agency',
'sub_type': 'general',
'title': 'Agency',
'type': 'text'},
{'name': 'tender_description',
'sub_type': 'general',
'title': 'Tender Description',
'type': 'text'},
{'format': 'YYYY-MM-DD',
'name': 'award_date',
'sub_type': 'date',
'title': 'Award Date',
'type': 'datetime'},
{'name': 'tender_detail_status',
'sub_type': 'general',
'title': 'Tender Detail Status',
'type': 'text'},
{'name': 'supplier_name',
'sub_type': 'general',
'title': 'Supplier Name',
'type': 'text'},
{'name': 'awarded_amt',
'sub_type': 'general',
'title': 'Awarded Amount',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/government-recurrent-expenditure-on-education/resources/government-recurrent-expenditure-on-education-by-type-of-educational-institutions-2016-10-11T07-13-21Z.csv',
'0db9f5fb-7b87-43e1-9e5d-78404e57b79d',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'type_of_educational_institutions',
'sub_type': 'general',
'title': 'Type Of Educational Institutions',
'type': 'text'},
{'name': 'recurrent_expenditure',
'sub_type': 'general',
'title': 'Recurrent Expenditure',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'}],
'CSV'),
('https://storage.data.gov.sg/government-recurrent-expenditure-on-education/resources/government-recurrent-expenditure-on-education-total-2016-10-11T07-05-21Z.csv',
'58f33f67-d91b-4485-8ccf-b7fe536b2cdb',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'recurrent_expenditure_total',
'sub_type': 'general',
'title': 'Total Recurrent Expenditure',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'}],
'CSV'),
('https://storage.data.gov.sg/government-recurrent-expenditure-on-education-per-student/resources/government-recurrent-expenditure-on-education-per-student-2016-10-11T06-52-18Z.csv',
'1b84f2f7-b11e-4705-af17-82b67f050b85',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'type_of_educational_institution',
'sub_type': 'general',
'title': 'Type Of Educational Institution',
'type': 'text'},
{'name': 'expenditure_per_student',
'sub_type': 'general',
'title': 'Expenditure Per Student',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/graduate-employment-survey-ntu-nus-sit-smu-sutd/resources/graduate-employment-survey-ntu-nus-sit-smu-sutd-2016-04-08T08-18-50Z.csv',
'9326ca53-9153-4a9c-b93f-8ae032637b70',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'university',
'sub_type': 'general',
'title': 'University',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'school',
'sub_type': 'general',
'title': 'School',
'type': 'text'},
{'name': 'degree',
'sub_type': 'general',
'title': 'Degree',
'type': 'text'},
{'description': ['Overall employment includes all types of full-time, part-time and temporary employment.',
'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'"na" : Data not available or not applicable'],
'name': 'employment_rate_overall',
'sub_type': 'percentage',
'title': 'Overall Employment Rate',
'type': 'numeric'},
{'description': ['Full-time permanent employment refers to employment of at least 35 hours a week and where the employment is not temporary. It includes those on contracts of one year or more.',
'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'"na" : Data not available or not applicable'],
'name': 'employment_rate_permanent',
'sub_type': 'percentage',
'title': 'Full-Time Permanent Employment Rate',
'type': 'numeric'},
{'description': '"na" : Data not available or not applicable',
'name': 'basic_monthly_mean',
'sub_type': 'general',
'title': 'Basic Monthly Salary - Mean',
'type': 'numeric',
'unit_of_measure': 'S$'},
{'description': '"na" : Data not available or not applicable',
'name': 'basic_monthly_median',
'sub_type': 'general',
'title': 'Basic Monthly Salary - Median',
'type': 'numeric',
'unit_of_measure': 'S$'},
{'description': '"na" : Data not available or not applicable',
'name': 'gross_monthly_mean',
'sub_type': 'general',
'title': 'Gross Monthly Salary - Mean',
'type': 'numeric',
'unit_of_measure': 'S$'},
{'description': '"na" : Data not available or not applicable',
'name': 'gross_monthly_median',
'sub_type': 'general',
'title': 'Gross Monthly Salary - Median',
'type': 'numeric',
'unit_of_measure': 'S$'},
{'description': '"na" : Data not available or not applicable',
'name': 'gross_mthly_25_percentile',
'sub_type': 'general',
'title': 'Gross Monthly Salary - 25th Percentile',
'type': 'numeric',
'unit_of_measure': 'S$'},
{'description': '"na" : Data not available or not applicable',
'name': 'gross_mthly_75_percentile',
'sub_type': 'general',
'title': 'Gross Monthly Salary - 75th Percentile',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/graduates-from-university-first-degree-courses-by-type-of-course/resources/graduates-from-university-first-degree-courses-by-type-of-course-2016-02-15T07-23-55Z.csv',
'eb8b932c-503c-41e7-b513-114cffbe2338',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'sex', 'sub_type': 'general', 'title': 'Sex', 'type': 'text'},
{'name': 'type_of_course',
'sub_type': 'general',
'title': 'Type Of Course',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'no_of_graduates',
'sub_type': 'general',
'title': 'No. Of Graduates',
'type': 'numeric',
'unit_of_measure': 'No. Of Graduates'}],
'CSV'),
('https://storage.data.gov.sg/grassroots-leaders/resources/grassroots-leaders-2017-06-15T08-24-46Z.csv',
'29b2d21f-6262-47c2-b97d-88466c6b96d6',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'type_of_organisations',
'sub_type': 'general',
'title': 'Type Of Organisations',
'type': 'text'},
{'name': 'total_no_of_grassroot_leaders',
'sub_type': 'general',
'title': 'Total No. Of Grassroot Leaders',
'type': 'numeric',
'unit_of_measure': 'No. Of Grassroot Leaders'}],
'CSV'),
('https://storage.data.gov.sg/grassroots-leaders/resources/grassroots-leaders-updated-2017-06-15T09-10-39Z.csv',
'9818cfc8-90ee-4661-a776-dcb6fa1c90d7',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Calendar Year',
'type': 'datetime'},
{'name': 'grassroots_org_type',
'sub_type': 'general',
'title': 'Types of Grassroots Oganisations',
'type': 'text'},
{'name': 'no_of_grassroots_leaders',
'sub_type': 'general',
'title': 'Number of Grassroots Leaders',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/grassroots-organisations/resources/grassroots-organisations-2016-02-11T10-55-53Z.csv',
'465ec2fa-b59d-42ab-ae99-fcaea59ba292',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'type_of_organisations',
'sub_type': 'general',
'title': 'Type Of Organisations',
'type': 'text'},
{'name': 'total_grassroot_organisations',
'sub_type': 'general',
'title': 'Total Grassroot Organisations',
'type': 'numeric',
'unit_of_measure': 'No. of Organisations'}],
'CSV'),
('https://storage.data.gov.sg/gross-allocation-of-prepared-industrial-land-by-allocation-mode/resources/gross-allocation-of-jtcs-prepared-industrial-land-by-allocation-mode-2017-04-28T03-42-38Z.csv',
'44f2e8b4-a961-44d7-9c67-a6808843382b',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'allocation_mode',
'sub_type': 'general',
'title': 'Allocation Mode',
'type': 'text'},
{'name': 'gross_allocation',
'sub_type': 'general',
'title': 'Gross Allocation',
'type': 'numeric',
'unit_of_measure': 'ha'}],
'CSV'),
('https://storage.data.gov.sg/gross-allocation-of-ready-built-facilities-by-allocation-mode/resources/gross-allocation-of-jtcs-ready-built-facilities-by-allocation-mode-2017-04-28T03-44-15Z.csv',
'61d2ecc5-0699-494d-b2d4-010b2027e5a5',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'allocation_mode',
'sub_type': 'general',
'title': 'Allocation Mode',
'type': 'text'},
{'name': 'gross_allocation',
'sub_type': 'general',
'title': 'Gross Allocation',
'type': 'numeric',
'unit_of_measure': 'Thousand Sqm'}],
'CSV'),
('https://storage.data.gov.sg/gross-allocation-returns-of-prepared-industrial-land-by-product-segment/resources/gross-allocation-and-returns-of-jtcs-prepared-industrial-land-by-product-segment-2017-04-28T03-47-20Z.csv',
'3780147c-f0dd-4099-abe0-dc282bad78e7',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'product_segment',
'sub_type': 'general',
'title': 'Product Segment',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'gross_allocation',
'sub_type': 'general',
'title': 'Gross Allocation',
'type': 'numeric',
'unit_of_measure': 'ha'},
{'description': ['Returns refers to companies giving up the land or space that is leased or rented to them, for example, upon expiry of term or pre-maturely before the expiry of term.',
'"na" : Data not available or not applicable'],
'name': 'returns',
'sub_type': 'general',
'title': 'Returns',
'type': 'numeric',
'unit_of_measure': 'ha'}],
'CSV'),
('https://storage.data.gov.sg/gross-allocation-returns-of-prepared-industrial-land-by-product-segment/resources/gross-allocation-and-returns-of-jtcs-prepared-industrial-land-by-industry-2017-04-28T03-58-59Z.csv',
'7cebd6f6-00d2-41c6-acff-608dd98a8e64',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'industry',
'sub_type': 'general',
'title': 'Industry',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'gross_allocation',
'sub_type': 'general',
'title': 'Gross Allocation',
'type': 'numeric',
'unit_of_measure': 'ha'},
{'description': ['Returns refers to companies giving up the land or space that is leased or rented to them, for example, upon expiry of term or pre-maturely before the expiry of term.',
'"na" : Data not available or not applicable'],
'name': 'returns',
'sub_type': 'general',
'title': 'Returns',
'type': 'numeric',
'unit_of_measure': 'ha'}],
'CSV'),
('https://storage.data.gov.sg/gross-allocation-returns-of-ready-built-facilities-by-product-segment/resources/gross-allocation-and-returns-of-jtcs-ready-built-facilities-by-product-segment-2017-04-28T04-00-26Z.csv',
'0b4e1fc4-acfd-4e3e-933d-47edf7f810a7',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'product_segment',
'sub_type': 'general',
'title': 'Product Segment',
'type': 'text'},
{'name': 'gross_allocation',
'sub_type': 'general',
'title': 'Gross Allocation',
'type': 'numeric',
'unit_of_measure': 'Thousand Sqm'},
{'description': 'Returns refers to companies giving up the land or space that is leased or rented to them, for example, upon expiry of term or pre-maturely before the expiry of term.',
'name': 'returns',
'sub_type': 'general',
'title': 'Returns',
'type': 'numeric',
'unit_of_measure': 'Thousand Sqm'}],
'CSV'),
('https://storage.data.gov.sg/gross-allocation-returns-of-ready-built-facilities-by-product-segment/resources/gross-allocation-and-returns-of-jtcs-ready-built-facilities-by-industry-2017-04-28T04-02-29Z.csv',
'c283c6c2-9cc5-4cf7-945d-3eb94221eeb7',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'industry',
'sub_type': 'general',
'title': 'Industry',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'gross_allocation',
'sub_type': 'general',
'title': 'Gross Allocation',
'type': 'numeric',
'unit_of_measure': 'Thousand Sqm'},
{'description': ['Returns refers to companies giving up the land or space that is leased or rented to them, for example, upon expiry of term or pre-maturely before the expiry of term.',
'"na" : Data not available or not applicable'],
'name': 'returns',
'sub_type': 'general',
'title': 'Returns',
'type': 'numeric',
'unit_of_measure': 'Thousand Sqm'}],
'CSV'),
('https://storage.data.gov.sg/gross-domestic-product-at-2010-market-prices-annual/resources/gross-domestic-product-at-2010-market-prices-annual-2017-05-26T16-29-34Z.csv',
'37c1f5bf-7ae4-4f7a-9e27-f593c5beb456',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/gross-domestic-product-at-2010-market-prices-annual/resources/gross-domestic-product-at-2010-market-prices-by-industry-annual-2017-05-26T16-29-40Z.csv',
'c938c429-0e3e-48eb-b03f-278300d93eb9',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Industry',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/gross-domestic-product-at-2010-market-prices-annual/resources/gross-domestic-product-at-2010-market-prices-by-detailed-industry-annual-2017-05-26T16-29-44Z.csv',
'40d01109-0243-4420-9537-50014c7c28c0',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Industry',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Detailed Industry',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/gross-domestic-product-at-2010-market-prices-quarterly/resources/gross-domestic-product-at-2010-market-prices-quarterly-2017-05-26T16-30-16Z.csv',
'950006f0-ccb2-44b7-bbda-aeedaa7e95ed',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/gross-domestic-product-at-2010-market-prices-quarterly/resources/gross-domestic-product-at-2010-market-prices-by-industry-quarterly-2017-05-26T16-30-23Z.csv',
'6c5c6da1-d1d1-433c-83e1-50f50d6b8748',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'description': 'Industry Group',
'name': 'level_2',
'sub_type': 'general',
'title': 'Industry',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/gross-domestic-product-at-2010-market-prices-quarterly/resources/gross-domestic-product-at-2010-market-prices-by-detailed-industry-quarterly-2017-05-26T16-30-32Z.csv',
'1c6676f3-1a4e-4c10-b5c6-9a9050584c74',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'description': 'Industry Group',
'name': 'level_2',
'sub_type': 'general',
'title': 'Industry',
'type': 'text'},
{'description': 'Industry',
'name': 'level_3',
'sub_type': 'general',
'title': 'Detailed Industry',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/gross-domestic-product-at-current-market-prices-annual/resources/gross-domestic-product-at-current-market-prices-annual-2017-05-26T16-30-37Z.csv',
'6b910a4d-ffc1-43ef-b26f-5b982f778aff',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/gross-domestic-product-at-current-market-prices-annual/resources/gross-domestic-product-at-current-market-prices-by-industry-annual-2017-05-26T16-30-41Z.csv',
'e63cbf44-107b-47c1-baad-ad0f841c09b8',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'description': 'Industry Group',
'name': 'level_2',
'sub_type': 'general',
'title': 'Industry',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/gross-domestic-product-at-current-market-prices-annual/resources/gross-domestic-product-at-current-market-prices-by-detailed-industry-annual-2017-05-26T16-30-47Z.csv',
'0eb10e65-76f9-4a74-8cca-dd394e210c8f',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'description': 'Industry Group',
'name': 'level_2',
'sub_type': 'general',
'title': 'Industry',
'type': 'text'},
{'description': 'Industry',
'name': 'level_3',
'sub_type': 'general',
'title': 'Detailed Industry',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/gross-domestic-product-at-current-market-prices-quarterly/resources/gross-domestic-product-at-current-market-prices-quarterly-2017-05-26T16-31-17Z.csv',
'b74a39ad-a7fa-40c4-9a90-75d08230e786',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/gross-domestic-product-at-current-market-prices-quarterly/resources/gross-domestic-product-at-current-market-prices-by-industry-quarterly-2017-05-26T16-31-23Z.csv',
'07b47f32-5166-49a4-beb0-e93494fb4441',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'description': 'Industry Group',
'name': 'level_2',
'sub_type': 'general',
'title': 'Industry',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/gross-domestic-product-at-current-market-prices-quarterly/resources/gross-domestic-product-at-current-market-prices-by-detailed-industry-quarterly-2017-05-26T16-31-32Z.csv',
'973455d6-8650-4bf3-b4f2-47f7b706e0a7',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'description': 'Industry Group',
'name': 'level_2',
'sub_type': 'general',
'title': 'Industry',
'type': 'text'},
{'description': 'Industry',
'name': 'level_3',
'sub_type': 'general',
'title': 'Detailed Industry',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/gst-businesses-by-entity-type-annual/resources/gst-businesses-by-entity-type-2016-10-03T00-36-21Z.csv',
'a6e85e76-ca84-41de-8305-5ddf14356e4c',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'name': 'entity_type',
'sub_type': 'general',
'title': 'Entity Type',
'type': 'text'},
{'name': 'no_of_businesses',
'sub_type': 'general',
'title': 'No. of Businesses',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/gst-by-economic-sector-annual/resources/gst-by-economic-sector-2016-10-03T00-47-50Z.csv',
'7e9e07d5-1aa2-4c5d-8981-23cae27dc674',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'name': 'economic_sector',
'sub_type': 'general',
'title': 'Economic Sector',
'type': 'text'},
{'name': 'no_of_businesses',
'sub_type': 'general',
'title': 'No. of Businesses',
'type': 'numeric',
'unit_of_measure': 'Count'},
{'description': ['Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'"na" : Data not available or not applicable'],
'name': 'percentage_of_businesses_in_net_gst_refund_position',
'sub_type': 'percentage',
'title': 'Percentage of Businesses in Net GST Refund Position',
'type': 'numeric'},
{'description': ['Included amount of net GST contribution from FY2011/2012.',
'"na" : Data not available or not applicable'],
'name': 'net_gst_contribution',
'sub_type': 'general',
'title': 'Net GST Contribution',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'percentage_of_net_gst_contribution',
'sub_type': 'percentage',
'title': 'Percentage of Net GST Contribution',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/half-hourly-system-demand/resources/half-hourly-system-demand-data-from-2-feb-2012-onwards-2016-06-14T05-29-36Z.csv',
'85e22503-74c8-43a1-8cee-f4e4b1d9c5fc',
[{'format': 'YYYY-MM-DD',
'name': 'date',
'sub_type': 'date',
'title': 'Date',
'type': 'datetime'},
{'format': 'HH:mm',
'name': 'period_ending_time',
'sub_type': 'time',
'title': 'Period Ending Time',
'type': 'datetime'},
{'description': 'Includes demand of consumers with their own embedded generators.',
'name': 'system_demand_actual',
'sub_type': 'general',
'title': 'System Demand (Actual)',
'type': 'numeric',
'unit_of_measure': 'MW'},
{'description': ['Actual Demand met by all Generation Registered Facilities.',
'"na" : Data not available or not applicable'],
'name': 'nem_demand_actual',
'sub_type': 'general',
'title': 'Nem Demand (Actual)',
'type': 'numeric',
'unit_of_measure': 'MW'},
{'description': ['Forecast demand for scheduling of Generation Registered Facilities. ',
'"na" : Data not available or not applicable'],
'name': 'nem_demand_forecast',
'sub_type': 'general',
'title': 'Nem Demand (Forecast)',
'type': 'numeric',
'unit_of_measure': 'MW'}],
'CSV'),
('https://storage.data.gov.sg/hcs-product-list/resources/healthier-choice-symbol-hcs-product-list-as-of-apr-2016-2016-06-20T08-55-41Z.csv',
'6bf1e41f-cdf8-47ca-ac72-c5c076f59416',
[{'name': 'main_food_group',
'sub_type': 'general',
'title': 'Main food group',
'type': 'text'},
{'name': 'company_name',
'sub_type': 'general',
'title': 'Company name',
'type': 'text'},
{'name': 'product_name',
'sub_type': 'general',
'title': 'Product name',
'type': 'text'},
{'name': 'brand_name',
'sub_type': 'general',
'title': 'Brand name',
'type': 'text'},
{'name': 'product_weight',
'sub_type': 'general',
'title': 'Product weight',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/hdb-carpark-information/resources/hdb-carpark-information-2017-06-01T02-58-54Z.csv',
'139a3035-e624-4f56-b63f-89ae28d4ae4c',
[{'name': 'car_park_no',
'sub_type': 'general',
'title': 'Car Park No.',
'type': 'text'},
{'name': 'address',
'sub_type': 'general',
'title': 'Address',
'type': 'text'},
{'coordinate_system': 'EPSG:3414',
'name': 'x_coord',
'sub_type': 'x',
'title': 'X Coord',
'type': 'geo_coordinate'},
{'coordinate_system': 'EPSG:3414',
'name': 'y_coord',
'sub_type': 'y',
'title': 'Y Coord',
'type': 'geo_coordinate'},
{'name': 'car_park_type',
'sub_type': 'general',
'title': 'Car Park Type',
'type': 'text'},
{'name': 'type_of_parking_system',
'sub_type': 'general',
'title': 'Type Of Parking System',
'type': 'text'},
{'name': 'short_term_parking',
'sub_type': 'general',
'title': 'Short Term Parking',
'type': 'text'},
{'name': 'free_parking',
'sub_type': 'general',
'title': 'Free Parking',
'type': 'text'},
{'name': 'night_parking',
'sub_type': 'general',
'title': 'Night Parking',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/hdb-households-by-ethnic-group-and-flat-type/resources/hdb-households-by-ethnic-group-2017-03-10T09-18-09Z.csv',
'375f00b5-a5e7-470f-afe9-739c93c5022b',
[{'format': 'YYYY',
'name': 'shs_year',
'sub_type': 'year',
'title': 'SHS Year',
'type': 'datetime'},
{'name': 'ethnic_group',
'sub_type': 'general',
'title': 'Ethnic Group',
'type': 'text'},
{'name': 'no_of_households',
'sub_type': 'general',
'title': 'No. of Households',
'type': 'numeric',
'unit_of_measure': 'No. of Households'}],
'CSV'),
('https://storage.data.gov.sg/hdb-households-by-ethnic-group-and-flat-type/resources/hdb-households-by-flat-type-2017-03-10T09-18-29Z.csv',
'fbe39e51-47fb-4ac2-8eba-9d779d617428',
[{'format': 'YYYY',
'name': 'shs_year',
'sub_type': 'year',
'title': 'SHS Year',
'type': 'datetime'},
{'name': 'flat_type',
'sub_type': 'general',
'title': 'Flat Type',
'type': 'text'},
{'name': 'no_of_households',
'sub_type': 'general',
'title': 'No. of Households',
'type': 'numeric',
'unit_of_measure': 'No. of Households'}],
'CSV'),
('https://storage.data.gov.sg/hdb-households-by-ethnic-group-and-flat-type/resources/percentage-of-hdb-households-by-flat-type-and-ethnic-group-2017-05-05T07-34-10Z.csv',
'48593fa2-187d-4940-9578-54b32123dab1',
[{'format': 'YYYY',
'name': 'shs_year',
'sub_type': 'year',
'title': 'SHS Year',
'type': 'datetime'},
{'name': 'ethnic_group',
'sub_type': 'general',
'title': 'Ethnic Group',
'type': 'text'},
{'name': 'flat_type',
'sub_type': 'general',
'title': 'Flat Type',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'percentage',
'sub_type': 'percentage',
'title': 'Percentage',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/hdb-properties-facilities-under-management/resources/industrial-properties-under-hdb-management-2017-05-05T07-34-12Z.csv',
'a5007ffc-c3a0-47b9-96e2-7ef3b7d81f22',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'name': 'property_type',
'sub_type': 'general',
'title': 'Property Type',
'type': 'text'},
{'name': 'no_of_units',
'sub_type': 'general',
'title': 'No. of Units',
'type': 'numeric',
'unit_of_measure': 'No. of Units'}],
'CSV'),
('https://storage.data.gov.sg/hdb-properties-facilities-under-management/resources/commercial-properties-under-hdb-management-2017-05-05T07-34-31Z.csv',
'9c292ee0-8d22-4274-a0f3-120f30059aed',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'name': 'property_type',
'sub_type': 'general',
'title': 'Property Type',
'type': 'text'},
{'name': 'no_of_units',
'sub_type': 'general',
'title': 'No. of Units',
'type': 'numeric',
'unit_of_measure': 'No. of Units'}],
'CSV'),
('https://storage.data.gov.sg/hdb-properties-facilities-under-management/resources/car-parks-under-hdb-management-2017-05-05T07-34-44Z.csv',
'78c18b2b-b4cb-47d7-a953-612b3a2800ce',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'name': 'facility_type',
'sub_type': 'general',
'title': 'Facility Type',
'type': 'text'},
{'name': 'no_of_lots',
'sub_type': 'general',
'title': 'No. of Lots',
'type': 'numeric',
'unit_of_measure': 'No. of Lots'}],
'CSV'),
('https://storage.data.gov.sg/hdb-properties-facilities-under-management/resources/hdb-and-government-administrative-facilities-under-hdb-management-2017-05-05T07-35-01Z.csv',
'12aa98f5-0c9d-48fd-8278-5f49a8441642',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'name': 'facility_type',
'sub_type': 'general',
'title': 'Facility Type',
'type': 'text'},
{'name': 'no_of_units',
'sub_type': 'general',
'title': 'No. of Units',
'type': 'numeric',
'unit_of_measure': 'No. of Units'}],
'CSV'),
('https://storage.data.gov.sg/hdb-properties-facilities-under-management/resources/social-and-communal-facilities-under-hdb-management-2017-05-05T07-35-09Z.csv',
'3a46ab5d-4ef3-4578-8301-86ce1b47a2ec',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'name': 'facility_type',
'sub_type': 'general',
'title': 'Facility Type',
'type': 'text'},
{'name': 'no_of_units',
'sub_type': 'general',
'title': 'No. of Units',
'type': 'numeric',
'unit_of_measure': 'No. of Units'}],
'CSV'),
('https://storage.data.gov.sg/hdb-resale-price-index/resources/housing-and-development-board-resale-price-index-1q2009-100-quarterly-2017-06-06T03-10-55Z.csv',
'52e93430-01b7-4de0-80df-bc83d0afed40',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'index',
'sub_type': 'general',
'title': 'Index',
'type': 'numeric',
'unit_of_measure': 'Index (1st Quarter 2009 = 100)'}],
'CSV'),
('https://storage.data.gov.sg/hdb-resident-population-and-growth-rate-sample-household-survey/resources/hdb-resident-population-2017-03-14T04-23-30Z.csv',
'2e9736f5-3e33-4072-b964-2c94aa442d4f',
[{'description': 'The Sample Household Survey is conducted once every 5 years.',
'format': 'YYYY',
'name': 'shs_year',
'sub_type': 'year',
'title': 'SHS Year',
'type': 'datetime'},
{'name': 'hdb_resident_population',
'sub_type': 'general',
'title': 'HDB Resident Population',
'type': 'numeric',
'unit_of_measure': 'No. of Persons'}],
'CSV'),
('https://storage.data.gov.sg/hdb-resident-population-and-growth-rate-sample-household-survey/resources/hdb-resident-population-annualised-growth-rate-2017-05-05T07-34-10Z.csv',
'a14cb0a3-7bc3-4861-beab-8739630faa92',
[{'format': 'YYYY',
'name': 'shs_year',
'sub_type': 'year',
'title': 'SHS Year',
'type': 'datetime'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'annualised_growth_rate',
'sub_type': 'percentage',
'title': 'HDB Resident Population Annualised Growth Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/hdb-resident-population-by-ethnic-group-and-flat-type/resources/hdb-resident-population-by-ethnic-group-2017-05-05T07-34-10Z.csv',
'3d5d0b11-59d1-4579-a0f0-530b248902f0',
[{'format': 'YYYY',
'name': 'shs_year',
'sub_type': 'year',
'title': 'SHS Year',
'type': 'datetime'},
{'name': 'ethnic_group',
'sub_type': 'general',
'title': 'Ethnic Group',
'type': 'text'},
{'name': 'resident_population',
'sub_type': 'general',
'title': 'HDB Resident Population',
'type': 'numeric',
'unit_of_measure': 'No. of Persons'}],
'CSV'),
('https://storage.data.gov.sg/hdb-resident-population-by-ethnic-group-and-flat-type/resources/hdb-resident-population-by-flat-type-2017-05-05T07-34-25Z.csv',
'15c5a6cf-0734-4e6d-8198-381418f4b723',
[{'format': 'YYYY',
'name': 'shs_year',
'sub_type': 'year',
'title': 'SHS Year',
'type': 'datetime'},
{'name': 'flat_type',
'sub_type': 'general',
'title': 'Flat Type',
'type': 'text'},
{'name': 'resident_population',
'sub_type': 'general',
'title': 'HDB Resident Population',
'type': 'numeric',
'unit_of_measure': 'No. of Persons'}],
'CSV'),
('https://storage.data.gov.sg/hdb-resident-population-by-ethnic-group-and-flat-type/resources/percentage-of-hdb-resident-population-by-ethnic-group-by-flat-type-2017-03-10T08-16-49Z.csv',
'ea734571-cc3f-4c0f-9a36-291c69f7d028',
[{'format': 'YYYY',
'name': 'shs_year',
'sub_type': 'year',
'title': 'SHS Year',
'type': 'datetime'},
{'name': 'ethnic_group',
'sub_type': 'general',
'title': 'Ethnic Group',
'type': 'text'},
{'name': 'flat_type',
'sub_type': 'general',
'title': 'Flat Type',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'percentage',
'sub_type': 'percentage',
'title': 'Percentage',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/health-adjusted-life-expectancy/resources/health-adjusted-life-expectancy-at-birth-2017-04-12T03-48-33Z.csv',
'07768e9d-222d-466e-a786-e2f90b33c057',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'name': 'hale_at_birth',
'sub_type': 'general',
'title': 'Health Adjusted Life Expectancy at Birth',
'type': 'numeric',
'unit_of_measure': 'Years'}],
'CSV'),
('https://storage.data.gov.sg/healthcare-professional-to-population-ratio/resources/healthcare-professional-to-population-ratio-2016-10-12T02-25-54Z.csv',
'4e1abaad-e810-45d0-b539-9456ec1d0cd1',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'profession',
'sub_type': 'general',
'title': 'Profession',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'no_per_1000',
'sub_type': 'general',
'title': 'No. Per Thousand',
'type': 'numeric',
'unit_of_measure': 'Per Thousand'},
{'description': ['Number of healthcare professionals to population ratio.',
'',
'Figures for doctors, nurses, dentists and pharmacists are rounded off to the nearest tens.',
'"-" : Data is negligible or not significant'],
'name': 'ratio_to_population',
'sub_type': 'general',
'title': 'Ratio to Population',
'type': 'text'}],
'CSV'),
('https://data.gov.sg/dataset/f8267f5b-c580-4a2a-b907-1a68ebeb2b66/resource/6a9550b5-3cf8-4f98-93c8-10368a133003/download/hiv-notification-rate-per-million-population-1985-to-2015.csv',
'6a9550b5-3cf8-4f98-93c8-10368a133003',
[{'description': 'Year of Notitication',
'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'notification_rate_per_million_population',
'sub_type': 'general',
'title': 'Notification Rate Per Million Population',
'type': 'numeric',
'unit_of_measure': 'Notification Rate Per Million Population'}],
'CSV'),
('https://storage.data.gov.sg/hiv-notification-rate-per-million-population/resources/distribution-of-singapore-residents-with-hiv-aids-by-mode-of-transmission-2017-04-04T06-10-59Z.csv',
'7655ef47-a74a-4926-bd5f-c6ec83674c6a',
[{'description': 'Year of Notification',
'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'mode_of_transmission',
'sub_type': 'general',
'title': 'Mode of Transmission',
'type': 'text'},
{'name': 'no._of_cases',
'sub_type': 'general',
'title': 'No. of Cases',
'type': 'numeric',
'unit_of_measure': 'No. of Cases'}],
'CSV'),
('https://storage.data.gov.sg/hiv-notification-rate-per-million-population/resources/distribution-of-singapore-residents-with-hiv-aids-by-gender-2017-04-04T06-18-03Z.csv',
'dbb5b2f6-a324-40d5-88ac-152c9c91d9ae',
[{'description': 'Year of Notification',
'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'name': 'no._of_cases',
'sub_type': 'general',
'title': 'No. of cases',
'type': 'numeric',
'unit_of_measure': 'No. of Cases'}],
'CSV'),
('https://storage.data.gov.sg/hiv-notification-rate-per-million-population/resources/distribution-of-singapore-residents-with-hiv-aids-by-ethnic-groups-2017-04-04T06-24-14Z.csv',
'98855d38-5e10-4e8d-97bd-03f61825934e',
[{'description': 'Year of Notification',
'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'ethnic_group',
'sub_type': 'general',
'title': 'Ethnic group',
'type': 'text'},
{'name': 'no._of_cases',
'sub_type': 'general',
'title': 'No. of Cases',
'type': 'numeric',
'unit_of_measure': 'No. of Cases'}],
'CSV'),
('https://storage.data.gov.sg/hospital-admissions/resources/hospital-admissions-2016-07-07T02-48-36Z.csv',
'6872ca3e-fd2b-446c-9bef-753394043fa4',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'count',
'sub_type': 'general',
'title': 'Count',
'type': 'numeric',
'unit_of_measure': 'No. of Admissions'}],
'CSV'),
('https://storage.data.gov.sg/hospital-admissions/resources/hospital-admissions-by-gender-and-age-group-2016-07-07T02-56-14Z.csv',
'6a43e1fd-3ab5-4b36-8f4b-4fbc54101971',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'name': 'age', 'sub_type': 'general', 'title': 'Age', 'type': 'text'},
{'description': ['Percentage of all hospital admissions for males or females belonging to the age group',
'Percentages are expressed as a value over 100, i.e. "100" represents 100%'],
'name': 'percentage',
'sub_type': 'percentage',
'title': 'Percentage',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/hospital-admissions/resources/hospital-admissions-by-public-and-private-sector-2016-07-18T01-31-07Z.csv',
'0f5e2dbc-7c45-495d-8e72-69a64f38e830',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'type', 'sub_type': 'general', 'title': 'Type', 'type': 'text'},
{'name': 'count',
'sub_type': 'general',
'title': 'Count',
'type': 'numeric',
'unit_of_measure': 'No. of Admissions'}],
'CSV'),
('https://storage.data.gov.sg/hospital-admissions/resources/hospital-admissions-by-gender-and-age-group-public-private-sector-2016-07-18T01-34-51Z.csv',
'fa6c1707-e6df-4834-aede-d27b02d41c63',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'sector',
'sub_type': 'general',
'title': 'Sector',
'type': 'text'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'name': 'age', 'sub_type': 'general', 'title': 'Age', 'type': 'text'},
{'description': ['Percentage of all hospital admissions for males or females to public or private sector hospitals belonging to the age group',
'Percentages are expressed as a value over 100, i.e. "100" represents 100%'],
'name': 'percentage',
'sub_type': 'percentage',
'title': 'Percentage',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/hospital-admissions-and-public-sector-outpatient-attendances-annual/resources/hospital-admissions-and-public-sector-outpatient-attendances-annual-2017-05-26T16-33-30Z.csv',
'ba3c89a7-cfc2-4c87-afe3-b688b0f0ad75',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Sector',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Number of Patients',
'type': 'numeric',
'unit_of_measure': 'Number of Patients'}],
'CSV'),
('https://storage.data.gov.sg/hospital-admissions-and-public-sector-outpatient-attendances-annual/resources/hospital-admissions-by-sector-annual-2017-05-26T16-33-34Z.csv',
'ce5d2248-9cc2-40b1-9571-bb5873f785bf',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Hospital Admissions',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Sector',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Number of Admissions',
'type': 'numeric',
'unit_of_measure': 'Number of Admissions'}],
'CSV'),
('https://storage.data.gov.sg/household-healthcare-expenditure/resources/household-healthcare-expenditure-2017-05-31T07-27-25Z.csv',
'10882b91-504a-4b5a-8f69-801f7f3436c2',
[{'format': 'YYYY',
'name': 'period_start',
'sub_type': 'year',
'title': 'Period start',
'type': 'datetime'},
{'format': 'YYYY',
'name': 'period_end',
'sub_type': 'year',
'title': 'Period end',
'type': 'datetime'},
{'name': 'income_quintile',
'sub_type': 'general',
'title': 'Income quintile',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'percentage_expenditure_on_healthcare',
'sub_type': 'percentage',
'title': 'Percentage expenditure on healthcare',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/household-sector-balance-sheet-end-of-period-quarterly/resources/household-sector-balance-sheet-end-of-period-quarterly-2017-05-26T16-33-41Z.csv',
'78125f8f-3d11-42de-9cef-1a9a03aaaeea',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Household Net Worth',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Million Dollars'}],
'CSV'),
('https://storage.data.gov.sg/household-sector-balance-sheet-end-of-period-quarterly/resources/household-sector-balance-sheet-by-assets-and-liabilities-quarterly-2017-05-26T16-33-47Z.csv',
'8ba426e1-0d40-4a27-b1d3-3fc934b5d2e7',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Household Sector Balance Sheet',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Assets/Liabilities',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Million Dollars'}],
'CSV'),
('https://storage.data.gov.sg/household-sector-balance-sheet-end-of-period-quarterly/resources/household-sector-balance-sheet-by-broad-type-of-assets-and-liabilities-quarterly-2017-05-26T16-33-55Z.csv',
'f747d1fb-1937-4ff4-8dae-96994acc7813',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Household Sector Balance Sheet',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Assets/Liabilities',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Type of Assets/Liabilities',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Million Dollars'}],
'CSV'),
('https://storage.data.gov.sg/household-sector-balance-sheet-end-of-period-quarterly/resources/household-sector-balance-sheet-by-detailed-type-of-assets-and-liabilities-quarterly-2017-05-26T16-34-04Z.csv',
'9b904703-0fc5-4311-b311-03eefe702664',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Household Sector Balance Sheet',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Assets/Liabilities',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Type of Assets/Liabilities',
'type': 'text'},
{'name': 'level_4',
'sub_type': 'general',
'title': 'Detailed Type of Assets/Liabilities',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Million Dollars'}],
'CSV'),
('https://storage.data.gov.sg/household-sector-balance-sheet-end-of-period-quarterly/resources/household-sector-balance-sheet-by-type-of-shares-and-securities-quarterly-2017-05-26T16-34-10Z.csv',
'0883fe45-5fbe-4b72-bf15-ad52d814bf27',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Household Sector Balance Sheet',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Assets/Liabilities',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Type of Assets/Liabilities',
'type': 'text'},
{'name': 'level_4',
'sub_type': 'general',
'title': 'Detailed Type of Assets/Liabilities',
'type': 'text'},
{'name': 'level_5',
'sub_type': 'general',
'title': 'Type of Shares and Securities',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Million Dollars'}],
'CSV'),
('https://storage.data.gov.sg/households-that-benefitted-from-cpf-housing-grant/resources/cpf-housing-grants-awarded-by-type-2016-10-31T09-02-21Z.csv',
'a077135a-a0ae-4656-9fd9-8fa61e8170bb',
[{'description': ['FY 2010 refers to period 1 Apr 2010 to 31 Mar 2011',
'Financial year starts on 1 April and ends on 31 March'],
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'description': ['The Special CPF Housing Grant (SHG) was implemented in FY 2010. ',
'',
'The Proximity Housing Grant (PHG) was implemented in FY 2015, on 24 August 2015. '],
'name': 'housing_grant_scheme',
'sub_type': 'general',
'title': 'Type of Housing Grant Scheme',
'type': 'text'},
{'description': '"na" : Not Applicable',
'name': 'type_of_grant',
'sub_type': 'general',
'title': 'Type of Grant under CPF Housing Grant',
'type': 'text'},
{'description': '"na" : Not Applicable',
'name': 'no_of_hh',
'sub_type': 'general',
'title': 'Number of Households',
'type': 'numeric',
'unit_of_measure': 'Number of Households'}],
'CSV'),
('https://storage.data.gov.sg/immunisation-coverage-for-children-at-2-years-of-age/resources/immunisation-coverage-for-children-at-2-years-of-age-2016-07-19T02-44-52Z.csv',
'b7b127eb-597e-4860-9011-08e6e6f0ae81',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'immunisation_type',
'sub_type': 'general',
'title': 'Immunisation Type',
'type': 'text'},
{'description': ['At 2 years of age',
'Percentages are expressed as a value over 100, i.e. "100" represents 100%'],
'name': 'percent',
'sub_type': 'percentage',
'title': 'Percent',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/import-price-index-by-commodity-section-base-year-2012-100-monthly/resources/import-price-index-2017-05-26T16-37-39Z.csv',
'35d35683-19dd-4043-b90f-4d9cdac08741',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Main Index',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Index',
'type': 'numeric',
'unit_of_measure': 'Index'}],
'CSV'),
('https://storage.data.gov.sg/import-price-index-by-commodity-section-base-year-2012-100-monthly/resources/import-price-index-by-commodity-section-2017-05-26T16-37-50Z.csv',
'79118908-e3cd-4258-b0c0-23536d66cbbd',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Main Index',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Commodity Section',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Index',
'type': 'numeric',
'unit_of_measure': 'Index'}],
'CSV'),
('https://storage.data.gov.sg/incarceration-rate/resources/incarceration-rate-2017-02-27T08-10-03Z.csv',
'76085429-a8d1-4fcf-8949-3749ebeb9e18',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'incarceration_rate_per_100000_inmates',
'sub_type': 'general',
'title': 'Incarceration Rate Per 100000 Inmates',
'type': 'numeric',
'unit_of_measure': 'Number of Inmates'}],
'CSV'),
('https://storage.data.gov.sg/incidence-of-redundancy-annual/resources/incidence-of-redundancy-annual-2016-02-16T05-59-03Z.csv',
'2f0118d7-e84f-41e8-968f-5621d33f6a92',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'incidence_of_redundancy',
'sub_type': 'general',
'title': 'Incidence Of Redundancy',
'type': 'numeric',
'unit_of_measure': 'Per 1,000 Workers'}],
'CSV'),
('https://storage.data.gov.sg/incidence-of-redundancy-by-industry-and-occupational-group-annual/resources/incidence-of-redundancy-topline-2017-03-15T08-52-37Z.csv',
'6bc172a4-192f-4ca3-90dc-88ada4f46a64',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'incidence_of_redundancy',
'sub_type': 'general',
'title': 'Incidence Of Redundancy',
'type': 'numeric',
'unit_of_measure': 'Per 1,000 Workers'}],
'CSV'),
('https://storage.data.gov.sg/incidence-of-redundancy-by-industry-and-occupational-group-annual/resources/incidence-of-redundancy-by-industry-level1-2017-03-15T08-53-49Z.csv',
'37913564-d97a-4e33-9d09-9ce267a4c602',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry1',
'type': 'text'},
{'description': '"-" : Data is negligible or not significant',
'name': 'incidence_of_redundancy',
'sub_type': 'general',
'title': 'Incidence Of Redundancy',
'type': 'numeric',
'unit_of_measure': 'Per 1,000 Workers'}],
'CSV'),
('https://storage.data.gov.sg/incidence-of-redundancy-by-industry-and-occupational-group-annual/resources/incidence-of-redundancy-by-industry-level2-2017-03-15T08-55-04Z.csv',
'8eba0d05-c360-4047-83ab-ff6ae2d8f267',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry1',
'type': 'text'},
{'name': 'industry2',
'sub_type': 'general',
'title': 'Industry2',
'type': 'text'},
{'description': '"-" : Data is negligible or not significant',
'name': 'incidence_of_redundancy',
'sub_type': 'general',
'title': 'Incidence Of Redundancy',
'type': 'numeric',
'unit_of_measure': 'Per 1,000 Workers'}],
'CSV'),
('https://storage.data.gov.sg/incidence-of-redundancy-by-industry-and-occupational-group-annual/resources/incidence-of-redundancy-by-industry-level3-2017-03-15T08-56-19Z.csv',
'26421dd1-be08-44e1-a68e-88faeff40adb',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry1',
'type': 'text'},
{'name': 'industry2',
'sub_type': 'general',
'title': 'Industry2',
'type': 'text'},
{'name': 'industry3',
'sub_type': 'general',
'title': 'Industry3',
'type': 'text'},
{'description': '"-" : Data is negligible or not significant',
'name': 'incidence_of_redundancy',
'sub_type': 'general',
'title': 'Incidence Of Redundancy',
'type': 'numeric',
'unit_of_measure': 'Per 1,000 Workers'}],
'CSV'),
('https://storage.data.gov.sg/incidence-of-redundancy-by-industry-and-occupational-group-annual/resources/incidence-of-redundancy-by-broad-occupational-group-2017-03-15T10-20-31Z.csv',
'41c2ce53-a4f7-4692-8621-224130aca8d6',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'occupation1',
'sub_type': 'general',
'title': 'Occupation1',
'type': 'text'},
{'name': 'incidence_of_redundancy',
'sub_type': 'general',
'title': 'Incidence Of Redundancy',
'type': 'numeric',
'unit_of_measure': 'Per 1,000 Workers'}],
'CSV'),
('https://storage.data.gov.sg/income-of-companies-by-income-type-annual/resources/chargeable-income-of-companies-2016-10-04T09-01-01Z.csv',
'3b64eaf4-78d7-4312-8167-1a423b83d0db',
[{'format': 'YYYY',
'name': 'year_of_assessment',
'sub_type': 'year',
'title': 'Year of Assessment',
'type': 'datetime'},
{'name': 'no_of_companies_assessed',
'sub_type': 'general',
'title': 'No. of Companies Assessed',
'type': 'numeric',
'unit_of_measure': 'Count'},
{'name': 'total_income',
'sub_type': 'general',
'title': 'Total Income',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'},
{'name': 'donations',
'sub_type': 'general',
'title': 'Approved Donations',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'},
{'name': 'chargeable_income',
'sub_type': 'general',
'title': 'Chargeable Income',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'},
{'name': 'group_relief',
'sub_type': 'general',
'title': 'Group Relief',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'},
{'name': 'loss_carryback_relief',
'sub_type': 'general',
'title': 'Loss Carry-back Relief',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'},
{'name': 'ci_aft_reliefs',
'sub_type': 'general',
'title': 'Chargeable Income After Reliefs',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'},
{'name': 'tax_exemption',
'sub_type': 'general',
'title': 'Full/ Partial Tax Exemption',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'},
{'name': 'ci_aft_exemption',
'sub_type': 'general',
'title': 'Chargeable Income After Exemption',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'},
{'name': 'gross_tax_payable',
'sub_type': 'general',
'title': 'Gross Tax Payable',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'},
{'name': 'tax_deducted_at_source',
'sub_type': 'general',
'title': 'Tax Deducted at Source',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'},
{'name': 'other_tax_set_offs',
'sub_type': 'general',
'title': 'Other Tax Set-offs',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'},
{'name': 'net_tax_assessed',
'sub_type': 'general',
'title': 'Net Tax Assessed',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'}],
'CSV'),
('https://storage.data.gov.sg/income-of-companies-by-income-type-annual/resources/chargeable-income-of-companies-by-tax-group-2016-10-04T09-02-16Z.csv',
'ec8ed20b-707f-41a6-80d0-1f2be8025261',
[{'format': 'YYYY',
'name': 'year_of_assessment',
'sub_type': 'year',
'title': 'Year of Assessment',
'type': 'datetime'},
{'name': 'tax_group',
'sub_type': 'general',
'title': 'Tax Group',
'type': 'text'},
{'name': 'no_of_companies_assessed',
'sub_type': 'general',
'title': 'No. of Companies Assessed',
'type': 'numeric',
'unit_of_measure': 'Count'},
{'name': 'total_income',
'sub_type': 'general',
'title': 'Total Income',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'},
{'name': 'donations',
'sub_type': 'general',
'title': 'Approved Donations',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'},
{'description': '"na" : Data not available or not applicable',
'name': 'assessable_income',
'sub_type': 'general',
'title': 'Assessable Income',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'},
{'description': '"na" : Data not available or not applicable',
'name': 'chargeable_income',
'sub_type': 'general',
'title': 'Chargeable Income',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'},
{'description': '"na" : Data not available or not applicable',
'name': 'group_relief',
'sub_type': 'general',
'title': 'Group Relief',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'},
{'description': '"na" : Data not available or not applicable',
'name': 'loss_carryback_relief',
'sub_type': 'general',
'title': 'Loss Carry-back Relief',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'},
{'description': '"na" : Data not available or not applicable',
'name': 'ci_aft_reliefs',
'sub_type': 'general',
'title': 'Chargeable Income After Reliefs',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'},
{'description': '"na" : Data not available or not applicable',
'name': 'tax_exemption',
'sub_type': 'general',
'title': 'Full/ Partial Tax Exemption',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'},
{'description': '"na" : Data not available or not applicable',
'name': 'ci_aft_exemption',
'sub_type': 'general',
'title': 'Chargeable Income After Full/ Partial Tax Exemption',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'},
{'description': '"na" : Data not available or not applicable',
'name': 'gross_tax_payable',
'sub_type': 'general',
'title': 'Gross Tax Payable',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'},
{'description': '"na" : Data not available or not applicable',
'name': 'tax_deducted_at_source',
'sub_type': 'general',
'title': 'Tax Deducted at Source',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'},
{'description': '"na" : Data not available or not applicable',
'name': 'other_tax_set_offs',
'sub_type': 'general',
'title': 'Other Tax Set-offs',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'},
{'description': '"na" : Data not available or not applicable',
'name': 'net_tax_assessed',
'sub_type': 'general',
'title': 'Net Tax Assessed',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'}],
'CSV'),
('https://storage.data.gov.sg/income-of-companies-by-income-type-annual/resources/income-of-companies-by-income-type-2016-10-04T09-04-17Z.csv',
'83b36d2e-6d2a-47d0-8042-415db84442e9',
[{'format': 'YYYY',
'name': 'year_of_assessment',
'sub_type': 'year',
'title': 'Year of Assessment',
'type': 'datetime'},
{'name': 'income_type',
'sub_type': 'general',
'title': 'Income Type',
'type': 'text'},
{'name': 'amount',
'sub_type': 'general',
'title': 'Amount',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'}],
'CSV'),
('https://storage.data.gov.sg/income-of-companies-by-income-type-annual/resources/income-of-companies-by-tax-group-and-income-type-2016-10-04T09-05-39Z.csv',
'be33c464-7566-402d-87e2-07ccf07c251d',
[{'format': 'YYYY',
'name': 'year_of_assessment',
'sub_type': 'year',
'title': 'Year of Assessment',
'type': 'datetime'},
{'name': 'tax_group',
'sub_type': 'general',
'title': 'Tax Group',
'type': 'text'},
{'name': 'income_type',
'sub_type': 'general',
'title': 'Income Type',
'type': 'text'},
{'name': 'amount',
'sub_type': 'general',
'title': 'Amount',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'}],
'CSV'),
('https://storage.data.gov.sg/income-of-individuals-by-income-type-annual/resources/assessable-income-of-individuals-2016-10-04T09-46-42Z.csv',
'2403315c-93b9-4f65-b97b-8132077037eb',
[{'format': 'YYYY',
'name': 'year_of_assessment',
'sub_type': 'year',
'title': 'Year of Assessment',
'type': 'datetime'},
{'name': 'no_of_indv_assessed',
'sub_type': 'general',
'title': 'No. of Individuals Assessed',
'type': 'numeric',
'unit_of_measure': 'Count'},
{'name': 'total_income',
'sub_type': 'general',
'title': 'Total Income',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'},
{'name': 'donations',
'sub_type': 'general',
'title': 'Approved Donations',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'},
{'name': 'assessable_income',
'sub_type': 'general',
'title': 'Assessable Income',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'}],
'CSV'),
('https://storage.data.gov.sg/income-of-individuals-by-income-type-annual/resources/assessable-income-of-individuals-by-tax-group-2016-10-04T09-47-33Z.csv',
'ffd82a92-ef07-42c1-8073-337f4512ebcc',
[{'format': 'YYYY',
'name': 'year_of_assessment',
'sub_type': 'year',
'title': 'Year of Assessment',
'type': 'datetime'},
{'name': 'tax_group',
'sub_type': 'general',
'title': 'Tax Group',
'type': 'text'},
{'name': 'no_of_indv_assessed',
'sub_type': 'general',
'title': 'No. of Individuals Assessed',
'type': 'numeric',
'unit_of_measure': 'Count'},
{'name': 'total_income',
'sub_type': 'general',
'title': 'Total Income',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'},
{'name': 'donations',
'sub_type': 'general',
'title': 'Approved Donations',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'},
{'name': 'assessable_income',
'sub_type': 'general',
'title': 'Assessable Income',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'}],
'CSV'),
('https://storage.data.gov.sg/income-of-individuals-by-income-type-annual/resources/income-of-individuals-by-income-type-2016-10-04T09-49-07Z.csv',
'a1ce0bec-7745-4c4f-9fb4-3f4d0600fcbb',
[{'format': 'YYYY',
'name': 'year_of_assessment',
'sub_type': 'year',
'title': 'Year of Assessment',
'type': 'datetime'},
{'name': 'income_type',
'sub_type': 'general',
'title': 'Income Type',
'type': 'text'},
{'name': 'amount',
'sub_type': 'general',
'title': 'Amount',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'}],
'CSV'),
('https://storage.data.gov.sg/income-of-individuals-by-income-type-annual/resources/income-of-individuals-by-income-type-and-tax-group-2016-10-04T09-50-21Z.csv',
'4897cb52-f55c-43b6-a8f7-7214f4538e28',
[{'format': 'YYYY',
'name': 'year_of_assessment',
'sub_type': 'year',
'title': 'Year of Assessment',
'type': 'datetime'},
{'name': 'tax_group',
'sub_type': 'general',
'title': 'Tax Group',
'type': 'text'},
{'name': 'income_type',
'sub_type': 'general',
'title': 'Income Type',
'type': 'text'},
{'name': 'amount',
'sub_type': 'general',
'title': 'Amount',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'}],
'CSV'),
('https://storage.data.gov.sg/index-of-industrial-production-2015-100-monthly-by-clusters/resources/index-of-industrial-production-2015-100-monthly-2017-05-26T16-38-20Z.csv',
'c109f9ca-0335-4aa9-bb00-c48d11b3e162',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Period',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Manufacturing',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'value',
'sub_type': 'general',
'title': 'Index Of Industrial Production ',
'type': 'numeric',
'unit_of_measure': '2015 = 100'}],
'CSV'),
('https://storage.data.gov.sg/index-of-industrial-production-2015-100-monthly-by-clusters/resources/index-of-industrial-production-2015-100-monthly-by-manufacturing-clusters-2017-05-26T16-38-30Z.csv',
'1b9eb071-e7c2-4e96-a67c-170e827ae6e5',
[{'description': 'Period',
'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Period',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Manufacturing',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Manufacturing Clusters',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'value',
'sub_type': 'general',
'title': 'Index Of Industrial Production',
'type': 'numeric',
'unit_of_measure': '2015=100'}],
'CSV'),
('https://storage.data.gov.sg/index-of-industrial-production-2015-100-monthly-by-clusters/resources/index-of-industrial-production-2015-100-monthly-by-manufacturing-sub-clusters-2017-05-26T16-38-48Z.csv',
'5a55603a-fe01-4b69-b37d-6a961e51ff06',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Year - Month',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Manufacturing',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Manufacturing Clusters',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Manufacturing sub-clusters',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'value',
'sub_type': 'general',
'title': 'Index Of Industrial Production',
'type': 'numeric',
'unit_of_measure': '2015 = 100'}],
'CSV'),
('https://storage.data.gov.sg/index-of-industrial-production-2015-100-monthly-by-industries/resources/index-of-industrial-production-2015-100-monthly-by-total-manufacturing-2017-05-26T16-38-55Z.csv',
'ae5afedf-a921-4e73-b3f1-fa610e8b295a',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Period',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Manufacturing',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Index of Industrial Production',
'type': 'numeric',
'unit_of_measure': '2015=100'}],
'CSV'),
('https://storage.data.gov.sg/index-of-industrial-production-2015-100-monthly-by-industries/resources/index-of-industrial-production-2015-100-monthly-by-manufacturing-industries-2017-05-26T16-39-11Z.csv',
'6955c5e2-0863-43aa-b1e2-4f2702b4a2f0',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Period',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Manufacturing',
'type': 'text'},
{'description': 'SSIC=2015',
'name': 'level_2',
'sub_type': 'general',
'title': 'Manufacturing industries',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'value',
'sub_type': 'general',
'title': 'Index of Industrial Production',
'type': 'numeric',
'unit_of_measure': '2015=100'}],
'CSV'),
('https://storage.data.gov.sg/indicators-for-occupancy-rate-of-state-properties/resources/occupancy-rate-of-state-properties-2017-01-04T06-55-56Z.csv',
'a9ec1e41-c4de-4610-b0c7-850cd372e605',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'occupancy_rate',
'sub_type': 'general',
'title': 'Occupancy Rate',
'type': 'numeric',
'unit_of_measure': 'Percentage'}],
'CSV'),
('https://storage.data.gov.sg/individual-computer-access/resources/individual-computer-access-2016-05-04T04-37-41Z.csv',
'ea83e99b-12f6-4960-901c-ff9f3ef1c7a2',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'individual_computer_access',
'sub_type': 'percentage',
'title': 'Individual Computer Access',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/individual-computer-usage/resources/individual-computer-usage-by-age-2016-07-22T01-35-36Z.csv',
'8467b402-0bad-4602-8f94-644ff0c4f4ba',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'age', 'sub_type': 'general', 'title': 'Age', 'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'computer_usage',
'sub_type': 'percentage',
'title': 'Computer Usage',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/individual-computer-usage/resources/individual-computer-usage-by-location-2016-07-22T01-42-58Z.csv',
'7f442507-5d8e-4c86-aa55-55ad699c59dd',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'location',
'sub_type': 'general',
'title': 'Location',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'computer_usage',
'sub_type': 'percentage',
'title': 'Computer usage',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/individual-internet-access/resources/individual-internet-access-2016-05-04T06-39-42Z.csv',
'b50a0c64-b2d1-42df-96c2-a5dd9ee794a6',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'internet_access',
'sub_type': 'percentage',
'title': 'Internet Access',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/individual-internet-usage/resources/individual-internet-usage-2016-08-29T06-13-24Z.csv',
'32222f4f-f450-4404-83c9-1f162437d2f1',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'internet_usage',
'sub_type': 'percentage',
'title': 'Internet Usage',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/individual-internet-usage/resources/individual-internet-usage-by-age-2016-06-07T07-25-03Z.csv',
'e81b1683-7d5f-4f35-a4d9-4240ae5002bb',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'age', 'sub_type': 'general', 'title': 'Age', 'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'internet_usage',
'sub_type': 'percentage',
'title': 'Internet Usage',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/individual-internet-usage/resources/individual-internet-usage-by-frequency-2016-06-13T07-40-22Z.csv',
'6fe44f9b-a6e0-4177-9eab-5403e33f7362',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'frequency',
'sub_type': 'general',
'title': 'Frequency',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'internet_usage',
'sub_type': 'percentage',
'title': 'Internet Usage',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/individual-internet-usage/resources/individual-internet-usage-by-location-2016-06-13T07-40-31Z.csv',
'1dd0f7fa-9d68-4115-b02c-2604055f0ae3',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'location',
'sub_type': 'general',
'title': 'Location',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'internet_usage',
'sub_type': 'percentage',
'title': 'Internet Usage',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/industrial-arbitration-court-awards-by-nature-of-trade-disputes/resources/total-industrial-arbitration-court-awards-2016-06-23T07-58-17Z.csv',
'c24d0d00-2d12-4f68-8fc9-4121433332e0',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'no._awarded',
'sub_type': 'general',
'title': 'No. of Awards',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/industrial-arbitration-court-awards-by-nature-of-trade-disputes/resources/industrial-arbitration-court-awards-by-nature-of-trade-disputes-2016-06-23T07-53-14Z.csv',
'444a0199-5d32-4760-b32c-18ca9f6eec41',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'nature_of_trade_disputes',
'sub_type': 'general',
'title': 'Nature Of Trade Disputes',
'type': 'text'},
{'name': 'no._awarded',
'sub_type': 'general',
'title': 'No. Awarded',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/industrial-arbitration-court-awards-by-type-of-organisations/resources/total-industrial-arbitration-court-awards-2016-06-23T08-13-53Z.csv',
'f8c1e79f-9570-4ccd-b319-b68983783cb0',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'no._awarded',
'sub_type': 'general',
'title': 'No. of awards',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/industrial-arbitration-court-awards-by-type-of-organisations/resources/industrial-arbitration-court-awards-by-type-of-organisation-2016-06-23T08-08-25Z.csv',
'b990bb0f-e667-4f4f-ac4c-46d2deb44c70',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'type_of_organisation',
'sub_type': 'general',
'title': 'Type Of Organisation',
'type': 'text'},
{'name': 'no._awarded',
'sub_type': 'general',
'title': 'No. Awarded',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/industrial-arbitration-court-awards-by-type-of-workers-covered/resources/total-industrial-arbitration-court-awards-by-type-of-worker-2016-06-23T08-57-04Z.csv',
'96cd3d96-9db8-49a7-9ad7-20bd16312061',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'no._awarded',
'sub_type': 'general',
'title': 'No. of awards',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/industrial-arbitration-court-awards-by-type-of-workers-covered/resources/industrial-arbitration-court-awards-by-type-of-workers-2016-06-23T08-49-37Z.csv',
'd24fb8ea-836e-4a46-b4af-4e1da32eb617',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'types_of_workers_covered',
'sub_type': 'general',
'title': 'Types Of Workers Covered',
'type': 'text'},
{'description': '"na" : not tracked or not applicable',
'name': 'no._awarded',
'sub_type': 'general',
'title': 'No. Awarded',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/industrial-stoppages/resources/industrial-stoppages-2016-07-04T11-17-45Z.csv',
'6226f402-df7e-4697-b205-8e37fc9e3969',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'no_of_stoppages',
'sub_type': 'general',
'title': 'No Of Stoppages',
'type': 'numeric',
'unit_of_measure': 'Absolute number'}],
'CSV'),
('https://storage.data.gov.sg/infant-deaths-by-ethnic-group/resources/infant-deaths-by-ethnic-group-from-1971-2015-2016-07-13T03-45-24Z.csv',
'47de52df-3754-49fb-8c79-eceec5d39f7d',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'ethnic_group',
'sub_type': 'general',
'title': 'Ethnic Group',
'type': 'text'},
{'description': 'Refers to death of persons under one year of age',
'name': 'infant_deaths',
'sub_type': 'general',
'title': 'Infant Deaths',
'type': 'numeric',
'unit_of_measure': 'No. of Infant Deaths'},
{'description': 'From 1980 onwards the rate is based on resident live births only',
'name': 'infant_mortality_rate',
'sub_type': 'general',
'title': 'Infant Mortality Rate',
'type': 'numeric',
'unit_of_measure': 'Infant Mortality rate per thousand live-births'}],
'CSV'),
('https://storage.data.gov.sg/infocomm-industry-revenue/resources/infocomm-industry-revenue-2016-08-29T06-43-18Z.csv',
'0e763f43-8cd9-46ef-ae93-673f27446e89',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'infocomm_industry_revenue',
'sub_type': 'general',
'title': 'Infocomm Industry Revenue',
'type': 'numeric',
'unit_of_measure': 'S$ Billion'}],
'CSV'),
('https://storage.data.gov.sg/infocomm-manpower/resources/infocomm-manpower-by-age-2016-08-29T06-21-44Z.csv',
'd47f295f-16da-40b7-a9c6-220e785b202d',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'age', 'sub_type': 'general', 'title': 'Age', 'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'number',
'sub_type': 'percentage',
'title': 'Number',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/infocomm-manpower/resources/infocomm-manpower-by-gender-2016-08-29T06-24-54Z.csv',
'ee96eb56-d310-4eaf-8094-d89469d37b92',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'number',
'sub_type': 'percentage',
'title': 'Number',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/infocomm-manpower/resources/infocomm-manpower-by-residential-status-2016-08-29T06-25-31Z.csv',
'2d5bbb3b-2207-4778-8802-1443a5f32f1f',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'residential_status',
'sub_type': 'general',
'title': 'Residential Status',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'number',
'sub_type': 'percentage',
'title': 'Number',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/infocomm-manpower/resources/infocomm-manpower-by-highest-qualification-attained-2016-08-29T06-25-57Z.csv',
'4e217bd7-6d02-40a6-a8e7-11c1db02087f',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'qualification',
'sub_type': 'general',
'title': 'Qualification',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'number',
'sub_type': 'percentage',
'title': 'Number',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/infocomm-manpower/resources/infocomm-manpower-by-discipline-of-study-2016-07-11T09-17-07Z.csv',
'3380465e-6609-4955-af05-ca4ad3abeba9',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'disciplines_of_study',
'sub_type': 'general',
'title': 'Disciplines of Study',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'number',
'sub_type': 'percentage',
'title': 'Number',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/infocomm-manpower-vacancies/resources/infocomm-manpower-vacancies-2016-07-11T09-17-59Z.csv',
'60134974-a9bd-4016-bc80-a1dd615b52c6',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'number_of_vacancies',
'sub_type': 'general',
'title': 'Number Of Vacancies',
'type': 'numeric',
'unit_of_measure': 'Vacancies'}],
'CSV'),
('https://storage.data.gov.sg/information-on-bloodbanks/resources/information-on-bloodbanks-2016-08-16T03-11-31Z.csv',
'c2f8f2c0-d7ad-4c9e-8d8b-250c342a1d6c',
[{'description': 'location of blood bank',
'name': 'location',
'sub_type': 'general',
'title': 'Location',
'type': 'text'},
{'description': 'Type of blood donation (whole blood or apheresis)',
'name': 'donation_type',
'sub_type': 'general',
'title': 'Donation type',
'type': 'text'},
{'name': 'address',
'sub_type': 'address',
'title': 'Address',
'type': 'text'},
{'name': 'postal_code',
'sub_type': 'postal_code',
'title': 'Postal code',
'type': 'text'},
{'description': 'Operating hours for Mondays',
'name': 'monday_operating_hour',
'sub_type': 'general',
'title': 'Monday operating hours',
'type': 'text'},
{'name': 'tuesday_operating_hour',
'sub_type': 'general',
'title': 'Tuesday operating hour',
'type': 'text'},
{'description': 'Operating hours for Wednesdays',
'name': 'wednesday_operating_hour',
'sub_type': 'general',
'title': 'Wednesday operating hours',
'type': 'text'},
{'description': 'Operating hours for Thursdays',
'name': 'thursday_operating_hour',
'sub_type': 'general',
'title': 'Thursday operating hours',
'type': 'text'},
{'description': 'Operating hours for Fridays',
'name': 'friday_operating_hour',
'sub_type': 'general',
'title': 'Friday operating hours',
'type': 'text'},
{'description': 'Operating hours for Saturdays',
'name': 'saturday_operating_hour',
'sub_type': 'general',
'title': 'Saturday operating hours',
'type': 'text'},
{'description': 'Operating hours for Sundays',
'name': 'sunday_operating_hour',
'sub_type': 'general',
'title': 'Sunday operating hours',
'type': 'text'},
{'name': 'eve_of_major_public_holiday_operating_hour',
'sub_type': 'general',
'title': 'Eve of major public holiday operating hour',
'type': 'text'},
{'name': 'public_holiday_operating_hour',
'sub_type': 'general',
'title': 'Public holiday operating hour',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/information-on-quantity-of-controlled-drugs-seized/resources/information-on-quantity-of-controlled-drugs-seized-2016-07-01T09-29-59Z.csv',
'2f7a2069-1655-42d6-a028-2077536fecb6',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'drug', 'sub_type': 'general', 'title': 'Drug', 'type': 'text'},
{'name': 'unit_of_measure',
'sub_type': 'general',
'title': 'Unit Of Measure',
'type': 'text'},
{'name': 'amount',
'sub_type': 'general',
'title': 'Amount',
'type': 'numeric',
'unit_of_measure': 'Various'}],
'CSV'),
('https://storage.data.gov.sg/inmates-admitted-to-undergo-treatment-and-rehabilitation-in-drug-rehabilitation-centre-drc/resources/inmates-admitted-to-drug-rehabilitation-centre-drc-2017-02-27T08-01-20Z.csv',
'891cc103-a40d-4b9a-9b7d-eeeb5a83b352',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'number_of_admissions',
'sub_type': 'general',
'title': 'Number Of Admissions',
'type': 'numeric',
'unit_of_measure': 'Number of Inmates'}],
'CSV'),
('https://storage.data.gov.sg/inmates-admitted-to-undergo-treatment-and-rehabilitation-in-drug-rehabilitation-centre-drc/resources/inmates-admitted-to-drug-rehabilitation-centre-drc-by-age-group-2017-02-27T08-02-43Z.csv',
'9fdb8503-f592-4109-8f8c-180d50f97af5',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'admissions_by_age_group',
'sub_type': 'general',
'title': 'Admissions By Age Group',
'type': 'text'},
{'name': 'number_of_admission',
'sub_type': 'general',
'title': 'Number Of Admission',
'type': 'numeric',
'unit_of_measure': 'Number of Inmates'}],
'CSV'),
('https://storage.data.gov.sg/inmates-admitted-to-undergo-treatment-and-rehabilitation-in-drug-rehabilitation-centre-drc/resources/inmates-admitted-to-drug-rehabilitation-centre-drc-by-education-level-2017-02-27T08-04-18Z.csv',
'a639cca4-6f00-47b5-adbc-ddd06aee05d1',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'admissions_by_education_level',
'sub_type': 'general',
'title': 'Admissions By Education Level',
'type': 'text'},
{'name': 'number_of_admissions',
'sub_type': 'general',
'title': 'Number Of Admissions',
'type': 'numeric',
'unit_of_measure': 'Number of Inmates'}],
'CSV'),
('https://storage.data.gov.sg/inmates-admitted-to-undergo-treatment-and-rehabilitation-in-drug-rehabilitation-centre-drc/resources/inmates-admitted-to-drug-rehabilitation-centre-drc-by-gender-2017-02-27T08-05-42Z.csv',
'25472c4c-473f-4629-8841-db2da8b00e18',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'admissions_by_gender',
'sub_type': 'general',
'title': 'Admissions By Gender',
'type': 'text'},
{'name': 'number_of_admissions',
'sub_type': 'general',
'title': 'Number Of Admissions',
'type': 'numeric',
'unit_of_measure': 'Number of Inmates'}],
'CSV'),
('https://storage.data.gov.sg/inmates-in-work-programmes/resources/number-of-inmates-in-work-programmes-2016-09-22T09-08-11Z.csv',
'eaeb73c5-98d3-4fcc-84cb-610519cbb56e',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'no_of_inmates_score_wkprg',
'sub_type': 'general',
'title': 'No. of Inmates',
'type': 'numeric',
'unit_of_measure': 'No. of Inmates'}],
'CSV'),
('https://storage.data.gov.sg/inmates-released-from-drc/resources/inmates-released-from-drug-rehabilitation-centre-drc-2017-02-27T07-57-08Z.csv',
'6e1997cf-bfc3-4455-b496-699371fa2f81',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'number_of_releases',
'sub_type': 'general',
'title': 'Number Of Releases',
'type': 'numeric',
'unit_of_measure': 'Number of Inmates'}],
'CSV'),
('https://storage.data.gov.sg/inmates-released-from-drc/resources/inmates-released-from-drug-rehabilitation-centre-drc-by-gender-2017-02-27T07-58-26Z.csv',
'281d38df-95bc-4f9d-aa85-f991cbb49c5e',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'releases_by_gender',
'sub_type': 'general',
'title': 'Releases By Gender',
'type': 'text'},
{'name': 'number_of_releases',
'sub_type': 'general',
'title': 'Number Of Releases',
'type': 'numeric',
'unit_of_measure': 'Number of Inmates'}],
'CSV'),
('https://storage.data.gov.sg/inmate-to-prison-staff-ratio/resources/inmate-to-prison-staff-ratio-2017-02-27T07-45-15Z.csv',
'ec57a6bd-29bd-4b5b-a420-1a37d90449fb',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'inmate_to_staff_ratio',
'sub_type': 'general',
'title': 'Inmate To Staff Ratio',
'type': 'numeric',
'unit_of_measure': 'Number of Inmate to Number of Staff'}],
'CSV'),
('https://storage.data.gov.sg/inmate-to-prison-staff-ratio/resources/number-of-staff-employed-in-adult-prisons-penal-institutions-or-correctional-institutions-2017-02-27T07-47-38Z.csv',
'a9df60a4-b0df-4fc8-b8bb-e79242092e81',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'number_of_prison_staff',
'sub_type': 'general',
'title': 'Number Of Prison Staff',
'type': 'numeric',
'unit_of_measure': 'No. of Prison Staff'}],
'CSV'),
('https://storage.data.gov.sg/intake-of-students-trainees-under-the-full-time-institutional-training-and-traineeship-programmes/resources/intake-count-of-full-time-and-traineeship-programmes-at-ite-2017-01-11T02-58-28Z.csv',
'dbfaf6e5-8dba-4c48-864b-0b90196e6b4b',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'name': 'nmc_course_level',
'sub_type': 'general',
'title': 'National Manpower Council Course level',
'type': 'text'},
{'name': 'intake_count',
'sub_type': 'general',
'title': 'Intake',
'type': 'numeric',
'unit_of_measure': 'Number of Students'}],
'CSV'),
('https://storage.data.gov.sg/integrated-land-information-service-inlis-transaction-volume/resources/integrated-land-information-service-inlis-transaction-volume-2016-12-23T06-55-13Z.csv',
'f7b474c1-ae8c-408e-8286-5c32d776a251',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'number_of_inlis_transactions',
'sub_type': 'general',
'title': 'Number Of INLIS Transactions',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/international-visitor-arrivals-by-country-region-of-residence-monthly-sa/resources/total-visitor-international-arrivals-monthly-sa-2017-05-26T16-40-04Z.csv',
'91f5bb19-affc-4f9d-824c-0e940d511ce9',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total International Visitor Arrivals',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'No. Of Visitor Arrivals'}],
'CSV'),
('https://storage.data.gov.sg/international-visitor-arrivals-by-country-region-of-residence-monthly-sa/resources/visitor-international-arrivals-to-singapore-by-region-monthly-sa-2017-05-26T16-40-17Z.csv',
'9fa36fac-90d1-4ed6-aa3c-17988616d4f8',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'month',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Region',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'No. Of Visitor Arrivals'}],
'CSV'),
('https://storage.data.gov.sg/international-visitor-arrivals-by-country-region-of-residence-monthly-sa/resources/visitor-international-arrivals-to-singapore-by-country-monthly-sa-2017-05-26T16-40-38Z.csv',
'83af5b7e-2fb6-4b4e-bbd8-e502d93e03a2',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'month',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Region',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Country',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'No. Of Visitor Arrivals'}],
'CSV'),
('https://storage.data.gov.sg/internet-access-by-housing-type/resources/internet-access-by-housing-type-2016-06-13T09-38-06Z.csv',
'3ab4efc7-42cf-4713-b615-309caf135b94',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'type', 'sub_type': 'general', 'title': 'Type', 'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'home_internet_access',
'sub_type': 'percentage',
'title': 'Home Internet Access',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/internet-connection-at-home-by-type/resources/internet-connection-at-home-by-type-2016-07-22T01-47-01Z.csv',
'21720749-0616-4240-8d2c-d2b0972af001',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'type_of_internet_connection',
'sub_type': 'general',
'title': 'Type of Internet Connection',
'type': 'text'},
{'description': ['Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'"na" : Data not available or not applicable'],
'name': 'internet_access',
'sub_type': 'percentage',
'title': 'Internet Access',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/internet-usage-amongst-enterprises-by-employment-size/resources/internet-usage-amongst-enterprises-by-employment-size-2016-06-13T09-52-53Z.csv',
'e9eccaf3-aa66-4e6b-8d08-44a31fa204b4',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'employment_size',
'sub_type': 'general',
'title': 'Employment Size',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'internet_usage',
'sub_type': 'percentage',
'title': 'Internet Usage',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/iras-collection-by-tax-type-annual/resources/iras-collection-by-tax-type-2016-10-03T00-51-29Z.csv',
'78c7c9db-c42f-4f93-b711-e8041aaa7933',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'name': 'tax_type',
'sub_type': 'general',
'title': 'Tax Type',
'type': 'text'},
{'name': 'tax_collected',
'sub_type': 'general',
'title': 'Tax Collected',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'}],
'CSV'),
('https://storage.data.gov.sg/iras-service-levels-annual/resources/service-levels-2016-10-03T00-55-52Z.csv',
'0f53af47-bd5e-4a8c-a529-d6e5fa7ddef3',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'name': 'service_levels',
'sub_type': 'general',
'title': 'Service Standards',
'type': 'text'},
{'description': ['Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'"na" : Data not available or not applicable'],
'name': 'target',
'sub_type': 'percentage',
'title': 'Target',
'type': 'numeric'},
{'description': ['Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'"na" : Data not available or not applicable'],
'name': 'achieved',
'sub_type': 'percentage',
'title': 'Achieved',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/islandwide-cases-recorded-for-selected-major-offences/resources/islandwide-cases-recorded-for-selected-major-selected-offences-2016-09-20T06-37-19Z.csv',
'84a2d5ed-18ca-4e91-b751-e965148e79af',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'offence',
'sub_type': 'general',
'title': 'Offence',
'type': 'text'},
{'name': 'no_of_cases',
'sub_type': 'general',
'title': 'No. Of Cases',
'type': 'numeric',
'unit_of_measure': 'No. Of Cases'}],
'CSV'),
('https://storage.data.gov.sg/islandwide-persons-arrested-for-selected-major-offences/resources/islandwide-persons-arrested-for-selected-major-selected-offences-2016-09-20T06-25-12Z.csv',
'53d967e2-c5aa-42ac-829e-f69a4c2b0bed',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'offence',
'sub_type': 'general',
'title': 'Offence',
'type': 'text'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'name': 'no_of_persons_arrested',
'sub_type': 'general',
'title': 'No. Of Persons Arrested',
'type': 'numeric',
'unit_of_measure': 'No. Of Persons Arrested'}],
'CSV'),
('https://storage.data.gov.sg/islandwide-persons-arrested-for-selected-major-offences/resources/islandwide-persons-arrested-for-selected-major-selected-offences-by-age-group-2016-09-20T06-25-38Z.csv',
'78462958-9c0b-4d82-8106-85a1c6a2be43',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'offence',
'sub_type': 'general',
'title': 'Offence',
'type': 'text'},
{'name': 'age_group',
'sub_type': 'general',
'title': 'Age Group',
'type': 'text'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'no_of_persons_arrested',
'sub_type': 'general',
'title': 'No. Of Persons Arrested',
'type': 'numeric',
'unit_of_measure': 'No. Of Persons Arrested'}],
'CSV'),
('https://storage.data.gov.sg/issuance-of-title-documents-for-completed-private-properties/resources/issuance-of-title-documents-for-completed-private-properties-2016-12-23T06-53-56Z.csv',
'1b32dc83-00c4-4924-b852-21309bc04117',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'number_of_titles_issued',
'sub_type': 'general',
'title': 'Number Of Titles Issued',
'type': 'numeric',
'unit_of_measure': 'No. of titles issued'}],
'CSV'),
('https://storage.data.gov.sg/ite-course-catalog/resources/ite-course-catalog-2017-01-11T03-03-15Z.csv',
'248656ef-f157-479a-aaef-a4ebd3bd6205',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'course_type',
'sub_type': 'general',
'title': 'Course type',
'type': 'text'},
{'name': 'course_name',
'sub_type': 'general',
'title': 'Course name',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/ite-students-trainees-who-completed-the-programmes/resources/number-of-graduates-from-full-time-and-traineeship-programmes-at-ite-2017-01-11T03-04-29Z.csv',
'4e35400a-5a45-4483-9363-df01fa59584a',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'name': 'nmc_course_level',
'sub_type': 'general',
'title': 'National Manpower Council Course level',
'type': 'text'},
{'name': 'graduate_count',
'sub_type': 'general',
'title': 'Number of Graduates',
'type': 'numeric',
'unit_of_measure': 'Number of Graduates'}],
'CSV'),
('https://storage.data.gov.sg/job-vacancies-annual/resources/job-vacancies-annual-2016-02-11T10-29-18Z.csv',
'885cd5fd-e163-45e4-a93f-44dedee4306a',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'job_vacancy',
'sub_type': 'general',
'title': 'Job Vacancy',
'type': 'numeric',
'unit_of_measure': 'No. of Vacancies'}],
'CSV'),
('https://storage.data.gov.sg/job-vacancy-by-industry-and-occupational-group-annual/resources/job-vacancy-topline-2017-03-15T09-32-13Z.csv',
'5d429272-3383-442e-b20b-5306daf55229',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'job_vacancy',
'sub_type': 'general',
'title': 'Job Vacancy',
'type': 'numeric',
'unit_of_measure': 'No.of Vacancies'}],
'CSV'),
('https://storage.data.gov.sg/job-vacancy-by-industry-and-occupational-group-annual/resources/job-vacancy-by-industry-level1-2017-03-16T01-03-14Z.csv',
'411996b4-be8c-4fdd-a6ab-ca90abbe116d',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry1',
'type': 'text'},
{'description': '"-" : Data is negligible or not significant',
'name': 'job_vacancy',
'sub_type': 'general',
'title': 'Job Vacancy',
'type': 'numeric',
'unit_of_measure': 'No.of Vacancies'}],
'CSV'),
('https://storage.data.gov.sg/job-vacancy-by-industry-and-occupational-group-annual/resources/job-vacancy-by-industry-level-2-2017-03-16T01-04-50Z.csv',
'c9aa2db3-99f8-45cf-a0f3-7a86fced62df',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry1',
'type': 'text'},
{'name': 'industry2',
'sub_type': 'general',
'title': 'Industry2',
'type': 'text'},
{'description': '"-" : Data is negligible or not significant',
'name': 'job_vacancy',
'sub_type': 'general',
'title': 'Job Vacancy',
'type': 'numeric',
'unit_of_measure': 'No.of Vacancies'}],
'CSV'),
('https://storage.data.gov.sg/job-vacancy-by-industry-and-occupational-group-annual/resources/job-vacancy-by-industry-level3-2017-03-16T01-06-22Z.csv',
'd87b0111-b770-481e-b34a-4aeb11210a5f',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry1',
'type': 'text'},
{'name': 'industry2',
'sub_type': 'general',
'title': 'Industry2',
'type': 'text'},
{'name': 'industry3',
'sub_type': 'general',
'title': 'Industry3',
'type': 'text'},
{'description': '"-" : Data is negligible or not significant',
'name': 'job_vacancy',
'sub_type': 'general',
'title': 'Job Vacancy',
'type': 'numeric',
'unit_of_measure': 'No.of Vacancies'}],
'CSV'),
('https://storage.data.gov.sg/job-vacancy-by-industry-and-occupational-group-annual/resources/job-vacancy-by-broad-occupational-group-2017-03-16T01-08-23Z.csv',
'6d864b4e-63ae-4dac-8674-8b6685b6256b',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'occupation1',
'sub_type': 'general',
'title': 'Occupation1',
'type': 'text'},
{'name': 'job_vacancy',
'sub_type': 'general',
'title': 'Job Vacancy',
'type': 'numeric',
'unit_of_measure': 'No.of Vacancies'}],
'CSV'),
('https://storage.data.gov.sg/job-vacancy-by-industry-and-occupational-group-quarterly/resources/job-vacancy-topline-2017-06-13T06-12-25Z.csv',
'ed6ca640-a1e6-4435-b06a-493981a620cd',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'job_vacancy',
'sub_type': 'general',
'title': 'Job Vacancy',
'type': 'numeric',
'unit_of_measure': 'No. of vacancies'}],
'CSV'),
('https://storage.data.gov.sg/job-vacancy-by-industry-and-occupational-group-quarterly/resources/job-vacancy-by-industry-level1-2017-06-13T06-13-03Z.csv',
'3ba4be1b-b954-4db8-9c0f-d7a3745f8294',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry1',
'type': 'text'},
{'description': '"-" : Data is negligible or not significant',
'name': 'job_vacancy',
'sub_type': 'general',
'title': 'Job Vacancy',
'type': 'numeric',
'unit_of_measure': 'No. of vacancies'}],
'CSV'),
('https://storage.data.gov.sg/job-vacancy-by-industry-and-occupational-group-quarterly/resources/job-vacancy-by-industry-level2-2017-06-13T06-13-56Z.csv',
'f590306d-160a-4b20-9f3c-15e234dd64ce',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry1',
'type': 'text'},
{'name': 'industry2',
'sub_type': 'general',
'title': 'Industry2',
'type': 'text'},
{'description': '"-" : Data is negligible or not significant',
'name': 'job_vacancy',
'sub_type': 'general',
'title': 'Job Vacancy',
'type': 'numeric',
'unit_of_measure': 'No. of vacancies'}],
'CSV'),
('https://storage.data.gov.sg/job-vacancy-by-industry-and-occupational-group-quarterly/resources/job-vacancy-by-industry-level3-2017-06-13T06-14-47Z.csv',
'19f4c130-4d5d-4d08-9a23-5c8443f7dc51',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry1',
'type': 'text'},
{'name': 'industry2',
'sub_type': 'general',
'title': 'Industry2',
'type': 'text'},
{'name': 'industry3',
'sub_type': 'general',
'title': 'Industry3',
'type': 'text'},
{'description': '"-" : Data is negligible or not significant',
'name': 'job_vacancy',
'sub_type': 'general',
'title': 'Job Vacancy',
'type': 'numeric',
'unit_of_measure': 'No. of vacancies'}],
'CSV'),
('https://storage.data.gov.sg/job-vacancy-by-industry-and-occupational-group-quarterly/resources/job-vacancy-by-broad-occupational-group-2017-06-13T06-15-21Z.csv',
'f8134bbb-c36f-4422-83a1-677b0e17e592',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'occupation1',
'sub_type': 'general',
'title': 'Occupation1',
'type': 'text'},
{'name': 'job_vacancy',
'sub_type': 'general',
'title': 'Job Vacancy',
'type': 'numeric',
'unit_of_measure': 'No. of vacancies'}],
'CSV'),
('https://storage.data.gov.sg/job-vacancy-rate-annual/resources/job-vacancy-rate-annual-2016-02-16T06-00-03Z.csv',
'34b5dc65-4a44-4fee-9431-7131c347f9cf',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'job_vacancy_rate',
'sub_type': 'percentage',
'title': 'Job Vacancy Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/job-vacancy-rate-by-industry-and-occupational-group-annual/resources/job-vacancy-rate-topline-2017-03-15T09-14-25Z.csv',
'c24179a5-fe81-44f2-bb47-74c9fdd6011a',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'job_vacancy_rate',
'sub_type': 'percentage',
'title': 'Job Vacancy Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/job-vacancy-rate-by-industry-and-occupational-group-annual/resources/job-vacancy-rate-by-industry-level1-2017-03-15T09-15-34Z.csv',
'1d921dd4-a4d4-44c5-aba1-27f6873b868e',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry1',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'job_vacancy_rate',
'sub_type': 'percentage',
'title': 'Job Vacancy Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/job-vacancy-rate-by-industry-and-occupational-group-annual/resources/job-vacancy-rate-by-industry-level2-2017-03-15T09-17-04Z.csv',
'2da1e0e4-b14e-424c-aa18-1ac2fceea74c',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry1',
'type': 'text'},
{'name': 'industry2',
'sub_type': 'general',
'title': 'Industry2',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'job_vacancy_rate',
'sub_type': 'percentage',
'title': 'Job Vacancy Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/job-vacancy-rate-by-industry-and-occupational-group-annual/resources/job-vacancy-rate-by-industry-level3-2017-03-15T09-18-07Z.csv',
'1682ddec-0199-4ec2-9f3c-33fc4040e25f',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry1',
'type': 'text'},
{'name': 'industry2',
'sub_type': 'general',
'title': 'Industry2',
'type': 'text'},
{'name': 'industry3',
'sub_type': 'general',
'title': 'Industry3',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'job_vacancy_rate',
'sub_type': 'percentage',
'title': 'Job Vacancy Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/job-vacancy-rate-by-industry-and-occupational-group-annual/resources/job-vacancy-rate-by-broad-occupational-group-2017-03-15T10-12-20Z.csv',
'54ac6f71-1839-49b9-955b-1d409180befb',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'occupation1',
'sub_type': 'general',
'title': 'Occupation1',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'job_vacancy_rate',
'sub_type': 'percentage',
'title': 'Job Vacancy Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/job-vacancy-rates-by-industry-and-occupational-group-quarterly/resources/job-vacancy-rate-topline-2017-06-13T06-07-33Z.csv',
'82d70348-7318-442f-b667-154ebf581d09',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'job_vacancy_rate',
'sub_type': 'percentage',
'title': 'Job Vacancy Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/job-vacancy-rates-by-industry-and-occupational-group-quarterly/resources/job-vacancy-rate-by-industry-level1-2017-06-13T06-08-18Z.csv',
'9d99680b-a515-4be0-854e-dcd51f8b7a92',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry1',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'job_vacancy_rate',
'sub_type': 'percentage',
'title': 'Job Vacancy Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/job-vacancy-rates-by-industry-and-occupational-group-quarterly/resources/job-vacancy-rate-by-industry-level2-2017-06-13T06-09-10Z.csv',
'37e76c40-789d-422e-880e-db2689804939',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry1',
'type': 'text'},
{'name': 'industry2',
'sub_type': 'general',
'title': 'Industry2',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'job_vacancy_rate',
'sub_type': 'percentage',
'title': 'Job Vacancy Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/job-vacancy-rates-by-industry-and-occupational-group-quarterly/resources/job-vacancy-rate-by-industry-level3-2017-06-13T06-10-00Z.csv',
'8b416bcb-7ab5-4650-8996-88fe629acebe',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'industry1',
'sub_type': 'general',
'title': 'Industry1',
'type': 'text'},
{'name': 'industry2',
'sub_type': 'general',
'title': 'Industry2',
'type': 'text'},
{'name': 'industry3',
'sub_type': 'general',
'title': 'Industry3',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'job_vacancy_rate',
'sub_type': 'percentage',
'title': 'Job Vacancy Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/job-vacancy-rates-by-industry-and-occupational-group-quarterly/resources/job-vacancy-rate-by-broad-occupational-group-2017-06-13T06-10-56Z.csv',
'3a640c42-1936-4cc0-8a2d-e002dcec9f30',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'occupation1',
'sub_type': 'general',
'title': 'Occupation1',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'job_vacancy_rate',
'sub_type': 'percentage',
'title': 'Job Vacancy Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/job-vacancy-to-unemployed-person-ratio-annual/resources/job-vacancy-to-unemployed-person-ratio-2017-03-15T08-30-57Z.csv',
'340310ee-b90d-4154-8e20-6b05a1d9fa22',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'jv_to_ue',
'sub_type': 'general',
'title': 'Jv To Ue',
'type': 'numeric',
'unit_of_measure': 'Ratio'}],
'CSV'),
('https://storage.data.gov.sg/judicial-executions/resources/judicial-executions-2017-02-27T07-42-09Z.csv',
'c8630e0f-e9e3-478a-91e7-85c9fea5e3db',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'types_of_judical_executions',
'sub_type': 'general',
'title': 'Types Of Judical Executions',
'type': 'text'},
{'name': 'number_of_judical_executions',
'sub_type': 'general',
'title': 'Number Of Judical Executions',
'type': 'numeric',
'unit_of_measure': 'Number of Executions'}],
'CSV'),
('https://storage.data.gov.sg/jvetoue-qtrly/resources/job-vacancy-to-unemployed-person-ratio-2017-06-13T05-42-35Z.csv',
'763bca1d-3269-40ef-8d65-c36000ce171b',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'jv_to_ue',
'sub_type': 'general',
'title': 'Job Vacancy to Unemployed Ratio',
'type': 'numeric',
'unit_of_measure': 'Ratio'}],
'CSV'),
('https://storage.data.gov.sg/key-statistics-on-blood-donations-and-processing/resources/number-of-blood-donors-annual-2016-08-16T03-22-17Z.csv',
'981c17af-710c-4403-b3aa-67e75e8bb266',
[{'description': 'Calendar Year',
'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'no_of_donors',
'sub_type': 'general',
'title': 'Number of Donors',
'type': 'numeric',
'unit_of_measure': 'Number of Donors'}],
'CSV'),
('https://storage.data.gov.sg/key-statistics-on-blood-donations-and-processing/resources/number-of-blood-donations-by-type-annual-2016-08-16T03-25-42Z.csv',
'0ebc5a8f-0d01-48d4-8c4e-3ec68b993779',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'type_of_donation',
'sub_type': 'general',
'title': 'Type of Donation',
'type': 'text'},
{'name': 'count',
'sub_type': 'general',
'title': 'Number of Blood Donations',
'type': 'numeric',
'unit_of_measure': 'Number of Blood Donations'}],
'CSV'),
('https://storage.data.gov.sg/key-statistics-on-blood-donations-and-processing/resources/number-of-blood-components-processed-annual-2016-08-16T03-28-53Z.csv',
'350f7407-78a5-4ce9-b5d5-4cbbd8db40c8',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'no_of_bld_comp_proc',
'sub_type': 'general',
'title': 'Number of Blood Components Processed',
'type': 'numeric',
'unit_of_measure': 'Number of Blood Components Processed'}],
'CSV'),
('https://storage.data.gov.sg/key-statistics-on-blood-donations-and-processing/resources/number-of-laboratory-tests-conducted-annual-2016-08-16T03-31-40Z.csv',
'b47b888d-865b-4495-b184-96f52e9fd8ad',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'no_of_lab_test_conducted',
'sub_type': 'general',
'title': 'Number of Lab Test Conducted',
'type': 'numeric',
'unit_of_measure': 'Number of Lab Test Conducted'}],
'CSV'),
('https://storage.data.gov.sg/key-stats-since-1960-demand-for-rental-and-sold-flats/resources/demand-for-rental-and-sold-flats-2016-11-24T04-21-37Z.csv',
'31c215a9-f22d-4cfa-a8e9-fc624c50fedd',
[{'format': 'YYYY',
'name': 'start_year',
'sub_type': 'year',
'title': 'Start Year',
'type': 'datetime'},
{'format': 'YYYY',
'name': 'end_year',
'sub_type': 'year',
'title': 'End Year',
'type': 'datetime'},
{'name': 'flat_type',
'sub_type': 'general',
'title': 'Flat Type',
'type': 'text'},
{'name': 'demand_for_flats',
'sub_type': 'general',
'title': 'Demand For Flats',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/labour-force-participation-rate-for-hdb-population-by-ethnic-group-and-flat-type/resources/labour-force-participation-rate-of-hdb-resident-population-by-ethnic-group-2017-03-14T04-07-31Z.csv',
'70c7887b-b274-4b73-ada8-1e86818e454c',
[{'format': 'YYYY',
'name': 'shs_year',
'sub_type': 'year',
'title': 'SHS Year',
'type': 'datetime'},
{'name': 'ethnic_group',
'sub_type': 'general',
'title': 'Ethnic Group',
'type': 'text'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'lfpr',
'sub_type': 'percentage',
'title': 'Labour Force Participation Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/labour-force-participation-rate-for-hdb-population-by-ethnic-group-and-flat-type/resources/labour-force-participation-rate-of-hdb-resident-population-by-flat-type-2017-05-05T07-34-10Z.csv',
'2974dfbb-4eba-471b-bd4b-f9ad95dcc076',
[{'format': 'YYYY',
'name': 'shs_year',
'sub_type': 'year',
'title': 'SHS Year',
'type': 'datetime'},
{'name': 'flat_type',
'sub_type': 'general',
'title': 'Flat Type',
'type': 'text'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'lfpr',
'sub_type': 'percentage',
'title': 'Labour Force Participation Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/land-area-and-dwelling-units-by-town/resources/land-area-and-dwelling-units-by-town-2017-03-10T07-07-04Z.csv',
'898d985a-0996-4efd-b2c2-7d9fab4138e9',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'name': 'town', 'sub_type': 'general', 'title': 'Town', 'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'total_land_area',
'sub_type': 'general',
'title': 'Total Land Area',
'type': 'numeric',
'unit_of_measure': 'Hectares'},
{'name': 'residential_land_area',
'sub_type': 'general',
'title': 'Residential Land Area',
'type': 'numeric',
'unit_of_measure': 'Hectares'},
{'name': 'dwelling_units_under_management',
'sub_type': 'general',
'title': 'Dwelling Units under Management',
'type': 'numeric',
'unit_of_measure': 'No. of Units'},
{'name': 'projected_ultimate_dwelling_units',
'sub_type': 'general',
'title': 'Projected Ultimate Dwelling Units',
'type': 'numeric',
'unit_of_measure': 'No. of Units'}],
'CSV'),
('https://storage.data.gov.sg/lasalle-and-nafa-intake-enrolment-and-graduates/resources/lasalle-and-nafa-intake-enrolment-and-graduates-by-type-of-course-2016-10-12T00-44-47Z.csv',
'32cde8cf-f5cc-47e9-b724-efd2a5180764',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'sex', 'sub_type': 'general', 'title': 'Sex', 'type': 'text'},
{'name': 'course',
'sub_type': 'general',
'title': 'Course',
'type': 'text'},
{'name': 'intake',
'sub_type': 'general',
'title': 'Intake',
'type': 'numeric',
'unit_of_measure': 'No. of Students'},
{'name': 'enrolment',
'sub_type': 'general',
'title': 'Enrolment',
'type': 'numeric',
'unit_of_measure': 'No. of Students'},
{'description': '"na" : Data not available or not applicable',
'name': 'graduates',
'sub_type': 'general',
'title': 'Graduates',
'type': 'numeric',
'unit_of_measure': 'No. of Students'}],
'CSV'),
('https://storage.data.gov.sg/licensed-food-establishments-by-category-annual/resources/licensed-food-establishments-by-category-annual-2016-07-27T16-14-29Z.csv',
'282f4453-2660-402d-bf1d-5838440fceaf',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Number of Establishments',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/licensed-food-establishments-by-category-annual/resources/total-licensed-food-establishments-by-category-annual-2016-07-27T16-14-31Z.csv',
'0f48a08d-fab7-4df5-802e-595aec773510',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Category',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Number of Establishments',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/licensed-food-establishments-by-grade/resources/licensed-food-establishments-by-grade-2016-02-17T16-07-15Z.csv',
'4e4769ac-7911-42ce-b9a9-ed03162fecf3',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'grade', 'sub_type': 'general', 'title': 'Grade', 'type': 'text'},
{'name': 'no_of_food_establishments',
'sub_type': 'general',
'title': 'No. Of Food Establishments',
'type': 'numeric',
'unit_of_measure': 'No. Of Food Establishments'}],
'CSV'),
('https://storage.data.gov.sg/licensed-food-establishments-food-factories/resources/licensed-food-factories-end-of-period-annual-2016-02-17T15-01-53Z.csv',
'e6e58775-49b2-47cc-9689-08a2ba843fff',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'no_of_food_factories',
'sub_type': 'general',
'title': 'No. Of Food Factories',
'type': 'numeric',
'unit_of_measure': 'No. Of Food Factories'}],
'CSV'),
('https://storage.data.gov.sg/licensed-food-establishments-food-shops/resources/licensed-food-shops-end-of-period-annual-2016-02-19T06-43-51Z.csv',
'257d7908-4458-44b6-9601-a891cf514161',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'no_of_food_shops',
'sub_type': 'general',
'title': 'No. Of Food Shops',
'type': 'numeric',
'unit_of_measure': 'No. Of Food Shops'}],
'CSV'),
('https://storage.data.gov.sg/licensed-food-establishments-food-stalls/resources/licensed-food-stalls-end-of-period-annual-2016-02-19T06-44-32Z.csv',
'788973a3-2c6f-40b6-9340-ea68fb7c8af4',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'no_of_food_stalls',
'sub_type': 'general',
'title': 'No. Of Food Stalls',
'type': 'numeric',
'unit_of_measure': 'No. Of Food Stalls'}],
'CSV'),
('https://storage.data.gov.sg/licensed-food-establishments-supermarkets/resources/licensed-supermarkets-end-of-period-annual-2016-02-17T15-00-13Z.csv',
'7d227335-2f09-4aa8-b99f-14949e5433a1',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'no_of_supermarkets',
'sub_type': 'general',
'title': 'No. Of Supermarkets',
'type': 'numeric',
'unit_of_measure': 'No. Of Supermarkets'}],
'CSV'),
('https://storage.data.gov.sg/lift-lodgement-listing/resources/lift-lodgement-listing-2016-06-29T01-16-33Z.csv',
'd361d45e-e20e-4df4-9b79-8fea50c01b63',
[{'name': 'owner_name',
'sub_type': 'general',
'title': 'Owner name',
'type': 'text'},
{'name': 'lift_no',
'sub_type': 'general',
'title': 'Lift Number',
'type': 'text'},
{'description': '"na" : Data is not available',
'name': 'block_no',
'sub_type': 'general',
'title': 'Block no',
'type': 'text'},
{'name': 'road_name',
'sub_type': 'general',
'title': 'Road name',
'type': 'text'},
{'name': 'cert_status',
'sub_type': 'general',
'title': 'Certificate Status',
'type': 'text'},
{'format': 'YYYY-MM',
'name': 'cert_exp_date',
'sub_type': 'month',
'title': 'Cert Expiry Date',
'type': 'datetime'},
{'name': 'lift_location',
'sub_type': 'general',
'title': 'Lift location',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/listing-of-illegal-health-products-found-in-singapore/resources/listing-of-illegal-health-products-found-in-singapore-2016-07-01T03-58-17Z.csv',
'a38f6758-e204-4896-8e98-368ef4cadfc1',
[{'name': 'product_name',
'sub_type': 'general',
'title': 'Product Name',
'type': 'text'},
{'description': '"na" : Data not available',
'name': 'dosage_form',
'sub_type': 'general',
'title': 'Dosage Form',
'type': 'text'},
{'description': '"na" : Data not available',
'name': 'dosage_form_colour',
'sub_type': 'general',
'title': 'Dosage Form Colour',
'type': 'text'},
{'description': '"na" : Data not available',
'name': 'dosage_form_shape',
'sub_type': 'general',
'title': 'Dosage Form Shape',
'type': 'text'},
{'description': '"na" : Data not available',
'name': 'dosage_form_marking',
'sub_type': 'general',
'title': 'Dosage Form Marking',
'type': 'text'},
{'name': 'adulterant_type',
'sub_type': 'general',
'title': 'Adulterant Type',
'type': 'text'},
{'description': '"na" : Data not available',
'name': 'manufacturer_name',
'sub_type': 'general',
'title': 'Manufacturer Name',
'type': 'text'},
{'description': '"na" : Data not available',
'name': 'manufacturer_country',
'sub_type': 'general',
'title': 'Manufacturer Country',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/listing-of-licensed-builders/resources/listing-of-licensed-builders-2016-06-27T13-14-43Z.csv',
'aefa2952-5b91-486b-ac22-0480ad443985',
[{'name': 'company_name',
'sub_type': 'general',
'title': 'Company Name',
'type': 'text'},
{'name': 'uen_no',
'sub_type': 'general',
'title': 'UEN No',
'type': 'text'},
{'name': 'class', 'sub_type': 'general', 'title': 'Class', 'type': 'text'},
{'name': 'class_code',
'sub_type': 'general',
'title': 'Class Code',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'additional_info',
'sub_type': 'general',
'title': 'Additional Info',
'type': 'text'},
{'format': 'YYYY-MM-DD',
'name': 'expiry_date',
'sub_type': 'date',
'title': 'Expiry date',
'type': 'datetime'},
{'name': 'building_no',
'sub_type': 'address',
'title': 'Building No',
'type': 'text'},
{'name': 'street_name',
'sub_type': 'address',
'title': 'Street Name',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'unit_no',
'sub_type': 'address',
'title': 'Unit No',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'building_name',
'sub_type': 'address',
'title': 'Building Name',
'type': 'text'},
{'name': 'postal_code',
'sub_type': 'postal_code',
'title': 'Postal Code',
'type': 'text'},
{'name': 'tel_no',
'sub_type': 'telephone',
'title': 'Tel No',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/listing-of-licensed-pharmacies/resources/listing-of-licensed-pharmacies-2017-05-08T03-02-37Z.csv',
'16db7800-d81e-4d0d-9d59-936f2c10d668',
[{'name': 'pharmacy_name',
'sub_type': 'general',
'title': 'Pharmacy Name',
'type': 'text'},
{'name': 'house_blk_no',
'sub_type': 'general',
'title': 'House blk no',
'type': 'text'},
{'name': 'road_name',
'sub_type': 'general',
'title': 'Road name',
'type': 'text'},
{'name': 'level', 'sub_type': 'general', 'title': 'Level', 'type': 'text'},
{'name': 'unit_no',
'sub_type': 'general',
'title': 'Unit no',
'type': 'text'},
{'name': 'building_name',
'sub_type': 'general',
'title': 'Building name',
'type': 'text'},
{'name': 'postal_code',
'sub_type': 'postal_code',
'title': 'Postal Code',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/listing-of-licensed-tobacco-importers-and-wholesalers/resources/listing-of-licensed-tobacco-importers-and-wholesalers-2017-01-26T03-22-12Z.csv',
'37e9749e-3394-4606-b41e-f0256166987a',
[{'description': 'License application number',
'name': 'application_number',
'sub_type': 'general',
'title': 'Application Number',
'type': 'text'},
{'name': 'licence_number',
'sub_type': 'general',
'title': 'Licence Number',
'type': 'text'},
{'name': 'company_name',
'sub_type': 'general',
'title': 'Company Name',
'type': 'text'},
{'description': 'Start date of license',
'format': 'YYYY-MM-DD',
'name': 'start_date',
'sub_type': 'date',
'title': 'License Start Date',
'type': 'datetime'},
{'description': 'Expiry date of license',
'format': 'YYYY-MM-DD',
'name': 'end_date',
'sub_type': 'date',
'title': 'License Expiry Date',
'type': 'datetime'},
{'name': 'postal_code',
'sub_type': 'postal_code',
'title': 'Postal Code',
'type': 'text'},
{'name': 'tobacco_type',
'sub_type': 'general',
'title': 'Tobacco Type',
'type': 'text'},
{'name': 'company_address',
'sub_type': 'general',
'title': 'Company Address',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/listing-of-licensed-tobacco-retailers/resources/list-of-tobacco-retailers-2017-01-26T03-31-20Z.csv',
'2e6e024c-9f19-4564-ab6c-3d97b7c6bfc4',
[{'description': 'Name of company or licensee holder',
'name': 'company_or_licensee_name',
'sub_type': 'general',
'title': 'Company or Licensee Name',
'type': 'text'},
{'description': 'Start date of license validity',
'name': 'start_date',
'sub_type': 'general',
'title': 'License Start date',
'type': 'text'},
{'description': 'End date of license validity',
'name': 'end_date',
'sub_type': 'general',
'title': 'License Expiry date',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'postal_code',
'sub_type': 'postal_code',
'title': 'Postal Code',
'type': 'text'},
{'name': 'retail_outlet_address',
'sub_type': 'address',
'title': 'Retail Outlet Address',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/listing-of-oral-dental-gums/resources/listing-of-oral-dental-gums-2016-06-29T07-47-51Z.csv',
'11824d64-83b7-42f1-91cf-1f238d448bb8',
[{'description': 'Brand of oral dental gums',
'name': 'brand_name',
'sub_type': 'general',
'title': 'Brand name',
'type': 'text'},
{'description': 'Name of oral dental gums',
'name': 'product_name',
'sub_type': 'general',
'title': 'Product name',
'type': 'text'},
{'description': 'license effective date',
'format': 'YYYY-MM-DD',
'name': 'effective_date',
'sub_type': 'date',
'title': 'Effective date',
'type': 'datetime'},
{'description': 'name of company',
'name': 'company_name',
'sub_type': 'general',
'title': 'Company name',
'type': 'text'},
{'description': ['classification of gums',
'"na" : Data not available or not applicable'],
'name': 'classification',
'sub_type': 'general',
'title': 'Classification',
'type': 'text'},
{'description': 'shelf life',
'name': 'shelf_life',
'sub_type': 'general',
'title': 'Shelf life',
'type': 'text'},
{'description': 'Intended use',
'name': 'intended_use',
'sub_type': 'general',
'title': 'Intended use',
'type': 'text'},
{'description': 'country of manufacture',
'name': 'country_of_manufacture',
'sub_type': 'general',
'title': 'Country of manufacture',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/listing-of-public-sector-panels-of-consultants/resources/listing-of-public-sector-panels-of-consultants-2016-06-23T07-24-04Z.csv',
'f03efa8c-d6cb-4a55-a8b3-3b5a697f5a40',
[{'name': 'company_name',
'sub_type': 'general',
'title': 'Company Name',
'type': 'text'},
{'description': '"na" : Data not available',
'name': 'uen_no',
'sub_type': 'general',
'title': 'UEN No',
'type': 'text'},
{'name': 'building_no',
'sub_type': 'address',
'title': 'Building No',
'type': 'text'},
{'name': 'street_name',
'sub_type': 'address',
'title': 'Street Name',
'type': 'text'},
{'description': '"na" : Data not available',
'name': 'unit_no',
'sub_type': 'address',
'title': 'Unit No',
'type': 'text'},
{'description': '"na" : Data not available',
'name': 'building_name',
'sub_type': 'address',
'title': 'Building Name',
'type': 'text'},
{'name': 'postal_code',
'sub_type': 'postal_code',
'title': 'Postal Code',
'type': 'text'},
{'name': 'discipline',
'sub_type': 'general',
'title': 'Discipline',
'type': 'text'},
{'name': 'listing_code',
'sub_type': 'general',
'title': 'Listing Code',
'type': 'text'},
{'description': 'Listing period starts on 1 April and ends on 31 March. ',
'format': 'YYYY',
'name': 'listing_period',
'sub_type': 'year',
'title': 'Listing Period',
'type': 'datetime'}],
'CSV'),
('https://storage.data.gov.sg/listing-of-registered-contractors/resources/listing-of-registered-contractors-2016-12-22T09-17-30Z.csv',
'a9a9327f-7634-4367-be7f-d679a729bd96',
[{'description': 'Company Name',
'name': 'company_name',
'sub_type': 'general',
'title': 'Company Name',
'type': 'text'},
{'description': 'UEN No',
'name': 'uen_no',
'sub_type': 'general',
'title': 'UEN No',
'type': 'text'},
{'description': 'Workhead',
'name': 'workhead',
'sub_type': 'general',
'title': 'Workhead',
'type': 'text'},
{'description': 'Grade',
'name': 'grade',
'sub_type': 'general',
'title': 'Grade',
'type': 'text'},
{'description': ['Additional Info',
'"na" : Data not available or not applicable'],
'name': 'additional_info',
'sub_type': 'general',
'title': 'Additional Info',
'type': 'text'},
{'name': 'expiry_date',
'sub_type': 'general',
'title': 'Expiry date',
'type': 'text'},
{'description': ['Building No',
'"na" : Data not available or not applicable'],
'name': 'building_no',
'sub_type': 'address',
'title': 'Building No',
'type': 'text'},
{'name': 'street_name',
'sub_type': 'address',
'title': 'Street Name',
'type': 'text'},
{'description': ['Unit No', '"na" : Data not available or not applicable'],
'name': 'unit_no',
'sub_type': 'address',
'title': 'Unit No',
'type': 'text'},
{'description': ['Building Name',
'"na" : Data not available or not applicable'],
'name': 'building_name',
'sub_type': 'address',
'title': 'Building Name',
'type': 'text'},
{'description': 'Postal Code',
'name': 'postal_code',
'sub_type': 'postal_code',
'title': 'Postal Code',
'type': 'text'},
{'description': 'Tel No',
'name': 'tel_no',
'sub_type': 'general',
'title': 'Tel No',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/listing-of-registered-cosmetic-products/resources/listing-of-registered-cosmetic-products-2016-07-04T10-15-23Z.csv',
'86bbb812-d333-4a36-a93b-4881d8f9053b',
[{'description': ['Name of brand',
'"na" : Data is not availalble',
'"-" : Data is negligible or not significant'],
'name': 'brand_name',
'sub_type': 'url',
'title': 'Brand Name',
'type': 'text'},
{'description': 'Name of cosmetic product',
'name': 'product',
'sub_type': 'general',
'title': 'Product',
'type': 'text'},
{'description': ['Shade or palette of cosmetic product',
'"na" : Data is not available'],
'name': 'shade_or_palette',
'sub_type': 'general',
'title': 'Shade or palette',
'type': 'text'},
{'description': 'HSA notification number',
'name': 'notification_number',
'sub_type': 'general',
'title': 'Notification number',
'type': 'text'},
{'description': 'Name of company',
'name': 'company',
'sub_type': 'general',
'title': 'Company',
'type': 'text'},
{'format': 'YYYY-MM-DD',
'name': 'effective_date',
'sub_type': 'date',
'title': 'Effective date',
'type': 'datetime'},
{'description': ['country of manufacture', '"na" : Data is not available'],
'name': 'country_of_manufacture',
'sub_type': 'general',
'title': 'Country of manufacture',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/listing-of-registered-renovation-contractors/resources/registered-renovation-contractors-who-can-carry-out-renovation-works-by-company-name-2017-01-06T08-24-14Z.csv',
'e16c0173-3be4-4fa2-ac9f-ee56ecb0ebbc',
[{'name': 'uen', 'sub_type': 'general', 'title': 'UEN', 'type': 'text'},
{'name': 'hdb_registration_no',
'sub_type': 'general',
'title': 'HDB Registration No',
'type': 'text'},
{'name': 'company_name',
'sub_type': 'general',
'title': 'Company Name',
'type': 'text'},
{'name': 'address',
'sub_type': 'general',
'title': 'Address',
'type': 'text'},
{'name': 'postal_code',
'sub_type': 'postal_code',
'title': 'Postal Code',
'type': 'text'},
{'name': 'email_address',
'sub_type': 'email',
'title': 'Email Address',
'type': 'text'},
{'name': 'contact_no',
'sub_type': 'telephone',
'title': 'Contact No',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/listing-of-temporary-occupation-permits-top-issued/resources/listing-of-temporary-occupation-permits-top-issued-2016-02-19T06-54-06Z.csv',
'18a5ef70-dc13-4249-a8d1-b34823fec471',
[{'format': 'YYYY-MM-DD',
'name': 'date_issued',
'sub_type': 'date',
'title': 'Date Issued',
'type': 'datetime'},
{'name': 'top_number',
'sub_type': 'general',
'title': 'TOP Number',
'type': 'text'},
{'name': 'project_reference_no',
'sub_type': 'general',
'title': 'Project Reference No',
'type': 'text'},
{'name': 'description',
'sub_type': 'general',
'title': 'Description',
'type': 'text'},
{'name': 'architect',
'sub_type': 'general',
'title': 'Architect',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'floor_area',
'sub_type': 'general',
'title': 'Floor Area',
'type': 'numeric',
'unit_of_measure': 'Sqm'},
{'name': 'cost',
'sub_type': 'general',
'title': 'Cost',
'type': 'numeric',
'unit_of_measure': 'S$'},
{'name': 'residental_units',
'sub_type': 'general',
'title': 'Residental Units',
'type': 'numeric',
'unit_of_measure': 'No. of Units'}],
'CSV'),
('https://storage.data.gov.sg/list-of-cleaning-contractors-and-location-of-work/resources/list-of-cleaning-contractors-and-location-of-work-2016-06-21T09-51-36Z.csv',
'4d6959b1-f48e-4b05-b20e-244b9feb6939',
[{'name': 'cleansvcpr',
'sub_type': 'general',
'title': 'Cleaning Contractors ',
'type': 'text'},
{'name': 'email_add',
'sub_type': 'email',
'title': 'Email Addresses ',
'type': 'text'},
{'name': 'contact',
'sub_type': 'telephone',
'title': 'Contact Numbers',
'type': 'text'},
{'name': 'zone',
'sub_type': 'general',
'title': 'Location of Work',
'type': 'text'},
{'name': 'remark',
'sub_type': 'general',
'title': 'Remarks',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/list-of-government-markets-hawker-centres/resources/list-of-government-markets-hawker-centres-2016-12-23T06-40-54Z.csv',
'8f6bba57-19fc-4f36-8dcf-c0bda382364d',
[{'description': 'Name of the Government Markets and Hawker Centre',
'name': 'name_of_centre',
'sub_type': 'general',
'title': 'Name of Market or Hawker Centre',
'type': 'text'},
{'name': 'location_of_centre',
'sub_type': 'general',
'title': 'Address',
'type': 'text'},
{'description': ['1. MK - Market only',
'2. HC - Hawker Centre only',
'3. MHC- Markets cum Hawker Centres'],
'name': 'type_of_centre',
'sub_type': 'general',
'title': 'Type of centre',
'type': 'text'},
{'description': 'Can be owned by HDB - Housing and Development Board, or Government.',
'name': 'owner',
'sub_type': 'general',
'title': 'Owner',
'type': 'text'},
{'name': 'no_of_stalls',
'sub_type': 'general',
'title': 'Number of stalls',
'type': 'numeric',
'unit_of_measure': 'Number of stalls'},
{'name': 'no_of_cooked_food_stalls',
'sub_type': 'general',
'title': 'Number of cooked food stalls',
'type': 'numeric',
'unit_of_measure': 'Number of stalls'},
{'name': 'no_of_mkt_produce_stalls',
'sub_type': 'general',
'title': 'Number of market produce stalls',
'type': 'numeric',
'unit_of_measure': 'Number of stalls'}],
'CSV'),
('https://storage.data.gov.sg/list-of-licensed-vet-centres/resources/list-of-licensed-vet-centres-2016-06-28T06-19-44Z.csv',
'b2871270-4eef-44a3-be98-908e2a73b19f',
[{'name': 'name', 'sub_type': 'general', 'title': 'Name', 'type': 'text'},
{'name': 'type', 'sub_type': 'general', 'title': 'Type', 'type': 'text'},
{'name': 'address',
'sub_type': 'address',
'title': 'Address',
'type': 'text'},
{'name': 'postal_code',
'sub_type': 'postal_code',
'title': 'Postal Code',
'type': 'text'},
{'name': 'tel_office_1',
'sub_type': 'telephone',
'title': 'Tel Office 1',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'tel_office_2',
'sub_type': 'telephone',
'title': 'Tel Office 2',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'fax_office',
'sub_type': 'telephone',
'title': 'Fax Office',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/list-of-nea-licensed-eating-establishments-with-grades-demerit-points-and-suspension-history/resources/list-of-nea-licensed-eating-establishments-2016-09-16T01-14-36Z.csv',
'34f86c3e-a90c-4de9-a69f-afc86b7f31b6',
[{'name': 'licensee_name',
'sub_type': 'url',
'title': 'Licensee Name',
'type': 'text'},
{'name': 'licence_number',
'sub_type': 'general',
'title': 'Licence Number',
'type': 'text'},
{'name': 'premises_address',
'sub_type': 'general',
'title': 'Premises Address',
'type': 'text'},
{'description': ['Data not available or not applicable. Licensed establishments such as eating houses, food courts, canteens etc. are not subjected to the grading regime as only the individual food stalls within the establishment are subjected to grading. New food establishments may not have been graded yet',
'"na" : Data not available or not applicable'],
'name': 'grade',
'sub_type': 'general',
'title': 'Grade',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'demerit_points',
'sub_type': 'general',
'title': 'Demerit Points',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'format': 'YYYY-MM-DD',
'name': 'suspension_start_date',
'sub_type': 'date',
'title': 'Suspension Start Date',
'type': 'datetime'},
{'description': '"na" : Data not available or not applicable',
'format': 'YYYY-MM-DD',
'name': 'suspension_end_date',
'sub_type': 'date',
'title': 'Suspension End Date',
'type': 'datetime'}],
'CSV'),
('https://storage.data.gov.sg/list-of-radiation-licenses/resources/list-of-radiation-licences-2016-06-22T06-49-48Z.csv',
'42b5077c-dc1f-483a-9941-6ac5a7810c8a',
[{'description': 'Name of licence',
'name': 'licence_type',
'sub_type': 'general',
'title': 'Licence type',
'type': 'text'},
{'description': 'Description of the licence application.',
'name': 'licence_desc',
'sub_type': 'general',
'title': 'Licence Description',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/list-of-supermarket-licences/resources/list-of-supermarket-licences-2017-03-07T03-09-49Z.csv',
'3561a136-4ee4-4029-a5cd-ddf591cce643',
[{'name': 'licence_num',
'sub_type': 'general',
'title': 'Licence Number',
'type': 'text'},
{'name': 'licensee_name',
'sub_type': 'general',
'title': 'Licensee Name',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'building_name',
'sub_type': 'address',
'title': 'Building Name',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'block_house_num',
'sub_type': 'address',
'title': 'Block House Number',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'level_num',
'sub_type': 'address',
'title': 'Level Number',
'type': 'text'},
{'name': 'unit_num',
'sub_type': 'address',
'title': 'Unit Number',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'street_name',
'sub_type': 'address',
'title': 'Street Name',
'type': 'text'},
{'name': 'postal_code',
'sub_type': 'postal_code',
'title': 'Postal Code',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/list-of-zakat-centres/resources/zakat-centres-2016-06-27T04-34-34Z.csv',
'cbbeba46-b5da-43f9-ad7f-eafa52ac313a',
[{'description': 'Name of collection centre',
'name': 'name_of_organisation',
'sub_type': 'general',
'title': 'Name of organisation',
'type': 'text'},
{'description': 'Type of organisation',
'name': 'type',
'sub_type': 'general',
'title': 'Type',
'type': 'text'},
{'description': 'Description of centre',
'name': 'description',
'sub_type': 'general',
'title': 'Description',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/live-birth-by-ethnic-group-of-father-and-child-gender/resources/live-births-by-ethnic-group-of-father-and-sex-of-child-2016-08-03T00-59-55Z.csv',
'1878d3dd-9151-4d54-bda4-6fe81abf750a',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'father_race',
'sub_type': 'general',
'title': 'Father Race',
'type': 'text'},
{'name': 'child_gender',
'sub_type': 'general',
'title': 'Child Gender',
'type': 'text'},
{'name': 'birth_count',
'sub_type': 'general',
'title': 'Birth Count',
'type': 'numeric',
'unit_of_measure': 'Number of Live-Births'}],
'CSV'),
('https://storage.data.gov.sg/live-birth-by-ethnic-group-of-mother-and-attendant-at-birth/resources/live-births-by-ethnic-group-of-mother-and-attendant-at-birth-2016-08-03T01-47-59Z.csv',
'f42a5a55-9086-4323-be1a-460e382f1c28',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'mother_race',
'sub_type': 'general',
'title': 'Mother Race',
'type': 'text'},
{'name': 'birth_attendant',
'sub_type': 'general',
'title': 'Birth Attendant',
'type': 'text'},
{'name': 'birth_count',
'sub_type': 'general',
'title': 'Birth Count',
'type': 'numeric',
'unit_of_measure': 'Number of live birth'}],
'CSV'),
('https://storage.data.gov.sg/live-birth-by-ethnic-group-of-mother-and-place-of-occurrence/resources/live-births-by-ethnic-group-of-mother-and-place-of-occurrence-2016-08-03T01-28-59Z.csv',
'9979d4ed-0da8-4c9c-a9c3-b999c152c3b4',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'mother_race',
'sub_type': 'general',
'title': 'Mother Race',
'type': 'text'},
{'name': 'place_of_birth',
'sub_type': 'general',
'title': 'Place Of Birth',
'type': 'text'},
{'name': 'birth_count',
'sub_type': 'general',
'title': 'Birth Count',
'type': 'numeric',
'unit_of_measure': 'number of live birth'}],
'CSV'),
('https://storage.data.gov.sg/live-birth-by-ethnic-group-of-parent/resources/live-births-by-ethnic-group-of-parent-2016-08-03T01-13-38Z.csv',
'aacf7acc-3210-4cde-9be7-10f6a2c801eb',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'father_race',
'sub_type': 'general',
'title': 'Father Race',
'type': 'text'},
{'name': 'mother_race',
'sub_type': 'general',
'title': 'Mother Race',
'type': 'text'},
{'name': 'birth_count',
'sub_type': 'general',
'title': 'Birth Count',
'type': 'numeric',
'unit_of_measure': 'number of live birth'}],
'CSV'),
('https://storage.data.gov.sg/live-births-by-age-group-ethnic-group-and-education-qualification-of-mother/resources/live-births-by-age-group-ethnic-group-and-education-qualification-of-mother-2016-08-08T01-21-17Z.csv',
'257155dd-cedf-40b3-bfb4-f470f0b4cfa4',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'ethnic_group_of_mother',
'sub_type': 'general',
'title': 'Ethnic Group Of Mother',
'type': 'text'},
{'name': 'age_group_of_mother',
'sub_type': 'general',
'title': 'Age Group Of Mother',
'type': 'text'},
{'name': 'educational_qualification_of_mother',
'sub_type': 'general',
'title': 'Educational Qualification Of Mother',
'type': 'text'},
{'name': 'live_births',
'sub_type': 'general',
'title': 'Live Births',
'type': 'numeric',
'unit_of_measure': 'No. of Live Births'}],
'CSV'),
('https://storage.data.gov.sg/live-births-by-birth-weight-age-group-of-mother-and-child-gender/resources/live-births-by-birth-weight-age-group-of-mother-and-child-gender-2016-08-04T01-58-46Z.csv',
'd45263d4-ca60-4ece-9666-c23381ad70da',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'description': 'Birth Weight of baby in grams',
'name': 'weight',
'sub_type': 'general',
'title': 'Birth Weight',
'type': 'text'},
{'name': 'mother_age',
'sub_type': 'general',
'title': 'Mother Age',
'type': 'text'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'name': 'birth_count',
'sub_type': 'general',
'title': 'Birth Count',
'type': 'numeric',
'unit_of_measure': 'Number of live birth'}],
'CSV'),
('https://storage.data.gov.sg/live-births-by-educational-qualification-ethnic-group-of-mother-and-birth-order/resources/live-births-by-educational-qualification-ethnic-group-of-mother-and-birth-order-2016-08-04T01-21-28Z.csv',
'6018e7bc-1f36-4a29-bf89-4af57cfbd785',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'mother_race',
'sub_type': 'general',
'title': 'Mother Race',
'type': 'text'},
{'name': 'mother_education',
'sub_type': 'general',
'title': 'Mother Education',
'type': 'text'},
{'name': 'birth_order',
'sub_type': 'general',
'title': 'Birth Order',
'type': 'text'},
{'name': 'birth_count',
'sub_type': 'general',
'title': 'Birth Count',
'type': 'numeric',
'unit_of_measure': 'Number of live birth'}],
'CSV'),
('https://storage.data.gov.sg/live-births-by-ethnic-group-age-group-of-mother-and-birth-order/resources/live-births-by-ethnic-group-age-group-of-mother-and-birth-order-2016-08-04T00-31-46Z.csv',
'8ef196f4-038e-454d-b2eb-cc08db1ba422',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'order', 'sub_type': 'general', 'title': 'Order', 'type': 'text'},
{'name': 'mother_race',
'sub_type': 'general',
'title': 'Mother Race',
'type': 'text'},
{'name': 'mother_age',
'sub_type': 'general',
'title': 'Mother Age',
'type': 'text'},
{'name': 'birth_count',
'sub_type': 'general',
'title': 'Birth Count',
'type': 'numeric',
'unit_of_measure': 'Number of live birth'}],
'CSV'),
('https://storage.data.gov.sg/live-births-by-ethnic-group-age-group-of-mother-and-child-gender/resources/live-births-by-ethnic-group-age-group-of-mother-and-child-gender-2016-08-03T08-58-35Z.csv',
'306dbdf7-f08e-445c-947f-eea0ac5b0ed1',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'mage',
'sub_type': 'general',
'title': 'Mother Age group',
'type': 'text'},
{'name': 'child_gender',
'sub_type': 'general',
'title': 'Child Gender',
'type': 'text'},
{'name': 'mrace',
'sub_type': 'general',
'title': 'Mother Race',
'type': 'text'},
{'name': 'birth_count',
'sub_type': 'general',
'title': 'Birth Count',
'type': 'numeric',
'unit_of_measure': 'Number of live birth'}],
'CSV'),
('https://storage.data.gov.sg/live-births-by-nationality-of-father-and-mother/resources/live-births-by-nationality-of-father-and-mother-2016-08-04T00-58-51Z.csv',
'41f522f1-3534-45aa-9b60-151e368e0a3e',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'mother_nationality',
'sub_type': 'general',
'title': 'Mother Nationality',
'type': 'text'},
{'name': 'father_nationality',
'sub_type': 'general',
'title': 'Father Nationality',
'type': 'text'},
{'name': 'birth_count',
'sub_type': 'general',
'title': 'Birth Count',
'type': 'numeric',
'unit_of_measure': 'number of live birth'}],
'CSV'),
('https://storage.data.gov.sg/live-births-by-occupation-of-mother-and-birth-order/resources/live-births-by-occupation-of-mother-and-birth-order-2016-08-04T00-42-07Z.csv',
'6b7d9cf3-43d6-4657-984f-7a697fff65c0',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'mother_occupation',
'sub_type': 'general',
'title': 'Mother Occupation',
'type': 'text'},
{'name': 'order', 'sub_type': 'general', 'title': 'Order', 'type': 'text'},
{'name': 'birth_count',
'sub_type': 'general',
'title': 'Birth Count',
'type': 'numeric',
'unit_of_measure': 'number of live birth'}],
'CSV'),
('https://storage.data.gov.sg/live-births-by-period-of-gestation-birth-weight-and-child-gender/resources/live-births-single-twins-births-by-period-of-gestation-birth-weight-and-child-gender-2016-08-04T02-09-59Z.csv',
'f62369b5-d999-4c3e-a060-660e381f3728',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'description': 'unit in weeks',
'name': 'period_of_gestation',
'sub_type': 'general',
'title': 'Period Of Gestation',
'type': 'text'},
{'description': 'unit in grams',
'name': 'birth_weight',
'sub_type': 'general',
'title': 'Birth Weight',
'type': 'text'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'description': 'Single or Twins',
'name': 'type_of_birth',
'sub_type': 'general',
'title': 'Type Of Birth',
'type': 'text'},
{'name': 'birth_count',
'sub_type': 'general',
'title': 'Birth Count',
'type': 'numeric',
'unit_of_measure': 'Number of live birth'}],
'CSV'),
('https://storage.data.gov.sg/live-births-deaths-natural-increase-by-ethnic-group/resources/live-births-deaths-natural-increase-by-ethnic-group-from-1971-2015-2016-07-13T03-46-45Z.csv',
'76a8852a-093a-4e8a-ad24-598f5e82c213',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'ethnic_group',
'sub_type': 'general',
'title': 'Ethnic Group',
'type': 'text'},
{'description': 'Refers to an infant, irrespective of the duration of gestation, which after the complete expulsion or extraction from its mother, breathes or shows any other signs of life. From 1953 onwards, the figures are based on date of occurrence. Prior to 1953, they are based on date of registration. ',
'name': 'live_births',
'sub_type': 'general',
'title': 'Live Births',
'type': 'numeric',
'unit_of_measure': 'No. of Live-Births'},
{'description': 'Refers to the permanent disappearance of all signs of life of a living person at any time. Death figures referred to the number of deaths registered during the year. ',
'name': 'deaths',
'sub_type': 'general',
'title': 'Deaths',
'type': 'numeric',
'unit_of_measure': 'No. of Deaths'},
{'description': 'Natural increase refers to the excess of births over deaths',
'name': 'natural_increase',
'sub_type': 'general',
'title': 'Natural Increase',
'type': 'numeric',
'unit_of_measure': 'No. of Natural Increase'}],
'CSV'),
('https://storage.data.gov.sg/livestock-slaughtered-by-type-annual/resources/livestock-slaughtered-chickens-2016-07-21T08-00-17Z.csv',
'9292f182-5d4f-4cd9-80cd-9147b0a1c6f7',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'no_of_chickens_slaughtered',
'sub_type': 'general',
'title': 'Number of Chickens Slaughtered',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/livestock-slaughtered-by-type-annual/resources/livestock-slaughtered-chickens-breakdown-2016-07-21T08-03-34Z.csv',
'04fd23b1-6d97-4e83-8d4e-dc57542756fa',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'type_of_chicken',
'sub_type': 'general',
'title': 'Type of Chicken',
'type': 'text'},
{'name': 'no_of_chickens_slaughtered',
'sub_type': 'general',
'title': 'No of Chickens Slaughtered',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/livestock-slaughtered-by-type-annual/resources/livestock-slaughtered-duck-2016-07-21T08-08-06Z.csv',
'f123bf13-faf5-47dc-bd26-aa09e5c06edb',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'no_of_ducks_slaughtered',
'sub_type': 'general',
'title': 'No of Ducks Slaughtered',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/livestock-slaughtered-by-type-annual/resources/livestock-slaughtered-poultry-2016-07-21T08-06-24Z.csv',
'8a18d95c-bd9e-4f62-be69-92f1ce52529f',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'no_of_poultry_slaughtered',
'sub_type': 'general',
'title': 'No of Poultry Slaughtered',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/livestock-slaughtered-pigs-breakdown/resources/livestock-slaughtered-pigs-total-2016-05-04T09-48-06Z.csv',
'618f597f-550b-4293-815e-b67b4b1408c1',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'description': 'Imported live pigs',
'name': 'livestock_slaughtered',
'sub_type': 'general',
'title': 'Livestock Slaughtered',
'type': 'numeric',
'unit_of_measure': 'Whole'}],
'CSV'),
('https://storage.data.gov.sg/livestock-slaughtered-pigs-breakdown/resources/livestock-slaughtered-pigs-breakdown-2016-04-27T07-00-59Z.csv',
'352313e7-49d5-4a91-b7e4-1f24458f2635',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'types', 'sub_type': 'general', 'title': 'Types', 'type': 'text'},
{'name': 'livestock_slaughtered',
'sub_type': 'general',
'title': 'Livestock Slaughtered',
'type': 'numeric',
'unit_of_measure': 'Whole'}],
'CSV'),
('https://storage.data.gov.sg/locations-of-bomb-shelters/resources/locations-of-bomb-shelters-2016-06-15T02-46-21Z.csv',
'4ee17930-4780-403b-b6d4-b963c7bb1c09',
[{'description': 'Name of Building',
'name': 'name',
'sub_type': 'general',
'title': 'Name',
'type': 'text'},
{'description': 'Description Of Building',
'name': 'description',
'sub_type': 'general',
'title': 'Description',
'type': 'text'},
{'description': 'Address of Building',
'name': 'address',
'sub_type': 'address',
'title': 'Address',
'type': 'text'},
{'description': 'Postal code of Building',
'name': 'postal_code',
'sub_type': 'postal_code',
'title': 'Postal code',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/management-corporation-strata-title/resources/management-corporation-strata-title-2016-06-29T01-38-08Z.csv',
'21b15082-ea01-40f8-ad2b-679f011d6764',
[{'description': '"na" : Data not availalble',
'name': 'usr_mcno',
'sub_type': 'general',
'title': 'MC Number',
'type': 'text'},
{'name': 'usr_mctype',
'sub_type': 'general',
'title': 'Type',
'type': 'text'},
{'description': '"na" : Data not availalble',
'name': 'sub_mcno',
'sub_type': 'general',
'title': 'Sub MC Number',
'type': 'text'},
{'name': 'usr_mcstuen',
'sub_type': 'general',
'title': 'UEN',
'type': 'text'},
{'name': 'usr_devtname',
'sub_type': 'general',
'title': 'Development Name',
'type': 'text'},
{'name': 'devt_location',
'sub_type': 'general',
'title': 'Devt location',
'type': 'text'},
{'description': '"na" : Data not availalble',
'name': 'mcst_houseno',
'sub_type': 'address',
'title': 'House No',
'type': 'text'},
{'name': 'mcst_roadname',
'sub_type': 'address',
'title': 'Road Name',
'type': 'text'},
{'description': '"na" : Data not availalble',
'name': 'mcst_unitno',
'sub_type': 'address',
'title': 'Unit No',
'type': 'text'},
{'description': '"na" : Data not availalble',
'name': 'usr_buildingname',
'sub_type': 'address',
'title': 'Building Name',
'type': 'text'},
{'description': '"na" : Data not availalble',
'name': 'mcst_postalcode',
'sub_type': 'postal_code',
'title': 'Postal Code',
'type': 'text'},
{'description': '"na" : Data not availalble',
'name': 'mcst_telno',
'sub_type': 'telephone',
'title': 'Tel No',
'type': 'text'},
{'name': 'ust_status',
'sub_type': 'general',
'title': 'Status',
'type': 'text'},
{'name': 'mcst_stratalota',
'sub_type': 'general',
'title': 'Strata Lot',
'type': 'text'},
{'description': '"na" : Data not availalble',
'name': 'management_name',
'sub_type': 'general',
'title': 'Management name',
'type': 'text'},
{'description': '"na" : Data not availalble',
'name': 'management_tel_no',
'sub_type': 'telephone',
'title': 'Management Telephone Number',
'type': 'text'},
{'format': 'YYYY-MM-DD',
'name': 'mc_form_date',
'sub_type': 'date',
'title': 'Formation Date',
'type': 'datetime'}],
'CSV'),
('https://storage.data.gov.sg/marriage-rates-annual/resources/male-general-marriage-rate-2016-07-13T16-13-52Z.csv',
'1c31ba35-fd98-4727-b8e3-09c189d8a9e6',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'General Marriage Rate',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Marriage Rate',
'type': 'numeric',
'unit_of_measure': 'Per 1,000 Unmarried Resident Males 15-49 Years'}],
'CSV'),
('https://storage.data.gov.sg/marriage-rates-annual/resources/female-general-marriage-rate-2016-07-13T16-13-54Z.csv',
'2863e5f6-5277-4e28-9902-b7e533619484',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'General Marriage Rate',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Marriage Rate',
'type': 'numeric',
'unit_of_measure': 'Per 1,000 Unmarried Resident Females 15-49 Years'}],
'CSV'),
('https://storage.data.gov.sg/marriage-rates-annual/resources/crude-marriage-rate-2016-07-13T16-13-56Z.csv',
'c47c5391-10a0-4802-9813-da64fd40301b',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Crude Marriage Rate',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Marriage Rate',
'type': 'numeric',
'unit_of_measure': 'Per 1,000 Residents'}],
'CSV'),
('https://storage.data.gov.sg/marriage-rates-annual/resources/male-age-specific-marriage-rate-2016-07-13T16-13-58Z.csv',
'0dad7beb-f986-47ec-a0e6-af8b913bbde4',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'General Marriage Rate',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Age Group',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Marriage Rate',
'type': 'numeric',
'unit_of_measure': 'Per 1,000 Unmarried Resident Males 15-49 Years'}],
'CSV'),
('https://storage.data.gov.sg/marriage-rates-annual/resources/female-age-specific-marriage-rate-2016-07-13T16-14-00Z.csv',
'ef431ed2-988a-4a24-ae0e-ecb73aec76ac',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'General Marriage Rate',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Age Group',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Marriage Rate',
'type': 'numeric',
'unit_of_measure': 'Per 1,000 Unmarried Resident Females 15-49 Years'}],
'CSV'),
('https://storage.data.gov.sg/marriages-under-administration-muslim-law-act-educational-qualification-grooms-brides-annual/resources/marriages-under-the-admin-of-muslim-law-act-by-educational-qualification-of-brides-2016-08-03T07-00-46Z.csv',
'e08189f9-b2f3-43a2-ad1b-1e18f17edc72',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Educational Qualification of Brides (Broad Categories)',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'No. of Marriages'}],
'CSV'),
('https://storage.data.gov.sg/marriages-under-administration-muslim-law-act-educational-qualification-grooms-brides-annual/resources/marriages-under-the-admin-of-muslim-law-act-by-edu-qualification-of-brides-grooms-2016-08-03T07-00-49Z.csv',
'83ccd087-86f5-40d0-aa09-b74db477bbe9',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Educational Qualification of Brides (Broad Categories)',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Educational Qualification of Grooms (Broad Categories)',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'No. of Marriages'}],
'CSV'),
('https://storage.data.gov.sg/marriages-under-administration-muslim-law-act-previous-marital-status-age-group-brides-annual/resources/marriages-under-the-administration-of-muslim-law-act-by-previous-marital-status-of-brides-2016-08-03T06-22-54Z.csv',
'12270136-a993-43d3-b842-5704a6399f38',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Previous Marital Status',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'No. of Marriages',
'type': 'numeric',
'unit_of_measure': 'No. of Marriages'}],
'CSV'),
('https://storage.data.gov.sg/marriages-under-administration-muslim-law-act-previous-marital-status-age-group-brides-annual/resources/marriages-under-the-admin-of-muslim-law-act-by-prev-marital-status-age-grp-of-brides-2016-08-03T06-22-56Z.csv',
'2b6c6712-ca53-4f92-a197-920b5f55c6ef',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Previous Marital Status',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Age Group ',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'No. of Marriages',
'type': 'numeric',
'unit_of_measure': 'No. of Marriages'}],
'CSV'),
('https://storage.data.gov.sg/marriages-under-administration-muslim-law-act-previous-marital-status-age-group-grooms-annual/resources/marriages-under-the-administration-of-muslim-law-act-by-previous-marital-status-of-grooms-2016-08-03T06-16-28Z.csv',
'aa7ccb93-3b35-4330-be6f-4ed294c4b921',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Previous Marital Status',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'No. of Marriages',
'type': 'numeric',
'unit_of_measure': 'No. of Marriages'}],
'CSV'),
('https://storage.data.gov.sg/marriages-under-administration-muslim-law-act-previous-marital-status-age-group-grooms-annual/resources/marriages-under-the-admin-of-muslim-law-act-by-prev-marital-status-age-grp-of-grooms-2016-08-03T06-16-32Z.csv',
'76b0a2fc-fe9e-4b07-b594-5276e44d8309',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Previous Marital Status',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Age Group ',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'No. of Marriages',
'type': 'numeric',
'unit_of_measure': 'No. of Marriages'}],
'CSV'),
('https://storage.data.gov.sg/marriages-under-the-women-s-charter-by-age-group-of-brides-and-grooms-annual/resources/marriages-under-the-womens-charter-by-age-group-of-brides-2016-08-03T02-37-21Z.csv',
'18d5f575-a04d-4d66-b1b7-062d2d4abf84',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Age Group of Brides',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'No. of Marriages',
'type': 'numeric',
'unit_of_measure': 'No. of Marriages'}],
'CSV'),
('https://storage.data.gov.sg/marriages-under-the-women-s-charter-by-age-group-of-brides-and-grooms-annual/resources/marriages-under-the-womens-charter-by-age-group-of-brides-and-grooms-2016-08-03T02-37-25Z.csv',
'9b4c2bb3-45aa-4c11-aeff-946815476bc6',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Age Group of Brides',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Age Group of Grooms',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'No. of Marriages',
'type': 'numeric',
'unit_of_measure': 'No. of Marriages'}],
'CSV'),
('https://storage.data.gov.sg/marriages-under-the-women-s-charter-by-age-group-of-brides-annual/resources/marriages-under-the-womens-charter-2016-07-18T02-21-10Z.csv',
'8ffad4bb-c2ed-4ba0-96c8-cff3e221d380',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': "Marriages under the Women's Charter",
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'No. of Marriages',
'type': 'numeric',
'unit_of_measure': 'No. of Marriages'}],
'CSV'),
('https://storage.data.gov.sg/marriages-under-the-women-s-charter-by-age-group-of-brides-annual/resources/marriages-under-the-womens-charter-by-age-group-of-brides-2016-07-18T02-21-13Z.csv',
'7fdff042-86ed-4e87-a0b8-f133e2d3e098',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': "Marriages Under the Women's Charter by Age Group of Brides",
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'No. of Marriages',
'type': 'numeric',
'unit_of_measure': 'No. of Marriages'}],
'CSV'),
('https://storage.data.gov.sg/marriages-under-the-women-s-charter-by-age-group-of-grooms-annual/resources/marriages-under-the-womens-charter-2016-07-18T02-17-44Z.csv',
'a35a29dd-0cb8-45bb-b7f5-1e22f3fc01fa',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'No. of Marriages',
'type': 'numeric',
'unit_of_measure': 'No. of Marriages'}],
'CSV'),
('https://storage.data.gov.sg/marriages-under-the-women-s-charter-by-age-group-of-grooms-annual/resources/marriages-under-the-womens-charter-by-age-group-of-grooms-2016-07-18T02-17-46Z.csv',
'e5e2a1f7-083c-41c0-95e1-bf24ac36c7e4',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Age Group of Grooms',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'No. of Marriages',
'type': 'numeric',
'unit_of_measure': 'No. of Marriages'}],
'CSV'),
('https://storage.data.gov.sg/marriages-under-the-women-s-charter-by-educational-qualification-of-brides-and-grooms-annual/resources/marriages-under-the-womens-charter-by-educational-qualification-of-brides-2016-08-03T04-24-12Z.csv',
'01b30965-fd49-41d5-9354-3085350ff6a6',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Educational Qualification of Brides (Broad Categories)',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'No. of Marriages',
'type': 'numeric',
'unit_of_measure': 'No. of Marriages'}],
'CSV'),
('https://storage.data.gov.sg/marriages-under-the-women-s-charter-by-educational-qualification-of-brides-and-grooms-annual/resources/marriages-under-the-womens-charter-by-educational-qualification-of-brides-and-grooms-2016-08-03T04-24-14Z.csv',
'8a448edd-bc08-42c4-a8c4-33ecdc2398d1',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Educational Qualification of Brides (Broad Categories)',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Educational Qualification of Grooms (Broad Categories)',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'No. of Marriages',
'type': 'numeric',
'unit_of_measure': 'No. of Marriages'}],
'CSV'),
('https://storage.data.gov.sg/marriages-under-the-women-s-charter-by-ethnic-group-and-age-group-of-grooms-and-brides-annual/resources/marriages-under-the-womens-charter-by-ethnic-group-of-grooms-and-brides-2016-08-03T02-46-45Z.csv',
'63ebbd09-439d-46e0-b5fa-8c404152cc5a',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Ethnic Group of Grooms and Brides',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'No. of Marriages',
'type': 'numeric',
'unit_of_measure': 'No. of Marriages'}],
'CSV'),
('https://storage.data.gov.sg/marriages-under-the-women-s-charter-by-ethnic-group-and-age-group-of-grooms-and-brides-annual/resources/marriages-under-the-womens-charter-by-ethnic-group-and-age-group-of-grooms-and-brides-2016-08-03T02-46-50Z.csv',
'c1ae8336-14fe-487f-a2bd-3d2057d905a7',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Ethnic Group of Grooms and Brides',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Age Group of Grooms and Brides',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'No. of Marriages',
'type': 'numeric',
'unit_of_measure': 'No. of Marriages'}],
'CSV'),
('https://storage.data.gov.sg/marriages-under-the-women-s-charter-by-ethnic-group-and-previous-marital-status-of-couple-annual/resources/marriages-under-the-womens-charter-by-ethnic-group-of-couple-2016-08-03T02-15-06Z.csv',
'17ee19b7-752d-4444-b8bd-e9cd2eb4246b',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Ethnic Group of Couple',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'No. of Marriages',
'type': 'numeric',
'unit_of_measure': 'No. of Marriages'}],
'CSV'),
('https://storage.data.gov.sg/marriages-under-the-women-s-charter-by-ethnic-group-and-previous-marital-status-of-couple-annual/resources/marriages-under-the-womens-charter-by-ethnic-group-and-previous-marital-status-of-couple-2016-08-03T02-15-13Z.csv',
'c36616c7-01df-46f3-a6b2-84fa98405dd4',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Ethnic Group of Couple',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Previous Marital Status of Couple',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'No. of Marriages',
'type': 'numeric',
'unit_of_measure': 'No. of Marriages'}],
'CSV'),
('https://storage.data.gov.sg/marriages-under-the-women-s-charter-by-previous-marital-status-and-age-group-of-brides-annual/resources/marriages-under-the-womens-charter-by-previous-marital-status-of-brides-2016-08-03T03-04-40Z.csv',
'99de4c2d-4bd1-4aed-800b-1122b728cb23',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Previous Marital Status',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'No. of Marriages',
'type': 'numeric',
'unit_of_measure': 'No. of Marriages'}],
'CSV'),
('https://storage.data.gov.sg/marriages-under-the-women-s-charter-by-previous-marital-status-and-age-group-of-brides-annual/resources/marriages-under-the-womens-charter-by-previous-marital-status-and-age-group-of-brides-2016-08-03T03-04-43Z.csv',
'dd8524e7-429e-4b19-9801-e482755817f1',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Previous Marital Status',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Age Group',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'No. of Marriages',
'type': 'numeric',
'unit_of_measure': 'No. of Marriages'}],
'CSV'),
('https://storage.data.gov.sg/marriages-under-the-women-s-charter-by-previous-marital-status-and-age-group-of-grooms-annual/resources/marriages-under-the-womens-charter-by-previous-marital-status-of-grooms-2016-08-03T02-57-28Z.csv',
'121ce354-3e54-463d-a662-87bb911a9b86',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Previous Marital Status',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'No. of Marriages',
'type': 'numeric',
'unit_of_measure': 'No. of Marriages'}],
'CSV'),
('https://storage.data.gov.sg/marriages-under-the-women-s-charter-by-previous-marital-status-and-age-group-of-grooms-annual/resources/marriages-under-the-womens-charter-by-previous-marital-status-and-age-group-of-grooms-2016-08-03T02-57-30Z.csv',
'1f3f0fad-3c0a-4199-9fd7-26f5c6387db3',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Previous Marital Status',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Age Group',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'No. of Marriages',
'type': 'numeric',
'unit_of_measure': 'No. of Marriages'}],
'CSV'),
('https://storage.data.gov.sg/marriages-under-the-women-s-charter-by-religion-of-brides-and-grooms-annual/resources/marriages-under-the-womens-charter-by-religion-of-brides-2016-08-03T04-44-10Z.csv',
'6255e11a-7a37-4289-b324-6042d38150da',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Religion of Brides',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'No. of Marriages',
'type': 'numeric',
'unit_of_measure': 'No. of Marriages'}],
'CSV'),
('https://storage.data.gov.sg/marriages-under-the-women-s-charter-by-religion-of-brides-and-grooms-annual/resources/marriages-under-the-womens-charter-by-religion-of-brides-and-grooms-2016-08-03T04-44-12Z.csv',
'0b1e799e-cd30-4dd3-a0d3-6913761d37c9',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Religion of Brides',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Religion of Grooms',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'No. of Marriages',
'type': 'numeric',
'unit_of_measure': 'No. of Marriages'}],
'CSV'),
('https://storage.data.gov.sg/marriages-under-women-s-charter-age-group-educational-qualification-grooms-brides-annual/resources/marriages-under-the-womens-charter-by-age-group-of-grooms-and-brides-2016-08-03T03-42-56Z.csv',
'8c0204a8-7da2-44a2-89fb-814facaec4d2',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Age Group of Grooms and Brides',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'No. of Marriages',
'type': 'numeric',
'unit_of_measure': 'No. of Marriages'}],
'CSV'),
('https://storage.data.gov.sg/marriages-under-women-s-charter-age-group-educational-qualification-grooms-brides-annual/resources/marriages-under-the-womens-charter-by-age-grp-and-edu-qualification-of-grooms-and-brides-2016-08-03T03-43-00Z.csv',
'eadfe593-b3e0-49d6-8337-aa50b441f3d0',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Age Group of Grooms and Brides',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Educational Qualification of Grooms and Brides (Broad Categories)',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'No. of Marriages',
'type': 'numeric',
'unit_of_measure': 'No. of Marriages'}],
'CSV'),
('https://storage.data.gov.sg/marriages-under-women-s-charter-age-group-educational-qualification-grooms-brides-annual/resources/civil-marriages-by-age-group-edu-qualification-of-non-university-graduate-grooms-brides-2016-08-03T03-43-04Z.csv',
'a026b5a8-07aa-46c6-b1bd-2498a9c04d01',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Age Group of Grooms and Brides',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Educational Qualification of Grooms and Brides (Broad Categories)',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Educational Qualification of Grooms and Brides (Detailed Categories)',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'value',
'sub_type': 'general',
'title': 'No. of Marriages',
'type': 'numeric',
'unit_of_measure': 'No. of Marriages'}],
'CSV'),
('https://storage.data.gov.sg/marriages-under-women-s-charter-age-group-educational-qualification-resident-grooms-brides-annual/resources/marriages-under-the-womens-charter-by-age-group-of-resident-grooms-brides-2016-08-03T04-57-27Z.csv',
'1c7a1799-3b65-41c7-a308-e0ae44d2260b',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Age Group of Grooms and Brides',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'No. of Marriages',
'type': 'numeric',
'unit_of_measure': 'No. of Marriages'}],
'CSV'),
('https://storage.data.gov.sg/marriages-under-women-s-charter-age-group-educational-qualification-resident-grooms-brides-annual/resources/marriages-under-the-womens-charter-by-age-grp-and-edu-qual-of-resident-grooms-brides-2016-08-03T04-57-30Z.csv',
'55f13370-e708-4efb-8e9b-55b13516ccba',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Age Group of Grooms and Brides',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Educational Qualification of Grooms and Brides (Broad Categories)',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'No. of Marriages',
'type': 'numeric',
'unit_of_measure': 'No. of Marriages'}],
'CSV'),
('https://storage.data.gov.sg/marriages-under-women-s-charter-age-group-educational-qualification-resident-grooms-brides-annual/resources/civil-marriages-by-age-group-edu-qual-of-non-university-graduate-resident-grooms-brides-2016-08-03T04-57-33Z.csv',
'a4d2b878-2eef-4086-94e2-b5f8ff1aa77b',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Age Group of Grooms and Brides',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Educational Qualification of Grooms and Brides (Broad Categories)',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Educational Qualification of Grooms and Brides (Detailed Categories)',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'value',
'sub_type': 'general',
'title': 'No. of Marriages',
'type': 'numeric',
'unit_of_measure': 'No. of Marriages'}],
'CSV'),
('https://storage.data.gov.sg/mean-years-of-schooling-annual/resources/mean-years-of-schooling-annual-2017-05-26T16-51-05Z.csv',
'a06a79bf-dfc1-4057-a0ef-ea850655f471',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Description',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Mean Years Of Schooling',
'type': 'numeric',
'unit_of_measure': 'No. of Years'}],
'CSV'),
('https://storage.data.gov.sg/mean-years-of-schooling-annual/resources/mean-years-of-schooling-by-sex-annual-2017-05-26T16-51-09Z.csv',
'd1126283-b351-4e36-9091-45dbeaf32b74',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Description',
'type': 'text'},
{'name': 'level_2', 'sub_type': 'general', 'title': 'Sex', 'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Mean Years Of Schooling',
'type': 'numeric',
'unit_of_measure': 'No. of Years'}],
'CSV'),
('https://storage.data.gov.sg/med-age-at-first-marriage-of-grooms-and-brides-married-under-the-womens-charter-by-edu-qual/resources/median-age-at-first-marriage-of-grooms-and-brides-married-under-the-womens-charter-2017-01-05T09-52-32Z.csv',
'f628333e-00b1-4e21-bfe7-845570fa052d',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Type of Spouse',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Median Age',
'type': 'numeric',
'unit_of_measure': 'Number of Years'}],
'CSV'),
('https://storage.data.gov.sg/med-age-at-first-marriage-of-grooms-and-brides-married-under-the-womens-charter-by-edu-qual/resources/median-age-at-first-marriage-of-grooms-and-brides-married-under-the-wc-by-educ-qual-2017-01-05T09-52-33Z.csv',
'e82907b0-4b80-44aa-b98f-d8267914a51e',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Type of Spouse',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'High Qualification Attained',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Median Age',
'type': 'numeric',
'unit_of_measure': 'Number of Years'}],
'CSV'),
('https://storage.data.gov.sg/median-age-at-first-marriage-married-under-the-admin-of-muslim-law-act-by-spouse-edu-qual-annual/resources/median-age-at-first-marriage-married-under-the-administration-of-muslim-law-act-annual-2017-01-05T09-26-53Z.csv',
'50502bdb-7ed3-40fd-b731-dd31f96be2a5',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Type of Spouse',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Median Age',
'type': 'numeric',
'unit_of_measure': 'Number of Years'}],
'CSV'),
('https://storage.data.gov.sg/median-age-at-first-marriage-married-under-the-admin-of-muslim-law-act-by-spouse-edu-qual-annual/resources/median-age-at-first-marriage-of-grooms-and-brides-married-under-the-amla-by-educ-qual-2017-01-05T09-26-54Z.csv',
'857e1467-445a-4375-908f-7ae5598ddcef',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Type of Spouse',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Highest Qualification Attained',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Median Age',
'type': 'numeric',
'unit_of_measure': 'Number of Years'}],
'CSV'),
('https://storage.data.gov.sg/median-age-grooms-brides-married-under-administration-muslim-law-act-marriage-order-annual/resources/median-age-of-grooms-and-brides-under-the-admin-of-muslim-law-act-by-marriage-order-2016-08-03T05-37-11Z.csv',
'5ac1eec1-90cd-4ca3-9cb0-b333ff86184c',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Marriage Order',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Median Age of Grooms and Brides',
'type': 'numeric',
'unit_of_measure': 'No. of Years'}],
'CSV'),
('https://storage.data.gov.sg/median-age-of-brides-by-ethnic-group-annual/resources/median-age-of-brides-by-ethnic-group-annual-2016-08-03T01-54-25Z.csv',
'4e4953bd-7b6c-4195-9724-2e44e57f431b',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Ethnic Group',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Median Age of Brides',
'type': 'numeric',
'unit_of_measure': 'No. of Years'}],
'CSV'),
('https://storage.data.gov.sg/median-age-of-brides-married-under-the-administration-of-muslim-law-act-by-ethnic-group-annual/resources/median-age-of-brides-married-under-the-administration-of-muslim-law-act-by-ethnic-group-2016-08-03T05-43-14Z.csv',
'5bcf4ee1-9e3b-4824-81ef-00dcc12f16c0',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Ethnic Group',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Median Age of Brides',
'type': 'numeric',
'unit_of_measure': 'No. of Years'}],
'CSV'),
('https://storage.data.gov.sg/median-age-of-brides-married-under-the-women-s-charter-by-ethnic-group-annual/resources/median-age-of-brides-married-under-the-womens-charter-by-ethnic-group-2016-08-03T02-05-45Z.csv',
'922b091f-dbc6-4062-b615-1b65cde23ae1',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Ethnic Group',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'value',
'sub_type': 'general',
'title': 'Median Age of Brides',
'type': 'numeric',
'unit_of_measure': 'No. of Years'}],
'CSV'),
('https://storage.data.gov.sg/median-age-of-female-divorcees-under-the-administration-of-muslim-law-act-by-ethnic-group-annual/resources/median-age-of-female-divorcees-under-the-administration-of-muslim-law-act-by-ethnic-group-2016-08-04T02-35-33Z.csv',
'e3c4a11e-5045-4689-82bc-5b58eda3d115',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Ethnic Group',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Median Age of Female Divorcee',
'type': 'numeric',
'unit_of_measure': 'No. of Years'}],
'CSV'),
('https://storage.data.gov.sg/median-age-of-female-divorcees-under-the-women-s-charter-by-ethnic-group-annual/resources/median-age-of-female-divorcees-under-the-womens-charter-by-ethnic-group-2016-08-04T00-56-20Z.csv',
'c29c4134-68a4-4042-afd5-0a9bf05cbc5a',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Ethnic Group',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Median Age of Female Divorcee',
'type': 'numeric',
'unit_of_measure': 'No. of Years'}],
'CSV'),
('https://storage.data.gov.sg/median-age-of-grooms-and-brides-by-marriage-order-annual/resources/median-age-of-grooms-and-brides-by-marriage-order-2016-08-03T01-47-11Z.csv',
'f0cf2243-390d-4225-812a-262befc71293',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Marriage Order of Grooms/Brides',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'No. of Marrriages',
'type': 'numeric',
'unit_of_measure': 'No. of Marrriages'}],
'CSV'),
('https://storage.data.gov.sg/median-age-of-grooms-and-brides-married-under-the-women-s-charter-by-marriage-order-annual/resources/median-age-of-grooms-and-brides-married-under-the-womens-charter-by-marriage-order-2016-08-03T01-58-29Z.csv',
'c7a8f439-ce5c-419a-8c74-1d98eba1ffe5',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Marriage Order of Grooms and Brides',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Median Age of Grooms and Brides',
'type': 'numeric',
'unit_of_measure': 'No. of Years'}],
'CSV'),
('https://storage.data.gov.sg/median-age-of-grooms-by-ethnic-group-annual/resources/median-age-of-grooms-by-ethnic-group-2016-08-03T01-51-04Z.csv',
'dac05c51-b716-48c9-9510-85caa93692f4',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Ethnic Group',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Median Age of Grooms',
'type': 'numeric',
'unit_of_measure': 'No. of Years'}],
'CSV'),
('https://storage.data.gov.sg/median-age-of-grooms-married-under-the-administration-of-muslim-law-act-by-ethnic-group-annual/resources/median-age-of-grooms-married-under-the-administration-of-muslim-law-act-by-ethnic-group-2016-08-03T05-40-30Z.csv',
'ddfa81a3-d02a-4bcf-9005-764a2ad06ea9',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Ethnic Group',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Median Age of Grooms',
'type': 'numeric',
'unit_of_measure': 'No. of Years'}],
'CSV'),
('https://storage.data.gov.sg/median-age-of-grooms-married-under-the-women-s-charter-by-ethnic-group-annual/resources/median-age-of-grooms-married-under-the-womens-charter-by-ethnic-group-2016-08-03T02-02-53Z.csv',
'14035205-f9e6-4c00-b39f-689add4bc19d',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Ethnic Group',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'value',
'sub_type': 'general',
'title': 'Median Age of Grooms',
'type': 'numeric',
'unit_of_measure': 'No. of Years'}],
'CSV'),
('https://storage.data.gov.sg/median-age-of-male-divorcees-under-the-administration-of-muslim-law-act-by-ethnic-group-annual/resources/median-age-of-male-divorcees-under-the-administration-of-muslim-law-act-by-ethnic-group-2016-08-04T02-32-08Z.csv',
'314027ba-a715-4f1e-9c93-abec388b085e',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Ethnic Group',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Median Age of Male Divorcees',
'type': 'numeric',
'unit_of_measure': 'No. of Years'}],
'CSV'),
('https://storage.data.gov.sg/median-age-of-male-divorcees-under-the-women-s-charter-by-ethnic-group-annual/resources/median-age-of-male-divorcees-under-the-womens-charter-by-ethnic-group-2016-08-04T00-51-54Z.csv',
'22ee2d8e-d97b-4605-bf30-5b3f7ba3d186',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Ethnic Group',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Median Age of Male Divorcees',
'type': 'numeric',
'unit_of_measure': 'No. of Years'}],
'CSV'),
('https://storage.data.gov.sg/median-rentals-and-vacancy-of-office-space/resources/median-rentals-and-vacancy-of-office-space-by-category-quarterly-2016-09-14T09-13-42Z.csv',
'ce569675-17a9-447f-9477-db9a4ef02633',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'description': ['Category 1 Office Buildings: Category 1 office buildings are defined as those located in core business areas in Downtown Core and Orchard Planning Area which are relatively modern or recently refurbished, command relatively high rentals and have large floor plate size and gross floor area. ',
'',
'Category 2 Office Buildings: These are the remaining office buildings which are not included in Category 1 office buildings. '],
'name': 'category',
'sub_type': 'general',
'title': 'Category',
'type': 'text'},
{'name': 'office_med_rental_lc',
'sub_type': 'general',
'title': 'Median Rentals Based on Lease Commencement',
'type': 'numeric',
'unit_of_measure': '$ psf pm'},
{'name': 'office_med_rental_cd',
'sub_type': 'general',
'title': 'Median Rentals Based on Contract Date',
'type': 'numeric',
'unit_of_measure': '$ psf pm'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'office_vancancy_rate',
'sub_type': 'percentage',
'title': 'Office Vacancy rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/median-rentals-and-vacancy-of-retail-space/resources/median-rentals-and-vacancy-of-retail-space-by-locality-quarterly-2016-09-15T08-10-15Z.csv',
'2d201915-f5cb-401c-8ed4-2171af9f3403',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'locality',
'sub_type': 'general',
'title': 'Locality',
'type': 'text'},
{'name': 'ret_med_rent_lease_cm',
'sub_type': 'general',
'title': 'Median Rentals Based on Lease Commencement',
'type': 'numeric',
'unit_of_measure': '$ psf pm'},
{'name': 'ret_med_rent_cont_date',
'sub_type': 'general',
'title': 'Median Rentals Based on Contract Date',
'type': 'numeric',
'unit_of_measure': '$ psf pm '},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'ret_vacancy_rate',
'sub_type': 'percentage',
'title': 'Retail Vacancy Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/median-resale-prices-for-registered-applications-by-town-and-flat-type/resources/median-resale-prices-for-registered-applications-by-town-and-flat-type-2017-05-15T07-06-41Z.csv',
'a5ddfc4d-0e43-4bfe-8f51-e504e1365e27',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'town', 'sub_type': 'general', 'title': 'Town', 'type': 'text'},
{'name': 'flat_type',
'sub_type': 'general',
'title': 'Flat type',
'type': 'text'},
{'description': ['"na" : Data not available or not applicable',
'"-" : Data is negligible or not significant'],
'name': 'price',
'sub_type': 'general',
'title': 'Price',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/median-subletting-rent-by-town-and-flat-type/resources/median-subletting-rental-by-town-and-flat-type-2017-06-06T03-36-08Z.csv',
'6b1ec2ff-7c38-4ce9-9bbb-af865b4d78cb',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'town', 'sub_type': 'general', 'title': 'Town', 'type': 'text'},
{'name': 'flat_type',
'sub_type': 'general',
'title': 'Flat Type',
'type': 'text'},
{'description': ['"na" : No transactions',
'"-" : Less than 20 transactions'],
'name': 'median_subletting_rents',
'sub_type': 'general',
'title': 'Median Subletting Rents',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/medical-examinations-conducted-for-students-by-age-group/resources/medical-examinations-conducted-for-students-by-age-group-annual-2017-02-27T01-14-58Z.csv',
'0ae7192f-ce81-4ac9-a63b-99f2116a795a',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'age_group',
'sub_type': 'general',
'title': 'Age Group',
'type': 'text'},
{'name': 'no_of_students_examined',
'sub_type': 'general',
'title': 'No of students examined',
'type': 'numeric',
'unit_of_measure': 'Thousands'}],
'CSV'),
('https://storage.data.gov.sg/medical-examinations-conducted-for-students-by-age-group/resources/medical-examinations-conducted-for-students-annual-2017-02-21T02-53-43Z.csv',
'692dce1e-a966-4ece-8c98-3c3df5a0e812',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'no_of_students_examined',
'sub_type': 'general',
'title': 'No of students examined',
'type': 'numeric',
'unit_of_measure': 'Thousands'}],
'CSV'),
('https://storage.data.gov.sg/medical-research-grants-committed-under-the-national-medical-research-council/resources/medical-research-grants-committed-under-the-national-medical-research-council-2017-03-28T08-32-03Z.csv',
'6a6b4cbd-0d78-40ff-8173-00f6071aac7e',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial year',
'type': 'datetime'},
{'name': 'amount',
'sub_type': 'general',
'title': 'Amount Committed',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/medical-research-grants-committed-under-the-national-medical-research-council/resources/breakdown-of-medical-research-grants-committed-before-fy14-2017-04-03T07-49-57Z.csv',
'4f5caa85-875e-4060-ad51-fd5e2fb31603',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial year',
'type': 'datetime'},
{'name': 'category',
'sub_type': 'general',
'title': 'Category',
'type': 'text'},
{'description': ['Percentage of medical research grants committed',
'Percentages are expressed as a value over 100, i.e. "100" represents 100%'],
'name': 'percentage',
'sub_type': 'percentage',
'title': 'Percentage',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/medical-research-grants-committed-under-the-national-medical-research-council/resources/breakdown-of-medical-research-grants-committed-from-fy14-2017-04-03T07-50-53Z.csv',
'b68b095c-aa83-45a2-9569-a30fdeea51d4',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial year',
'type': 'datetime'},
{'name': 'category',
'sub_type': 'general',
'title': 'Category',
'type': 'text'},
{'description': ['Percentage of medical research grants committed ',
'Percentages are expressed as a value over 100, i.e. "100" represents 100%'],
'name': 'percentage',
'sub_type': 'percentage',
'title': 'Percentage',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/medifund/resources/medifund-applications-and-grants-disbursed-annual-2016-07-07T02-38-08Z.csv',
'ef495a5a-b26d-41b9-87d8-141ebd8a45f8',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial year',
'type': 'datetime'},
{'description': 'Number of Medifund Applications Approved, rounded off to the nearest thousand',
'name': 'applications_approved',
'sub_type': 'general',
'title': 'Applications approved',
'type': 'numeric',
'unit_of_measure': 'No. of Applications'},
{'description': 'Grants Disbursed to Institutions in millions of dollars',
'name': 'grants_disbursed',
'sub_type': 'general',
'title': 'Grants disbursed',
'type': 'numeric',
'unit_of_measure': '$ million'}],
'CSV'),
('https://storage.data.gov.sg/medisave-accounts-and-balances-annual/resources/medisave-accounts-and-balances-annual-2016-07-07T02-04-52Z.csv',
'f17cb073-d086-4435-b3a7-b430e593433e',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'description': 'Number of Medisave Accounts, rounded off to the nearest hundred thousand',
'name': 'no_of_accounts',
'sub_type': 'general',
'title': 'No of Accounts',
'type': 'numeric',
'unit_of_measure': 'Accounts'},
{'description': 'Total Medisave balances',
'name': 'total_balance',
'sub_type': 'general',
'title': 'Total Balance',
'type': 'numeric',
'unit_of_measure': 'S$ Billion'},
{'description': 'Average Balance per Account',
'name': 'average_balance',
'sub_type': 'general',
'title': 'Average Balance ',
'type': 'numeric',
'unit_of_measure': 'S$'},
{'description': 'Amount Withdrawn For Direct Medical Expenses',
'name': 'amount_withdrawn',
'sub_type': 'general',
'title': 'Amount Withdrawn',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/medishield-and-integrated-shield-plans/resources/number-of-policyholders-for-medishield-and-integrated-shield-plans-annual-2016-07-07T02-28-21Z.csv',
'dfd1bf2a-4277-4cc3-8ece-483531c730f0',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'description': 'Number of MediShield Policyholders, rounded off to the nearest thousand',
'name': 'policyholders',
'sub_type': 'general',
'title': 'Policyholders',
'type': 'numeric',
'unit_of_measure': 'No. of Policyholders'},
{'description': 'Number of MediShield Policyholders with Private Integrated Shield Plans, rounded off to the nearest thousand',
'name': 'policyholders_with_private_plans',
'sub_type': 'general',
'title': 'Policyholders with Private Plans',
'type': 'numeric',
'unit_of_measure': 'No. of Policyholders'}],
'CSV'),
('https://storage.data.gov.sg/membership-of-employees-trade-unions-by-industry/resources/total-membership-of-employees-trade-unions-2016-06-23T07-53-05Z.csv',
'd8fdf3de-37b0-421b-9451-3cdbe54b414d',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'no_of_members',
'sub_type': 'general',
'title': 'No. of Members',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/membership-of-employees-trade-unions-by-industry/resources/membership-of-employees-trade-unions-by-industry-2016-06-23T03-38-55Z.csv',
'3368e329-b1c8-4472-b336-3c374247ec2f',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'industry',
'sub_type': 'general',
'title': 'Industry',
'type': 'text'},
{'name': 'no_of_members',
'sub_type': 'general',
'title': 'No of Members',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/membership-of-employees-trade-unions-by-membership-size/resources/total-employees-trade-union-membership-2016-06-24T07-57-52Z.csv',
'8f4c4624-8e0b-47cf-a1dc-b6bf9da85af3',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'no_of_members',
'sub_type': 'general',
'title': 'No. of Members',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/membership-of-employees-trade-unions-by-membership-size/resources/membership-of-employees-trade-unions-by-membership-size-2016-06-23T03-26-09Z.csv',
'ff96bbdd-e58e-4ab7-a78a-938fa87aab6a',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'size_of_trade_union',
'sub_type': 'general',
'title': 'Size of Trade Union',
'type': 'text'},
{'name': 'no_of_members',
'sub_type': 'general',
'title': 'No. of Members',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/membership-of-employers-trade-unions-by-membership-size/resources/total-membership-of-employers-trade-unions-2016-06-23T07-00-52Z.csv',
'faa37766-d7ca-4eb4-a298-01708c9bc993',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'no_of_members',
'sub_type': 'general',
'title': 'No. of Members',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/membership-of-employers-trade-unions-by-membership-size/resources/membership-of-employers-trade-unions-by-membership-size-2016-06-23T06-56-08Z.csv',
'dccbfea7-abca-4a29-9d63-93178bb7343a',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'size_of_trade_union',
'sub_type': 'general',
'title': 'Size of Trade Union',
'type': 'text'},
{'name': 'no_of_members',
'sub_type': 'general',
'title': 'No. of Members',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/mental-well-being-survey/resources/mental-well-being-survey-2016-07-13T06-06-01Z.csv',
'90fd42fd-7e58-48aa-8c7b-10a8ebe7bda2',
[{'description': 'Year the survey was conducted',
'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'description': 'Minimum of 1 and maximum of 9',
'name': 'mean_score',
'sub_type': 'general',
'title': 'Mean score',
'type': 'numeric',
'unit_of_measure': 'Score'},
{'description': 'Minimum of 1 and maximum of 9',
'name': 'social_intelligence',
'sub_type': 'general',
'title': 'Social intelligence',
'type': 'numeric',
'unit_of_measure': 'Score'},
{'description': 'Minimum of 1 and maximum of 9',
'name': 'cognitive_efficacy',
'sub_type': 'general',
'title': 'Cognitive efficacy',
'type': 'numeric',
'unit_of_measure': 'Score'},
{'description': 'Minimum of 1 and maximum of 9',
'name': 'self_esteem',
'sub_type': 'general',
'title': 'Self esteem',
'type': 'numeric',
'unit_of_measure': 'Score'},
{'description': 'Minimum of 1 and maximum of 9',
'name': 'emotional_intelligence',
'sub_type': 'general',
'title': 'Emotional intelligence',
'type': 'numeric',
'unit_of_measure': 'Score'},
{'description': 'Minimum of 1 and maximum of 9',
'name': 'resilience',
'sub_type': 'general',
'title': 'Resilience',
'type': 'numeric',
'unit_of_measure': 'Score'}],
'CSV'),
('https://storage.data.gov.sg/merchandise-trade-by-commodity-section-at-2012-prices-monthly-sa/resources/merchandise-trade-by-trade-type-at-2012-prices-monthly-sa-2017-05-26T16-51-42Z.csv',
'c15dabab-2c0c-4fe0-984a-185515b4f31b',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Merchandise Trade',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'}],
'CSV'),
('https://storage.data.gov.sg/merchandise-trade-by-commodity-section-at-2012-prices-monthly-sa/resources/merchandise-trade-by-component-at-2012-prices-monthly-sa-2017-05-26T16-52-04Z.csv',
'929c2b25-c42e-4c85-b9f1-d16a493e6388',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Component',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Merchandise Trade',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'}],
'CSV'),
('https://storage.data.gov.sg/merchandise-trade-by-commodity-section-at-current-prices-monthly-sa/resources/merchandise-trade-by-trade-type-at-current-prices-monthly-sa-2017-05-26T16-52-20Z.csv',
'1672a467-2e06-44b6-b79d-9b7559ae5999',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'value',
'sub_type': 'general',
'title': 'Merchandise Trade',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'}],
'CSV'),
('https://storage.data.gov.sg/merchandise-trade-by-commodity-section-at-current-prices-monthly-sa/resources/merchandise-trade-by-component-at-current-prices-monthly-sa-2017-05-26T16-52-36Z.csv',
'a0b68f3f-0705-4d6b-9940-8365d7d8eddd',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Component',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'value',
'sub_type': 'general',
'title': 'Merchandise Trade',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'}],
'CSV'),
('https://storage.data.gov.sg/mobile-data-usage/resources/mobile-data-usage-2017-03-22T09-04-40Z.csv',
'a807b7ab-6cad-4aa6-87d0-e283a7353a0f',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'volume_of_mobile_data',
'sub_type': 'general',
'title': 'Volume Of Mobile Data',
'type': 'numeric',
'unit_of_measure': 'Petabytes'}],
'CSV'),
('https://storage.data.gov.sg/mobile-penetration-rate/resources/mobile-penetration-rate-2017-03-22T09-15-02Z.csv',
'26e9766b-a42d-468c-9c25-88d89b850823',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'mobile_penetration_rate',
'sub_type': 'percentage',
'title': 'Mobile Penetration Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/monthly-age-distribution-of-motor-vehicles/resources/age-distribution-of-motor-vehicles-2017-05-03T07-38-45Z.csv',
'd0b4d3f8-fc65-4350-b4d1-05c233ff612f',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'type', 'sub_type': 'general', 'title': 'Type', 'type': 'text'},
{'name': 'age', 'sub_type': 'general', 'title': 'Age', 'type': 'text'},
{'name': 'number',
'sub_type': 'general',
'title': 'No. of Vehicles',
'type': 'numeric',
'unit_of_measure': 'No. of Vehicles'}],
'CSV'),
('https://storage.data.gov.sg/monthly-concession-passes/resources/monthly-concession-passes-effective-from-30-december-2016-2016-04-28T03-12-48Z.csv',
'a9e3c103-8310-41c0-abbf-c4e1adb35aa4',
[{'name': 'cardholders',
'sub_type': 'general',
'title': 'Cardholders',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'bus_price',
'sub_type': 'general',
'title': 'Bus Price',
'type': 'numeric',
'unit_of_measure': '$'},
{'description': '"na" : Data not available or not applicable',
'name': 'train_price',
'sub_type': 'general',
'title': 'Train Price',
'type': 'numeric',
'unit_of_measure': '$'},
{'name': 'hybrid_price',
'sub_type': 'general',
'title': 'Hybrid Price',
'type': 'numeric',
'unit_of_measure': '$'}],
'CSV'),
('https://storage.data.gov.sg/monthly-de-registered-motor-vehicles-under-vehicle-quota-system-vqs/resources/motor-vehicles-de-registered-under-vehicle-quota-system-vqs-2017-06-13T00-34-56Z.csv',
'2060cfeb-83a7-48f5-96ac-367823032cdb',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'category',
'sub_type': 'general',
'title': 'Category',
'type': 'text'},
{'name': 'number',
'sub_type': 'general',
'title': 'No. of Vehicles',
'type': 'numeric',
'unit_of_measure': 'No. of Vehicles'}],
'CSV'),
('https://data.gov.sg/dataset/83ab3165-7c16-4402-bc61-fc85c0c2f73b/resource/0eb678c7-5f52-44c6-bb1b-d9b999423035/download/effective-transfer-of-car-ownership-by-make.csv',
'0eb678c7-5f52-44c6-bb1b-d9b999423035',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'make', 'sub_type': 'general', 'title': 'Make', 'type': 'text'},
{'name': 'number',
'sub_type': 'general',
'title': 'No. of Transfers',
'type': 'numeric',
'unit_of_measure': 'No. of Transfers'}],
'CSV'),
('https://storage.data.gov.sg/monthly-electricity-consumption-by-sector-total/resources/monthly-electricity-consumption-by-sector-total-2016-02-19T05-51-51Z.csv',
'f7445bb7-74cc-4b45-ab1b-e8295d1bf4a6',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'sector',
'sub_type': 'general',
'title': 'Sector',
'type': 'text'},
{'name': 'electricity_consumption',
'sub_type': 'general',
'title': 'Electricity Consumption',
'type': 'numeric',
'unit_of_measure': 'GWh'}],
'CSV'),
('https://storage.data.gov.sg/monthly-fuel-mix-for-electricity-generation/resources/fuel-mix-for-electricity-generation-monthly-2016-02-19T06-02-39Z.csv',
'b0dcb340-0a77-465f-a375-fc525cf12f3a',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'energy_product',
'sub_type': 'general',
'title': 'Energy Product',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'fuel_mix',
'sub_type': 'percentage',
'title': 'Fuel Mix',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/monthly-interest-for-cpf-members/resources/monthly-interest-for-cpf-members-2017-06-14T07-16-09Z.csv',
'5b2dfb3a-01a5-47fe-9a76-97e9451de040',
[{'format': 'YYYY-MM',
'name': 'mth',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'description': 'Figures are rounded to the nearest hundred thousand dollars.',
'name': 'interest_amt',
'sub_type': 'general',
'title': 'Interest amount',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/monthly-motor-vehicle-population-by-type/resources/monthly-motor-vehicle-population-by-vehicle-type-2017-05-03T07-44-06Z.csv',
'030242d7-b307-485a-8311-c19ad896dcb0',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'vehicle_type',
'sub_type': 'general',
'title': 'Vehicle Type',
'type': 'text'},
{'name': 'number',
'sub_type': 'general',
'title': 'No. of Vehicles',
'type': 'numeric',
'unit_of_measure': 'No. of Vehicles'}],
'CSV'),
('https://storage.data.gov.sg/monthly-motor-vehicle-population-by-type-of-fuel-used/resources/motor-vehicle-population-statistics-by-type-of-fuel-used-2017-05-03T07-45-41Z.csv',
'56c8d9af-5bf5-49a1-91ce-1ed4b4b191f3',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'category',
'sub_type': 'general',
'title': 'Vehicle Category',
'type': 'text'},
{'name': 'type',
'sub_type': 'general',
'title': 'Fuel Type',
'type': 'text'},
{'name': 'number',
'sub_type': 'general',
'title': 'Number',
'type': 'numeric',
'unit_of_measure': 'No. of Vehicles'}],
'CSV'),
('https://storage.data.gov.sg/monthly-motor-vehicle-population-by-vehicle-quota-category/resources/motor-vehicle-population-under-vehicle-quota-system-2017-05-03T07-41-04Z.csv',
'31b9aa99-c8ff-4e5c-9568-bdf3c6863bef',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'category',
'sub_type': 'general',
'title': 'Category',
'type': 'text'},
{'name': 'number',
'sub_type': 'general',
'title': 'No. of Vehicles',
'type': 'numeric',
'unit_of_measure': 'No. of Vehicles'}],
'CSV'),
('https://storage.data.gov.sg/monthly-new-registration-of-motorcycles-by-make/resources/new-registration-of-motocycles-by-make-2017-06-13T00-42-17Z.csv',
'94aba21d-b7b5-40ec-b6ab-2dde780b20e1',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'make', 'sub_type': 'general', 'title': 'Make', 'type': 'text'},
{'name': 'number',
'sub_type': 'general',
'title': 'No. of Vehicles',
'type': 'numeric',
'unit_of_measure': 'No. of Vehicles'}],
'CSV'),
('https://storage.data.gov.sg/monthly-new-registration-of-motor-vehicles-by-vehicle-quota-categories/resources/new-registration-of-motor-vehicles-under-vehicle-quota-system-vqs-2017-06-13T00-47-38Z.csv',
'4fab6bff-c962-4dbb-a2a3-1702257f1c33',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'category',
'sub_type': 'general',
'title': 'Category',
'type': 'text'},
{'name': 'number',
'sub_type': 'general',
'title': 'No. of Vehicles',
'type': 'numeric',
'unit_of_measure': 'No. of Vehicles'}],
'CSV'),
('https://storage.data.gov.sg/monthly-revalidation-of-coe-of-existing-vehicles/resources/monthly-revalidation-of-coe-2017-06-13T01-02-01Z.csv',
'e62a59fd-ee9f-43ec-ac69-58dc5c8045be',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'type', 'sub_type': 'general', 'title': 'Type', 'type': 'text'},
{'name': 'category',
'sub_type': 'general',
'title': 'Category',
'type': 'text'},
{'name': 'number',
'sub_type': 'general',
'title': 'Revalidations',
'type': 'numeric',
'unit_of_measure': 'No. of Revalidations'}],
'CSV'),
('https://storage.data.gov.sg/monthly-taxi-population-by-company/resources/public-transport-capacity-monthly-taxi-population-2017-06-07T09-29-39Z.csv',
'73eab944-01e6-4954-bdd3-7c798e65ed2c',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'company',
'sub_type': 'general',
'title': 'Company',
'type': 'text'},
{'name': 'taxi_fleet',
'sub_type': 'general',
'title': 'No. of Taxis',
'type': 'numeric',
'unit_of_measure': 'No. of Taxis'}],
'CSV'),
('https://storage.data.gov.sg/monthly-transfers-of-vehicle-by-type/resources/monthly-type-and-number-of-vehicles-transferred-2017-04-02T13-03-09Z.csv',
'c54f334b-9a46-4870-a301-da7816edf826',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'type', 'sub_type': 'general', 'title': 'Type', 'type': 'text'},
{'name': 'numbers',
'sub_type': 'general',
'title': 'No. of Transfers',
'type': 'numeric',
'unit_of_measure': 'No. of Transfers'}],
'CSV'),
('https://storage.data.gov.sg/mothers-by-age-group-and-type-of-birth/resources/mothers-by-age-group-and-type-of-birth-2016-08-04T01-32-48Z.csv',
'8f453a52-6883-47a9-9648-f8be1ca2358b',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'description': 'Single, Twins, Triplets etc',
'name': 'birth_type',
'sub_type': 'general',
'title': 'Birth Type',
'type': 'text'},
{'name': 'mother_age_group',
'sub_type': 'general',
'title': 'Mother Age Group',
'type': 'text'},
{'name': 'total_number_of_mother',
'sub_type': 'general',
'title': 'Total Number Of Mother',
'type': 'numeric',
'unit_of_measure': 'number of mothers'}],
'CSV'),
('https://storage.data.gov.sg/msf-youth-homes-new-admissions/resources/msf-youth-homes-new-admissions-by-gender-annual-2016-05-17T03-20-04Z.csv',
'35519c63-3d12-4e48-abb0-62ab3c47aca7',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'name': 'count',
'sub_type': 'general',
'title': 'Count',
'type': 'numeric',
'unit_of_measure': 'New Admissions'}],
'CSV'),
('https://storage.data.gov.sg/multifactor-productivity-contributions-to-growth-in-real-gdp-annual/resources/multifactor-productivity-contributions-to-growth-in-real-gdp-annual-2017-05-26T16-53-10Z.csv',
'ae366bfd-df0d-4e6b-bf4d-fd5c5706d403',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Real GDP',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Multifactor Productivity',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/multifactor-productivity-contributions-to-growth-in-real-gdp-annual/resources/multifactor-productivity-contributions-to-growth-in-real-gdp-by-inputs-annual-2017-05-26T16-53-13Z.csv',
'920a54f8-7a10-4273-a5c6-a84d45464f87',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Level 1',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Input',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Multifactor Productivity',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/nanyang-polytechnic-full-time-diploma-courses/resources/nanyang-polytechnic-full-time-diploma-courses-2016-09-22T09-50-09Z.csv',
'df488f8c-c9bf-4ee9-a724-6ff1df6b85df',
[{'format': 'YYYY',
'name': 'academic_year',
'sub_type': 'year',
'title': 'Academic Year',
'type': 'datetime'},
{'description': 'Joint Admissions Exercise Course Code',
'name': 'jae_course_code',
'sub_type': 'general',
'title': 'JAE Course Code',
'type': 'text'},
{'name': 'course_title',
'sub_type': 'general',
'title': 'Course Title',
'type': 'text'},
{'name': 'url', 'sub_type': 'url', 'title': 'Reference', 'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/nanyang-polytechnic-full-time-student-enrolment-annual/resources/nanyang-polytechnic-full-time-student-enrolment-annual-2016-12-22T01-31-06Z.csv',
'ca861c1c-80fc-4fb4-9a81-e868f42c8f18',
[{'format': 'YYYY',
'name': 'academic_year',
'sub_type': 'year',
'title': 'Academic year',
'type': 'datetime'},
{'name': 'school',
'sub_type': 'general',
'title': 'School',
'type': 'text'},
{'description': ['JAE refers to Joint Admission Exercise',
'"na" : Data not available or not applicable'],
'name': 'jae_course_code',
'sub_type': 'general',
'title': 'JAE course code',
'type': 'text'},
{'name': 'course_name',
'sub_type': 'general',
'title': 'Course name',
'type': 'text'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'name': 'enrolment',
'sub_type': 'general',
'title': 'Enrolment',
'type': 'numeric',
'unit_of_measure': 'Number of Students'}],
'CSV'),
('https://storage.data.gov.sg/nanyang-polytechnic-gce-o-level-aggregate-cut-off-points-by-course/resources/nanyang-polytechnic-gce-o-level-aggregate-cut-off-points-by-course-annual-2016-12-13T08-32-35Z.csv',
'642c5bba-9902-45ed-a637-51a491359017',
[{'format': 'YYYY',
'name': 'academic_year',
'sub_type': 'year',
'title': 'Academic Year',
'type': 'datetime'},
{'name': 'school',
'sub_type': 'general',
'title': 'School',
'type': 'text'},
{'name': 'course_name',
'sub_type': 'general',
'title': 'Course Name',
'type': 'text'},
{'name': 'jae_cluster',
'sub_type': 'general',
'title': 'JAE Cluster',
'type': 'text'},
{'name': 'jae_course_code',
'sub_type': 'general',
'title': 'JAE Course Code',
'type': 'text'},
{'name': 'gceo_cut_off',
'sub_type': 'general',
'title': 'GCEO Cut-Off',
'type': 'numeric',
'unit_of_measure': 'Cut-off Points'}],
'CSV'),
('https://storage.data.gov.sg/nanyang-polytechnic-lifelong-learning-courses-for-adult-learners/resources/list-of-lifelong-learning-courses-for-adult-learners-2016-09-20T08-09-15Z.csv',
'1c006d84-cae4-4556-9440-aac3d32e0c63',
[{'format': 'YYYY',
'name': 'academic_year',
'sub_type': 'year',
'title': 'Academic year',
'type': 'datetime'},
{'name': 'school',
'sub_type': 'general',
'title': 'School',
'type': 'text'},
{'name': 'course_name',
'sub_type': 'general',
'title': 'Course name',
'type': 'text'},
{'name': 'course_description',
'sub_type': 'general',
'title': 'Course description',
'type': 'text'},
{'name': 'reference',
'sub_type': 'url',
'title': 'Reference',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/nanyang-polytechnic-planned-intake-annual/resources/nanyang-polytechnic-planned-intake-annual-2016-12-22T02-36-53Z.csv',
'ab38b0a5-c241-4f01-baf9-c52e9078e3b8',
[{'format': 'YYYY',
'name': 'academic_year',
'sub_type': 'year',
'title': 'Academic year',
'type': 'datetime'},
{'name': 'school',
'sub_type': 'general',
'title': 'School',
'type': 'text'},
{'name': 'jae_cluster',
'sub_type': 'general',
'title': 'JAE Cluster',
'type': 'text'},
{'description': '"na" : Not Available',
'name': 'jae_course_code',
'sub_type': 'general',
'title': 'JAE Course Code',
'type': 'text'},
{'name': 'course_name',
'sub_type': 'general',
'title': 'Course Name',
'type': 'text'},
{'name': 'planned_intake_numbers',
'sub_type': 'general',
'title': 'Planned Intake',
'type': 'numeric',
'unit_of_measure': 'Number of students'}],
'CSV'),
('https://storage.data.gov.sg/nanyang-polytechnic-student-intake-annual/resources/nanyang-polytechnic-full-time-student-intake-2016-12-22T00-53-56Z.csv',
'a3fc0679-8e83-43f0-849d-0b41bd47b0d8',
[{'format': 'YYYY',
'name': 'academic_year',
'sub_type': 'year',
'title': 'Academic year',
'type': 'datetime'},
{'name': 'semester',
'sub_type': 'general',
'title': 'Semester',
'type': 'text'},
{'name': 'school',
'sub_type': 'general',
'title': 'School',
'type': 'text'},
{'description': ['JAE refers to Joint Admission Exercise',
'"na" : Data not available or not applicable'],
'name': 'jae_course_code',
'sub_type': 'general',
'title': 'JAE course code',
'type': 'text'},
{'name': 'course_name',
'sub_type': 'general',
'title': 'Course name',
'type': 'text'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'name': 'intake',
'sub_type': 'general',
'title': 'Intake',
'type': 'numeric',
'unit_of_measure': 'Number of Students'}],
'CSV'),
('https://storage.data.gov.sg/national-behavioural-surveillance-survey/resources/national-behavioural-surveillance-survey-2016-07-13T04-04-45Z.csv',
'e7a6e471-6edf-4e8d-95b5-1698764d39e1',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'hiv_aids_knowledge',
'sub_type': 'general',
'title': 'Knowledge on HIV/AIDS Prevention',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 1, i.e. "1" represents 100%',
'name': 'proportion',
'sub_type': 'percentage',
'title': 'Proportion',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/national-breastfeeding-survey/resources/national-breastfeeding-survey-2001-and-2011-2016-07-13T03-56-19Z.csv',
'af4e8981-0340-471e-a503-e8f7013b0424',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'time_interval',
'sub_type': 'general',
'title': 'Time interval',
'type': 'text'},
{'description': ['Exclusive breastfeeding is defined as only breast milk (including expressed breast milk) is given. May include drop and syrup forms of vitamins, minerals and medicines and oral rehydration salts (ORS) solution. Predominant breastfeeding is defined as both breast milk (including expressed breast milk) and water are given. May include sweetened water and juices, drop and syrup forms of vitamins, minerals and medicines and ORS solution.',
'Percentages are expressed as a value over 1, i.e. "1" represents 100%'],
'name': 'exclusive_breastfeeding',
'sub_type': 'percentage',
'title': 'Exclusive breastfeeding',
'type': 'numeric'},
{'description': ['Any breastfeeding is defined as infant being exclusively/predominantly breastfed or receiving both breast milk and a formula, with or without solids.',
'Percentages are expressed as a value over 1, i.e. "1" represents 100%'],
'name': 'any_breastfeeding',
'sub_type': 'percentage',
'title': 'Any breastfeeding',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/national-library-board-infopedia-articles/resources/national-library-board-infopedia-articles-2017-05-26T16-53-28Z.csv',
'd0d710c6-5209-45ce-84f9-682f47088fcd',
[{'description': 'Unique ID of the item',
'name': 'uid',
'sub_type': 'general',
'title': 'Uid',
'type': 'text'},
{'description': 'Title of the item',
'name': 'book_title',
'sub_type': 'general',
'title': 'Book title',
'type': 'text'},
{'description': ['Subject of the item.',
'There may be multiple subjects separated by "|" characters.',
'"na" : unknown or not available'],
'name': 'subject',
'sub_type': 'general',
'title': 'Subject',
'type': 'text'},
{'description': 'A short summary of the item',
'name': 'summary',
'sub_type': 'general',
'title': 'Summary',
'type': 'text'},
{'description': ['Original publisher of the item',
'"na" : unknown or not available'],
'name': 'original_publisher',
'sub_type': 'general',
'title': 'Original publisher',
'type': 'text'},
{'description': ['Digital publisher of the item',
'"na" : unknown or not available'],
'name': 'digital_publisher',
'sub_type': 'general',
'title': 'Digital publisher',
'type': 'text'},
{'description': 'The format of the item',
'name': 'format',
'sub_type': 'general',
'title': 'Format',
'type': 'text'},
{'description': ['The language the item is in.',
'The column uses ISO 639 3 letters code as per http://www.iso.org/iso/home/standards/language_codes.htm',
'"na" : unknown or not available'],
'name': 'language',
'sub_type': 'general',
'title': 'Language',
'type': 'text'},
{'description': ['The copyright description of the item',
'"na" : unknown or not available'],
'name': 'copyright',
'sub_type': 'general',
'title': 'Copyright',
'type': 'text'},
{'description': ['Name of the creator of the item.',
'If there are multiple creators, they will be separated by the "|" character.'],
'name': 'author_name',
'sub_type': 'general',
'title': 'Author name',
'type': 'text'},
{'description': ['The date of publication of the item, can be blank if it is unknown.',
'The value are documented according to MARC standard at http://www.marc21.ca/index-e.html',
'"na" : unknown or not available'],
'name': 'published',
'sub_type': 'general',
'title': 'Published',
'type': 'text'},
{'description': 'Link to the article page.',
'name': 'resource_url',
'sub_type': 'url',
'title': 'Resource URL',
'type': 'text'},
{'description': 'The URL to the cover image of the item',
'name': 'cover',
'sub_type': 'url',
'title': 'Cover',
'type': 'text'},
{'description': 'The URL to the thumbnail of the cover image of the item',
'name': 'thumbnail',
'sub_type': 'url',
'title': 'Thumbnail',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/national-library-board-malay-ebooks/resources/national-library-board-malay-ebooks-2017-05-26T16-53-43Z.csv',
'9e267236-8756-4408-9455-f4f947cb9309',
[{'description': 'Unique ID of the item',
'name': 'uid',
'sub_type': 'general',
'title': 'Uid',
'type': 'text'},
{'description': 'Title of the item',
'name': 'book_title',
'sub_type': 'general',
'title': 'Book title',
'type': 'text'},
{'description': ['Subject of the item.',
'There may be multiple subjects separated by "|" characters.',
'"na" : unknown or not available'],
'name': 'subject',
'sub_type': 'general',
'title': 'Subject',
'type': 'text'},
{'description': 'A short summary of the item ',
'name': 'summary',
'sub_type': 'general',
'title': 'Summary',
'type': 'text'},
{'description': ['Original publisher of the item',
'"na" : unknown or not available'],
'name': 'original_publisher',
'sub_type': 'general',
'title': 'Original publisher',
'type': 'text'},
{'description': ['Digital publisher of the item',
'"na" : unknown or not available'],
'name': 'digital_publisher',
'sub_type': 'general',
'title': 'Digital publisher',
'type': 'text'},
{'description': 'The format of the item',
'name': 'format',
'sub_type': 'general',
'title': 'Format',
'type': 'text'},
{'description': ['The language the item is in.',
'The column uses ISO 639 3 letters code as per http://www.iso.org/iso/home/standards/language_codes.htm',
'"na" : unknown or not available'],
'name': 'language',
'sub_type': 'general',
'title': 'Language',
'type': 'text'},
{'description': 'The copyright description of the item',
'name': 'copyright',
'sub_type': 'general',
'title': 'Copyright',
'type': 'text'},
{'description': ['Name of the creator of the item.',
'If there are multiple creators, they will be separated by the "|" character.'],
'name': 'author_name',
'sub_type': 'url',
'title': 'Author name',
'type': 'text'},
{'description': ['The date of publication of the item, can be blank if it is unknown.',
'The value are documented according to MARC standard at http://www.marc21.ca/index-e.html'],
'name': 'published',
'sub_type': 'general',
'title': 'Published',
'type': 'text'},
{'description': 'Link to download page of the item',
'name': 'resource_url',
'sub_type': 'url',
'title': 'Resource URL',
'type': 'text'},
{'description': 'The URL to the cover image of the item',
'name': 'cover',
'sub_type': 'url',
'title': 'Cover',
'type': 'text'},
{'description': 'The URL to the thumbnail of the cover image of the item',
'name': 'thumbnail',
'sub_type': 'url',
'title': 'Thumbnail',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/national-library-board-malay-multimedia-ebooks/resources/national-library-board-malay-multimedia-ebooks-2017-05-26T16-54-11Z.csv',
'ff9e4d30-d6d3-4686-aff6-b744de189ba5',
[{'description': 'Unique ID of the item',
'name': 'uid',
'sub_type': 'general',
'title': 'Uid',
'type': 'text'},
{'description': 'Title of the item',
'name': 'book_title',
'sub_type': 'general',
'title': 'Book title',
'type': 'text'},
{'description': ['Subject of the item.',
'There may be multiple subjects separated by "|" characters.'],
'name': 'subject',
'sub_type': 'general',
'title': 'Subject',
'type': 'text'},
{'description': 'A short summary of the item ',
'name': 'summary',
'sub_type': 'general',
'title': 'Summary',
'type': 'text'},
{'description': ['Original publisher of the item',
'"na" : unknown or not available'],
'name': 'original_publisher',
'sub_type': 'general',
'title': 'Original publisher',
'type': 'text'},
{'description': 'Digital publisher of the item',
'name': 'digital_publisher',
'sub_type': 'general',
'title': 'Digital publisher',
'type': 'text'},
{'description': 'The format of the item',
'name': 'format',
'sub_type': 'general',
'title': 'Format',
'type': 'text'},
{'description': ['The language the item is in.',
'The column uses ISO 639 3 letters code as per http://www.iso.org/iso/home/standards/language_codes.htm'],
'name': 'language',
'sub_type': 'general',
'title': 'Language',
'type': 'text'},
{'description': 'The copyright description of the item',
'name': 'copyright',
'sub_type': 'general',
'title': 'Copyright',
'type': 'text'},
{'description': ['Name of the creator of the item.',
'If there are multiple creators, they will be separated by the "|" character.',
'"admin" may infer that the creator information is not available and the digital content is created by National Library Board.',
'"na" : unknown or not available'],
'name': 'author_name',
'sub_type': 'general',
'title': 'Author name',
'type': 'text'},
{'description': ['The date of publication of the item, can be blank if it is unknown.',
'The value are documented according to MARC standard at http://www.marc21.ca/index-e.html'],
'name': 'published',
'sub_type': 'general',
'title': 'Published',
'type': 'text'},
{'description': 'Link to download page of the item',
'name': 'resource_url',
'sub_type': 'url',
'title': 'Resource URL',
'type': 'text'},
{'description': 'The URL to the cover image of the item',
'name': 'cover',
'sub_type': 'url',
'title': 'Cover',
'type': 'text'},
{'description': 'The URL to the thumbnail of the cover image of the item',
'name': 'thumbnail',
'sub_type': 'url',
'title': 'Thumbnail',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/national-library-board-read-singapore-short-stories/resources/national-library-board-read-short-story-2017-05-26T16-55-14Z.csv',
'835e630b-a03f-4f77-baa6-9c69c91883f2',
[{'description': 'ID of the item',
'name': 'uid',
'sub_type': 'general',
'title': 'Uid',
'type': 'text'},
{'description': 'Title of the item',
'name': 'book_title',
'sub_type': 'general',
'title': 'Book title',
'type': 'text'},
{'description': ['Subject of the item.',
'There may be multiple subjects separated by "|" characters.'],
'name': 'subject',
'sub_type': 'general',
'title': 'Subject',
'type': 'text'},
{'description': 'Short description of the item',
'name': 'summary',
'sub_type': 'general',
'title': 'Summary',
'type': 'text'},
{'description': 'Original Publisher of the item',
'name': 'original_publisher',
'sub_type': 'general',
'title': 'Original publisher',
'type': 'text'},
{'description': 'Digital Publisher of the item',
'name': 'digital_publisher',
'sub_type': 'general',
'title': 'Digital publisher',
'type': 'text'},
{'description': 'Format of the item',
'name': 'format',
'sub_type': 'general',
'title': 'Format',
'type': 'text'},
{'description': ['The language the item is in.',
'The column uses ISO 639 3 letters code as per http://www.iso.org/iso/home/standards/language_codes.htm'],
'name': 'language',
'sub_type': 'general',
'title': 'Language',
'type': 'text'},
{'description': 'Copyright description of the item',
'name': 'copyright',
'sub_type': 'general',
'title': 'Copyright',
'type': 'text'},
{'description': ['Name of the creator of the item.',
'If there are multiple creators, they will be separated by the "|" character.'],
'name': 'author_name',
'sub_type': 'general',
'title': 'Author name',
'type': 'text'},
{'description': ['The date of publication of the item, can be blank if it is unknown.',
'The value are documented according to MARC standard at http://www.marc21.ca/index-e.html'],
'name': 'published',
'sub_type': 'general',
'title': 'Published',
'type': 'text'},
{'description': 'Link to download page of the item',
'name': 'resource_url',
'sub_type': 'url',
'title': 'Resource URL',
'type': 'text'},
{'description': 'Link to cover image of the item',
'name': 'cover',
'sub_type': 'url',
'title': 'Cover',
'type': 'text'},
{'description': 'Link to thumbnail of cover image of the item',
'name': 'thumbnail',
'sub_type': 'url',
'title': 'Thumbnail',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/national-nutrition-survey-carbohydrate-intake-among-adult-singaporeans/resources/national-nutrition-survey-carbohydrate-intake-by-gender-2016-06-27T08-02-53Z.csv',
'8967ec0a-88c9-4751-b663-81f507e6ab82',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'description': 'Mean of carbohydrate intake ',
'name': 'mean',
'sub_type': 'general',
'title': 'Mean',
'type': 'numeric',
'unit_of_measure': 'Gram'},
{'description': 'Standard error of carbohydrate intake',
'name': 'standard_error_of_mean',
'sub_type': 'general',
'title': 'Standard error of mean',
'type': 'numeric',
'unit_of_measure': 'Gram'},
{'description': 'Percentile distribution of carbohydrate intake',
'name': '5th_percentile',
'sub_type': 'general',
'title': '5th percentile',
'type': 'numeric',
'unit_of_measure': 'Gram'},
{'description': 'Percentile distribution of carbohydrate intake',
'name': '10th_percentile',
'sub_type': 'general',
'title': '10th percentile',
'type': 'numeric',
'unit_of_measure': 'Gram'},
{'description': 'Percentile distribution of carbohydrate intake',
'name': '25th_percentile',
'sub_type': 'general',
'title': '25th percentile',
'type': 'numeric',
'unit_of_measure': 'Gram'},
{'description': 'Percentile distribution of carbohydrate intake',
'name': '50th_percentile',
'sub_type': 'general',
'title': '50th percentile',
'type': 'numeric',
'unit_of_measure': 'Gram'},
{'description': 'Percentile distribution of carbohydrate intake',
'name': '75th_percentile',
'sub_type': 'general',
'title': '75th percentile',
'type': 'numeric',
'unit_of_measure': 'Gram'},
{'description': 'Percentile distribution of carbohydrate intake',
'name': '90th_percentile',
'sub_type': 'general',
'title': '90th percentile',
'type': 'numeric',
'unit_of_measure': 'Gram'},
{'description': 'Percentile distribution of carbohydrate intake',
'name': '95th_percentile',
'sub_type': 'general',
'title': '95th percentile',
'type': 'numeric',
'unit_of_measure': 'Gram'}],
'CSV'),
('https://storage.data.gov.sg/national-nutrition-survey-carbohydrate-intake-among-adult-singaporeans/resources/national-nutrition-survey-carbohydrate-intake-by-gender-and-age-group-2016-06-27T08-12-02Z.csv',
'195a821b-1a3b-44d8-86e7-2040fb9cdc6a',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'name': 'age_group',
'sub_type': 'general',
'title': 'Age group',
'type': 'text'},
{'description': 'Mean of carbohydrate intake ',
'name': 'mean',
'sub_type': 'general',
'title': 'Mean',
'type': 'numeric',
'unit_of_measure': 'Gram'},
{'description': 'Standard error of carbohydrate intake',
'name': 'standard_error_of_mean',
'sub_type': 'general',
'title': 'Standard error of mean',
'type': 'numeric',
'unit_of_measure': 'Gram'},
{'description': 'Percentile distribution of carbohydrate intake',
'name': '5th_percentile',
'sub_type': 'general',
'title': '5th percentile',
'type': 'numeric',
'unit_of_measure': 'Gram'},
{'description': 'Percentile distribution of carbohydrate intake',
'name': '10th_percentile',
'sub_type': 'general',
'title': '10th percentile',
'type': 'numeric',
'unit_of_measure': 'Gram'},
{'description': 'Percentile distribution of carbohydrate intake',
'name': '25th_percentile',
'sub_type': 'general',
'title': '25th percentile',
'type': 'numeric',
'unit_of_measure': 'Gram'},
{'description': 'Percentile distribution of carbohydrate intake',
'name': '50th_percentile',
'sub_type': 'general',
'title': '50th percentile',
'type': 'numeric',
'unit_of_measure': 'Gram'},
{'description': 'Percentile distribution of carbohydrate intake',
'name': '75th_percentile',
'sub_type': 'general',
'title': '75th percentile',
'type': 'numeric',
'unit_of_measure': 'Gram'},
{'description': 'Percentile distribution of carbohydrate intake',
'name': '90th_percentile',
'sub_type': 'general',
'title': '90th percentile',
'type': 'numeric',
'unit_of_measure': 'Gram'},
{'description': 'Percentile distribution of carbohydrate intake',
'name': '95th_percentile',
'sub_type': 'general',
'title': '95th percentile',
'type': 'numeric',
'unit_of_measure': 'Gram'}],
'CSV'),
('https://storage.data.gov.sg/national-nutrition-survey-carbohydrate-intake-among-adult-singaporeans/resources/national-nutrition-survey-carbohydrate-intake-by-gender-and-race-2016-06-27T08-20-43Z.csv',
'330e53cb-d3db-423f-b2f8-e2a5783cdef5',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'name': 'race', 'sub_type': 'general', 'title': 'Race', 'type': 'text'},
{'description': 'Mean of carbohydrate intake ',
'name': 'mean',
'sub_type': 'general',
'title': 'Mean',
'type': 'numeric',
'unit_of_measure': 'Gram'},
{'description': 'Standard error of carbohydrate intake',
'name': 'standard_error_of_mean',
'sub_type': 'general',
'title': 'Standard error of mean',
'type': 'numeric',
'unit_of_measure': 'Gram'},
{'description': 'Percentile distribution of carbohydrate intake',
'name': '5th_percentile',
'sub_type': 'general',
'title': '5th percentile',
'type': 'numeric',
'unit_of_measure': 'Gram'},
{'description': 'Percentile distribution of carbohydrate intake',
'name': '10th_percentile',
'sub_type': 'general',
'title': '10th percentile',
'type': 'numeric',
'unit_of_measure': 'Gram'},
{'description': 'Percentile distribution of carbohydrate intake',
'name': '25th_percentile',
'sub_type': 'general',
'title': '25th percentile',
'type': 'numeric',
'unit_of_measure': 'Gram'},
{'description': 'Percentile distribution of carbohydrate intake',
'name': '50th_percentile',
'sub_type': 'general',
'title': '50th percentile',
'type': 'numeric',
'unit_of_measure': 'Gram'},
{'description': 'Percentile distribution of carbohydrate intake',
'name': '75th_percentile',
'sub_type': 'general',
'title': '75th percentile',
'type': 'numeric',
'unit_of_measure': 'Gram'},
{'description': 'Percentile distribution of carbohydrate intake',
'name': '90th_percentile',
'sub_type': 'general',
'title': '90th percentile',
'type': 'numeric',
'unit_of_measure': 'Gram'},
{'description': 'Percentile distribution of carbohydrate intake',
'name': '95th_percentile',
'sub_type': 'general',
'title': '95th percentile',
'type': 'numeric',
'unit_of_measure': 'Gram'}],
'CSV'),
('https://storage.data.gov.sg/national-research-foundation-grant-calls-and-amounts-awarded/resources/grant-calls-and-amount-awarded-2016-06-16T01-33-42Z.csv',
'3ad61bcb-2bd3-4290-b167-a278e372e544',
[{'description': 'Grant Call',
'name': 'grant_call',
'sub_type': 'general',
'title': 'Grant Call',
'type': 'text'},
{'description': 'Closing Date',
'format': 'YYYY-MM-DD',
'name': 'closing_date',
'sub_type': 'date',
'title': 'Closing Date',
'type': 'datetime'},
{'description': 'Total Grants Awarded',
'name': 'total_grants_awarded',
'sub_type': 'general',
'title': 'Total Grants Awarded',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/national-research-foundation-grant-calls-and-amounts-awarded/resources/grant-calls-and-awarded-grant-projects-recipient-and-organisation-2016-06-16T02-47-29Z.csv',
'c619dbe8-e011-4bec-9936-7b9507c2d032',
[{'description': 'Grant Call',
'name': 'grant_call',
'sub_type': 'general',
'title': 'Grant Call',
'type': 'text'},
{'description': ['Awarded Project',
'"na" : Data not available or not applicable'],
'name': 'awarded_project',
'sub_type': 'general',
'title': 'Awarded Project',
'type': 'text'},
{'description': ['Recipient',
'"na" : Data not available or not applicable'],
'name': 'recipient',
'sub_type': 'general',
'title': 'Recipient',
'type': 'text'},
{'description': ['Organisation',
'"na" : Data not available or not applicable'],
'name': 'organisation',
'sub_type': 'general',
'title': 'Organisation',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/neonatal-perinatal-and-maternal-vital-statistics-from-1971onwards/resources/neonatal-perinatal-and-maternal-vital-statistics-from-1971-onwards-2016-07-13T03-35-48Z.csv',
'8ae2223b-4e03-4ac9-b1cc-a9c9049d025b',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'description': 'Neonatal mortality refers to death of persons under 28 days of age',
'name': 'neonatal_mortality',
'sub_type': 'general',
'title': 'Neonatal Mortality',
'type': 'numeric',
'unit_of_measure': 'No. of Neonatal Mortality'},
{'description': 'Perinatal mortality refers to still birth and deaths of persons under seven days of age',
'name': 'perinatal_mortality',
'sub_type': 'general',
'title': 'Perinatal Mortality',
'type': 'numeric',
'unit_of_measure': 'No. of Perinatal Mortality'},
{'description': 'Maternal mortality refers to deaths of mothers owing to deliveries and complications arising from pregnancy, childbirth and puerperium',
'name': 'maternal_mortality',
'sub_type': 'general',
'title': 'Maternal Mortality',
'type': 'numeric',
'unit_of_measure': 'No. of Maternal Mortality'}],
'CSV'),
('https://storage.data.gov.sg/net-amount-invested-from-ordinary-special-account-as-at-end-of-quarter/resources/net-amount-invested-from-ordinary-special-account-as-at-end-of-quarter-2017-06-14T07-57-14Z.csv',
'5eeca35f-bbca-482b-a1ee-23f99b4db85b',
[{'format': 'YYYY-[Q]Q',
'name': 'qtr',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'description': 'Refers to Ordinary or Special Account',
'name': 'investment_schm_type',
'sub_type': 'general',
'title': 'Investment scheme type',
'type': 'text'},
{'description': 'Figures are rounded to the nearest hundred thousand dollars.',
'name': 'net_amt_invested',
'sub_type': 'general',
'title': 'Net amount invested',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/net-amount-withdrawn-from-ordinary-special-account-for-investment-in-year/resources/net-amount-withdrawn-from-ordinary-special-account-for-investment-annual-2017-03-17T09-23-26Z.csv',
'064f6357-a60d-42cc-a17e-ca8c8b61a7d4',
[{'format': 'YYYY',
'name': 'yr',
'sub_type': 'year',
'title': 'Yr',
'type': 'datetime'},
{'description': 'Refers to Ordinary or Special Account',
'name': 'investment_schm_type',
'sub_type': 'general',
'title': 'Investment scheme type',
'type': 'text'},
{'description': 'Negative value means amount refunded to the account is more than the amount withdrawn from the account. Figures are rounded to the nearest hundred thousand dollars.',
'name': 'net_wdl_amt',
'sub_type': 'general',
'title': 'Net amount withdrawn',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/net-amount-withdrawn-under-medisave-scheme-medishield-medishield-life-in-year/resources/net-amount-withdrawn-under-medisave-scheme-annual-2017-03-20T01-17-52Z.csv',
'192653f2-189e-4f00-95bb-f63bde5b7476',
[{'format': 'YYYY',
'name': 'yr',
'sub_type': 'year',
'title': 'Yr',
'type': 'datetime'},
{'description': 'Figures are rounded to the nearest hundred thousand dollars.',
'name': 'net_wdl_amt',
'sub_type': 'general',
'title': 'Net amount withdrawn',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/net-amount-withdrawn-under-medisave-scheme-medishield-medishield-life-in-year/resources/net-amount-withdrawn-under-medishield-medishield-life-annual-2017-03-20T01-20-48Z.csv',
'1c843659-2836-4822-ab47-308b5be7aed2',
[{'format': 'YYYY',
'name': 'yr',
'sub_type': 'year',
'title': 'Yr',
'type': 'datetime'},
{'description': 'Figures are rounded to the nearest hundred thousand dollars.',
'name': 'net_wdl_amt',
'sub_type': 'general',
'title': 'Net amount withdrawn',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/net-amount-withdrawn-under-retirement-sum-scheme-cpf-life-annual/resources/net-amount-withdrawn-under-retirement-sum-scheme-annual-2017-06-14T08-07-33Z.csv',
'cda1516a-1993-4d53-ab16-2750175c3cb3',
[{'format': 'YYYY',
'name': 'yr',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'description': 'Figures are rounded to the nearest hundred thousand dollars.',
'name': 'net_wdl_amt',
'sub_type': 'general',
'title': 'Net amount withdrawn',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/net-amount-withdrawn-under-retirement-sum-scheme-cpf-life-in-year/resources/net-amount-withdrawn-under-cpf-life-annual-2017-03-20T01-39-33Z.csv',
'd5e95954-e4c4-40ee-b454-d9d770b2f857',
[{'format': 'YYYY',
'name': 'yr',
'sub_type': 'year',
'title': 'Yr',
'type': 'datetime'},
{'description': 'Figures are rounded to the nearest hundred thousand dollars.',
'name': 'net_wdl_amt',
'sub_type': 'general',
'title': 'Net amount withdrawn',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/net-balances-of-cpf-members-as-at-end-of-month/resources/net-balances-of-cpf-members-as-at-end-of-month-2017-06-14T07-12-58Z.csv',
'193c2acb-43cc-4b97-97e8-916b6aa9adc7',
[{'format': 'YYYY-MM',
'name': 'mth',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'description': ['Figures from January 2017 onwards are unaudited.',
'Figures are rounded to the nearest hundred thousand dollars.'],
'name': 'net_bal_amt',
'sub_type': 'general',
'title': 'Net balance amount',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/net-capital-stock-at-2010-market-prices-by-type-of-assets-annual/resources/net-capital-stock-at-2010-market-prices-annual-2017-05-26T16-55-23Z.csv',
'd3995be5-e79c-436b-8514-bee5de22799b',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Net Capital Stock',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/net-capital-stock-at-2010-market-prices-by-type-of-assets-annual/resources/net-capital-stock-at-2010-market-prices-by-type-of-assets-annual-2017-05-26T16-55-29Z.csv',
'84455628-955a-4941-b211-e8429db4915a',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Asset Type',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Net Capital Stock',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/net-capital-stock-at-2010-market-prices-by-type-of-assets-annual/resources/net-capital-stock-at-2010-market-prices-by-type-of-construction-works-annual-2017-05-26T16-55-33Z.csv',
'b0bd5575-79de-48d1-9621-bb0d9a0de917',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Asset Type',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Construction Type',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Net Capital Stock',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/net-capital-stock-at-current-market-prices-by-type-of-assets-annual/resources/net-capital-stock-at-current-market-prices-annual-2017-05-26T16-55-37Z.csv',
'5c28975f-6430-4489-a0ee-9c65f171ae38',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Net Capital Stock',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/net-capital-stock-at-current-market-prices-by-type-of-assets-annual/resources/net-capital-stock-at-current-market-prices-by-type-of-assets-annual-2017-05-26T16-55-42Z.csv',
'aedc2680-8643-422b-a212-02a1a0cb9167',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Net Capital Stock at Current Market Prices by Type of Assets, Annual',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Asset Type',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Net Capital Stock',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/net-capital-stock-at-current-market-prices-by-type-of-assets-annual/resources/net-capital-stock-at-current-market-prices-by-type-of-construction-works-annual-2017-05-26T16-55-46Z.csv',
'2baee917-0a44-42c8-958d-b915734c3243',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Asset Type',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Construction Type',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Net Capital Stock',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/net-enrolment-ratio-for-primary-and-secondary-education/resources/net-enrolment-ratio-primary-and-secondary-education-2016-09-15T06-49-51Z.csv',
'7b184af5-b718-4c93-b217-c3bb3ab304f4',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_of_education',
'sub_type': 'general',
'title': 'Level Of Education',
'type': 'text'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'net_enrolment_ratio',
'sub_type': 'percentage',
'title': 'Net Enrolment Ratio',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/new-beyond-parental-control-cases/resources/new-beyond-parental-control-cases-annual-2016-05-17T03-04-32Z.csv',
'6c8edc2b-ead8-4f39-852d-0d8e06c51c8d',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'count',
'sub_type': 'general',
'title': 'Count',
'type': 'numeric',
'unit_of_measure': 'New Cases'}],
'CSV'),
('https://storage.data.gov.sg/newborns-by-gender/resources/newborns-by-gender-from-1984-2015-2016-07-13T03-36-55Z.csv',
'6ed0a70b-5559-480e-a76f-cbe55e59a7a7',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'name': 'newborns',
'sub_type': 'general',
'title': 'Newborns',
'type': 'numeric',
'unit_of_measure': 'No. of Newborns'}],
'CSV'),
('https://storage.data.gov.sg/new-probation-cases/resources/new-probation-cases-by-age-group-annual-2016-05-17T03-06-26Z.csv',
'bb342482-d569-436a-9eff-05758b4f4968',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'age_group',
'sub_type': 'general',
'title': 'Age Group',
'type': 'text'},
{'name': 'count',
'sub_type': 'general',
'title': 'Count',
'type': 'numeric',
'unit_of_measure': 'New Cases'}],
'CSV'),
('https://storage.data.gov.sg/no-of-psc-scholarships-awarded/resources/no-of-psc-scholarships-awarded-by-course-of-study-2016-02-11T10-51-16Z.csv',
'dc633bae-841e-4416-bd0c-29138947439b',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'course_of_study',
'sub_type': 'general',
'title': 'Course Of Study',
'type': 'text'},
{'name': 'no_of_psc_scholarships_awarded',
'sub_type': 'general',
'title': 'No. Of PSC Scholarships Awarded',
'type': 'numeric',
'unit_of_measure': 'No. of Scholarships'}],
'CSV'),
('https://storage.data.gov.sg/no-of-psc-scholarships-awarded/resources/no-of-psc-scholarships-awarded-by-scholarship-scheme-2016-02-11T10-52-22Z.csv',
'b6bca791-d8a0-493a-8896-174a26da59bb',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'scholarship_scheme',
'sub_type': 'general',
'title': 'Scholarship Scheme',
'type': 'text'},
{'name': 'no_of_psc_scholarships_awarded',
'sub_type': 'general',
'title': 'No. Of PSC Scholarships Awarded',
'type': 'numeric',
'unit_of_measure': 'No. of Scholarships'}],
'CSV'),
('https://storage.data.gov.sg/number-amount-of-claims-made-under-home-protection-scheme-annual/resources/number-of-claims-made-under-home-protection-scheme-annual-2017-03-20T01-51-46Z.csv',
'3e80f6d5-ca5a-41e4-a5ab-6a8b5e63c9a1',
[{'format': 'YYYY',
'name': 'yr',
'sub_type': 'year',
'title': 'Yr',
'type': 'datetime'},
{'description': 'Refers to grounds of death or permanent incapacity.',
'name': 'type_of_grounds',
'sub_type': 'general',
'title': 'Type of grounds',
'type': 'text'},
{'name': 'no_of_claims',
'sub_type': 'general',
'title': 'Number of claims',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/number-amount-of-claims-made-under-home-protection-scheme-annual/resources/amount-of-claims-made-under-home-protection-scheme-annual-2017-03-20T01-57-59Z.csv',
'f52146e4-3f8d-4978-b66f-96239eb9161f',
[{'format': 'YYYY',
'name': 'yr',
'sub_type': 'year',
'title': 'Yr',
'type': 'datetime'},
{'description': 'Refers to grounds of death or permanent incapacity.',
'name': 'type_of_grounds',
'sub_type': 'general',
'title': 'Type of grounds',
'type': 'text'},
{'description': 'Figures are rounded to the nearest hundred thousand dollars.',
'name': 'amt_claim',
'sub_type': 'general',
'title': 'Amount of claims',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/number-of-active-cpf-members-by-age-group-as-at-end-of-year/resources/number-of-active-cpf-members-by-age-group-as-at-end-of-year-2016-08-30T08-36-23Z.csv',
'49b0169e-28d5-43a3-b4e2-93535bbbecfc',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'age_grp',
'sub_type': 'general',
'title': 'Age group',
'type': 'text'},
{'description': 'Figures are rounded to the nearest ten. ',
'name': 'no_of_active_mbrs',
'sub_type': 'general',
'title': 'No of active members',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/number-of-active-cpf-members-by-regrossed-balances-age-group-as-at-end-of-year/resources/number-of-active-cpf-members-by-regrossed-balances-age-group-as-at-end-of-year-2016-08-30T08-10-40Z.csv',
'01826936-7d8d-4972-b2a4-406b0880cc3a',
[{'format': 'YYYY',
'name': 'yr',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'regrossed_bal_grp',
'sub_type': 'general',
'title': 'Regrossed balance group',
'type': 'text'},
{'name': 'age_grp',
'sub_type': 'general',
'title': 'Age group',
'type': 'text'},
{'description': 'Figures are rounded to the nearest ten.',
'name': 'no_of_active_mbrs',
'sub_type': 'general',
'title': 'No of active members',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/regrossed-balances-of-active-cpf-members-as-at-end-of-year/resources/regrossed-balances-of-active-cpf-members-as-at-end-of-year-2016-08-26T09-05-21Z.csv',
'1d7b3527-0170-439f-a855-7ca1f81f96c8',
[{'format': 'YYYY',
'name': 'yr',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'regrossed_bal_grp',
'sub_type': 'general',
'title': 'Regrossed balance group',
'type': 'text'},
{'description': 'Figures are rounded to the nearest thousand dollars.',
'name': 'regrossed_bal_amt',
'sub_type': 'general',
'title': 'Regrossed balance amount',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/regrossed-balances-of-active-cpf-members-as-at-end-of-year/resources/number-of-active-cpf-members-by-regrossed-balances-as-at-end-of-year-2016-08-26T09-06-03Z.csv',
'91fa8497-f846-47fe-bee3-892a3ab5213f',
[{'format': 'YYYY',
'name': 'yr',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'regrossed_bal_grp',
'sub_type': 'general',
'title': 'Regrossed balance group',
'type': 'text'},
{'description': 'Figures are rounded to the nearest ten.',
'name': 'no_of_active_mbrs',
'sub_type': 'general',
'title': 'No of active members',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/number-of-acupuncturists/resources/number-of-acupuncturists-2016-07-10T13-26-31Z.csv',
'4a70abd1-4ec4-4930-8994-296271e9429f',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'sector',
'sub_type': 'general',
'title': 'Sector',
'type': 'text'},
{'name': 'count',
'sub_type': 'general',
'title': 'Count',
'type': 'numeric',
'unit_of_measure': 'acupuncturists'}],
'CSV'),
('https://storage.data.gov.sg/number-of-acute-hospitals-and-specialty-centres/resources/hospitals-and-specialty-centres-and-beds-2016-07-05T09-26-40Z.csv',
'04730f40-620b-4c14-9bd7-1522dc09dde1',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'sector',
'sub_type': 'general',
'title': 'Sector',
'type': 'text'},
{'name': 'type', 'sub_type': 'general', 'title': 'Type', 'type': 'text'},
{'name': 'no_of_facilities',
'sub_type': 'general',
'title': 'No. of Facilities',
'type': 'numeric',
'unit_of_measure': 'No. of Facilities'},
{'name': 'no_of_beds',
'sub_type': 'general',
'title': 'No. of Beds',
'type': 'numeric',
'unit_of_measure': 'No. of Beds'}],
'CSV'),
('https://storage.data.gov.sg/number-of-adverse-drug-reactions-report-received-annual/resources/number-of-adverse-drug-reactions-report-received-annual-2016-08-15T12-04-09Z.csv',
'834c4e0b-dc5c-477d-91bb-80e36681571f',
[{'description': 'Financial year starts on 1 January and ends on 31 December',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial year',
'type': 'datetime'},
{'name': 'no_of_rep_received',
'sub_type': 'general',
'title': 'Number of Reports received',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/number-of-all-active-cpf-members-active-employers-as-at-end-of-quarter/resources/number-of-cpf-members-as-at-end-of-quarter-2017-06-14T07-25-49Z.csv',
'd954195d-8739-4824-9d97-e884a1a04388',
[{'format': 'YYYY-[Q]Q',
'name': 'qtr',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'description': 'Figures are rounded to the nearest ten thousands.',
'name': 'no_of_mbrs',
'sub_type': 'general',
'title': 'Number of CPF members',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/number-of-all-active-cpf-members-active-employers-as-at-end-of-quarter/resources/number-of-active-cpf-members-as-at-end-of-quarter-2017-06-14T07-24-01Z.csv',
'cb16f7b4-9e6b-42b2-8b52-12186b59f571',
[{'format': 'YYYY-[Q]Q',
'name': 'qtr',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'description': 'Figures are rounded to the nearest ten thousands.',
'name': 'no_of_active_mbrs',
'sub_type': 'general',
'title': 'Number of active CPF members',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/number-of-all-active-cpf-members-active-employers-as-at-end-of-quarter/resources/number-of-active-employers-as-at-end-of-quarter-2017-06-14T07-27-19Z.csv',
'1e45008f-4add-421f-ae37-65a8f0554d9c',
[{'format': 'YYYY-[Q]Q',
'name': 'qtr',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'no_of_active_employers',
'sub_type': 'general',
'title': 'Number of active employers',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/number-of-applications-for-hdb-loan-eligibility-letters/resources/number-of-applications-for-hdb-loan-eligibility-letters-2016-10-31T09-45-43Z.csv',
'73708bb1-fc26-4c79-817f-27b8a7f24e46',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial year',
'type': 'datetime'},
{'name': 'no_of_applications',
'sub_type': 'general',
'title': 'No. of Applications',
'type': 'numeric',
'unit_of_measure': 'No. of Applications'}],
'CSV'),
('https://storage.data.gov.sg/number-of-applications-registered-for-resale-flats/resources/applications-registered-for-resale-flats-and-rental-flats-2016-11-30T07-34-32Z.csv',
'dea41bef-7116-43ba-9f2f-f13bfbf876d2',
[{'description': ['FY 2014 refers to period 1 Apr 2014 to 31 Mar 2015',
'Financial year starts on 1 April and ends on 31 March'],
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'description': 'Resale or rental',
'name': 'type',
'sub_type': 'general',
'title': 'Type',
'type': 'text'},
{'name': 'applications_registered',
'sub_type': 'general',
'title': 'Applications Registered',
'type': 'numeric',
'unit_of_measure': 'No. of applications registered'}],
'CSV'),
('https://storage.data.gov.sg/number-of-approved-applications-for-financial-assistance-measures-by-financial-year/resources/number-of-approved-applications-for-financial-assistance-measures-by-financial-year-2016-10-31T09-47-33Z.csv',
'f7d42648-da17-4ca4-b77c-9b4b4c9877c7',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial year',
'type': 'datetime'},
{'description': 'Number of approved applications for financial assistance measures',
'name': 'no_of_approvals',
'sub_type': 'general',
'title': 'No. of Approvals',
'type': 'numeric',
'unit_of_measure': 'No. of Approvals'}],
'CSV'),
('https://storage.data.gov.sg/number-of-broadband-subscriptions-by-type-annual/resources/number-of-broadband-subscriptions-by-type-annual-2017-04-18T12-19-42Z.csv',
'48c665b7-7f99-4e61-a2d3-35468d6bb672',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'type_of_broadband',
'sub_type': 'general',
'title': 'Type of broadband',
'type': 'text'},
{'name': 'number_of_subscriptions',
'sub_type': 'general',
'title': 'Number of subscriptions',
'type': 'numeric',
'unit_of_measure': 'Number of Subscriptions'}],
'CSV'),
('https://storage.data.gov.sg/number-of-broadband-subscriptions-by-type-annual/resources/number-of-broadband-subscriptions-annual-2017-04-18T12-20-43Z.csv',
'949a1766-8b8a-438f-8d61-c70173cb6c58',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'total_broadband',
'sub_type': 'general',
'title': 'Total Broadband',
'type': 'numeric',
'unit_of_measure': 'Subscriptions'}],
'CSV'),
('https://storage.data.gov.sg/number-of-children-at-2-years-of-age-immunised-by-sector-and-type/resources/number-of-children-at-2-years-of-age-immunised-by-sector-and-vaccine-type-2016-07-19T02-48-42Z.csv',
'04dbb8ce-cbf2-4382-90c6-e6e4db846595',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'immunisation_type',
'sub_type': 'general',
'title': 'Immunisation Type',
'type': 'text'},
{'name': 'sector',
'sub_type': 'general',
'title': 'Sector',
'type': 'text'},
{'name': 'number_of_children',
'sub_type': 'general',
'title': 'Number Of Children',
'type': 'numeric',
'unit_of_measure': 'Number of children at 2 years of age'}],
'CSV'),
('https://storage.data.gov.sg/number-of-classes-and-class-size-by-level/resources/number-of-classes-and-class-size-by-level-2016-10-12T00-48-53Z.csv',
'9c44631c-b8cd-499d-b01b-11fa1a5c33c0',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_of_education',
'sub_type': 'general',
'title': 'Level Of Education',
'type': 'text'},
{'name': 'level', 'sub_type': 'general', 'title': 'Level', 'type': 'text'},
{'name': 'no_of_classes',
'sub_type': 'general',
'title': 'No. Of Classes',
'type': 'numeric',
'unit_of_measure': 'No. Of Classes'},
{'name': 'ave_class_size',
'sub_type': 'general',
'title': 'Average Class Size',
'type': 'numeric',
'unit_of_measure': 'No. of Students'}],
'CSV'),
('https://storage.data.gov.sg/number-of-community-day-care-facilities/resources/number-of-community-facilities-by-services-offered-2016-07-05T09-51-31Z.csv',
'fcfbade5-1c6c-4203-b291-0d0c86a9df31',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'description': 'Type of service offered.',
'name': 'type',
'sub_type': 'general',
'title': 'Type',
'type': 'text'},
{'name': 'no_of_centres',
'sub_type': 'general',
'title': 'No. of Centres',
'type': 'numeric',
'unit_of_measure': 'No. of Centres'}],
'CSV'),
('https://storage.data.gov.sg/number-of-contraband-cases-detected/resources/number-of-contraband-cases-detected-from-2011-2016-2017-03-08T06-31-28Z.csv',
'01069d36-207b-4a41-980a-12b7735b66d4',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'contraband_cases_count',
'sub_type': 'general',
'title': 'Contraband Cases Count',
'type': 'numeric',
'unit_of_measure': 'No. of Contraband Cases detected'}],
'CSV'),
('https://storage.data.gov.sg/central-provident-fund-members-balances-by-age-group-and-gender-as-at-end-of-year-under-review/resources/number-of-cpf-members-by-age-group-gender-as-at-end-of-year-2016-07-19T07-25-39Z.csv',
'7d16aaa8-2654-4a2f-82c2-cba64acfa5bf',
[{'format': 'YYYY',
'name': 'yr',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'age_grp',
'sub_type': 'general',
'title': 'Age group',
'type': 'text'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'description': 'For unspecified gender, counts for age groups >45 years old are rounded to nearest hundred. For the rest of the age groups and gender, counts are rounded to the nearest thousand.',
'name': 'no_of_mbrs',
'sub_type': 'general',
'title': 'Number of members',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/central-provident-fund-members-balances-by-age-group-and-gender-as-at-end-of-year-under-review/resources/net-balances-of-cpf-members-by-age-group-gender-as-at-end-of-year-2016-07-19T07-26-45Z.csv',
'b6a8dcbd-303e-4450-bfef-63ca43cd5322',
[{'format': 'YYYY',
'name': 'yr',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'age_grp',
'sub_type': 'general',
'title': 'Age group',
'type': 'text'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'description': ['Figures include balances of self-employed persons.',
'Figures are rounded to the nearest thousand dollars.'],
'name': 'net_bal_amt',
'sub_type': 'general',
'title': 'Net balance amount',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/number-of-dental-schools-and-pharmacy-schools-in-the-schedule/resources/number-of-dental-schools-and-pharmacy-schools-in-the-schedule-2016-07-07T05-36-12Z.csv',
'a9475903-ac6f-4017-8d7f-c3cc1d17acb7',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'specialisation',
'sub_type': 'general',
'title': 'Specialisation',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'no_of_schools',
'sub_type': 'general',
'title': 'No. of Schools',
'type': 'numeric',
'unit_of_measure': 'No. of Schools'}],
'CSV'),
('https://storage.data.gov.sg/number-of-dentists-and-oral-health-therapists/resources/number-of-dentists-2016-07-10T12-48-23Z.csv',
'cf1218e3-a811-4326-ba92-be77759ea129',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'type', 'sub_type': 'general', 'title': 'Type', 'type': 'text'},
{'name': 'sector',
'sub_type': 'general',
'title': 'Sector',
'type': 'text'},
{'name': 'count',
'sub_type': 'general',
'title': 'Count',
'type': 'numeric',
'unit_of_measure': 'No. of Dentists'}],
'CSV'),
('https://storage.data.gov.sg/number-of-dentists-and-oral-health-therapists/resources/number-of-oral-health-therapists-2016-07-10T12-50-07Z.csv',
'28ddb9c4-b3d1-4e3a-bd8e-ab3e0bf2df7b',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'sector',
'sub_type': 'general',
'title': 'Sector',
'type': 'text'},
{'name': 'count',
'sub_type': 'general',
'title': 'Count',
'type': 'numeric',
'unit_of_measure': 'No. of Oral Health Therapists'}],
'CSV'),
('https://storage.data.gov.sg/number-of-doctors/resources/number-of-doctors-2016-07-10T12-30-00Z.csv',
'1ef74cbe-d975-4665-b874-56bc4b1c77ea',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'sector',
'sub_type': 'general',
'title': 'Sector',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'specialist_non-specialist',
'sub_type': 'general',
'title': 'Specialist non-specialist',
'type': 'text'},
{'name': 'count',
'sub_type': 'general',
'title': 'Count',
'type': 'numeric',
'unit_of_measure': 'Doctors'}],
'CSV'),
('https://storage.data.gov.sg/number-of-dwelling-units-and-commercial-developments-built/resources/no-of-dwelling-units-and-commercial-developments-built-2016-11-24T06-01-36Z.csv',
'a5da7a66-058b-471f-bef1-32ab129473cb',
[{'format': 'YYYY',
'name': 'start_year',
'sub_type': 'year',
'title': 'Start Year',
'type': 'datetime'},
{'format': 'YYYY',
'name': 'end_year',
'sub_type': 'year',
'title': 'End Year',
'type': 'datetime'},
{'name': 'flat_type',
'sub_type': 'general',
'title': 'Flat Type',
'type': 'text'},
{'name': 'no_of_completed_units',
'sub_type': 'general',
'title': 'No. of Completed Units',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/number-of-employees-trade-unions-by-membership-size/resources/total-number-of-employees-trade-unions-2016-06-23T02-52-12Z.csv',
'96785934-e8bd-4564-89ff-ff6be90e3434',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'no_of_trade_unions',
'sub_type': 'general',
'title': 'No. of Trade Unions',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/number-of-employees-trade-unions-by-membership-size/resources/number-of-employees-trade-unions-by-membership-size-2016-06-23T02-44-40Z.csv',
'fd704f93-a820-40c3-b44d-379fe6e816a9',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'size_of_trade_union',
'sub_type': 'general',
'title': 'Size Of Trade Union',
'type': 'text'},
{'name': 'no_of_trade_unions',
'sub_type': 'general',
'title': 'No. of Trade Unions',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/number-of-employers-of-immigration-offenders-arrested/resources/number-of-employers-of-immigration-offenders-arrested-from-2011-2016-2017-03-08T06-41-36Z.csv',
'10220af3-94d3-44eb-8eca-2bfb73307d16',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'employers_count',
'sub_type': 'general',
'title': 'Employers Count',
'type': 'numeric',
'unit_of_measure': 'No. of Employers of Immigration Offenders'}],
'CSV'),
('https://storage.data.gov.sg/number-of-employers-trade-unions-by-membership-size/resources/employers-trade-unions-by-membership-size-2016-06-24T09-30-58Z.csv',
'e1970e77-c983-4bce-9cd8-8ce3e9e1ec63',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'size_of_trade_union',
'sub_type': 'general',
'title': 'Size of Trade Union',
'type': 'text'},
{'name': 'no_of_trade_unions',
'sub_type': 'general',
'title': 'No. of Trade Unions',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/number-of-graduates-in-healthcare-specialisations-by-course/resources/number-of-graduates-in-healthcare-specialisations-by-course-2016-07-07T04-08-02Z.csv',
'85183e12-cf96-437e-b048-d06f6b84f228',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'graduate_type',
'sub_type': 'general',
'title': 'Graduate Type',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'no_of_graduates',
'sub_type': 'general',
'title': 'No. of Graduates',
'type': 'numeric',
'unit_of_measure': 'No. of Graduates'}],
'CSV'),
('https://storage.data.gov.sg/number-of-harbourers-of-illegal-offenders-arrested/resources/number-of-harbourers-of-immigration-offenders-arrested-from-2011-2016-2017-03-08T06-38-45Z.csv',
'6ea4c3b6-651c-47c1-b452-4a313e0a3203',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'harbourers_count',
'sub_type': 'general',
'title': 'Harbourers Count',
'type': 'numeric',
'unit_of_measure': 'No. of Harbourers arrested'}],
'CSV'),
('https://storage.data.gov.sg/number-of-hawker-stalls-under-government-market-and-hawker-centres-annual/resources/number-of-hawker-stalls-under-government-market-and-hawker-centres-annual-2016-10-03T09-17-40Z.csv',
'1bdcdf81-c3b0-4636-a496-543507ae39e4',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'no_hawker_stalls',
'sub_type': 'general',
'title': 'Number of Hawker Stalls',
'type': 'numeric',
'unit_of_measure': 'Number of Stalls'}],
'CSV'),
('https://storage.data.gov.sg/number-of-home-care-providers/resources/number-of-home-care-providers-by-services-offered-2016-07-05T09-31-36Z.csv',
'bee59c52-ef92-491a-9a92-910b8d300dc9',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'service_type',
'sub_type': 'general',
'title': 'Service Type',
'type': 'text'},
{'name': 'no_of_providers',
'sub_type': 'general',
'title': 'No. of Providers',
'type': 'numeric',
'unit_of_measure': 'No. of Providers'}],
'CSV'),
('https://storage.data.gov.sg/number-of-home-care-visits/resources/number-of-home-care-visits-2016-07-07T03-38-09Z.csv',
'261dc632-cd78-47d9-a697-0001c6daab69',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'type', 'sub_type': 'general', 'title': 'Type', 'type': 'text'},
{'name': 'count',
'sub_type': 'general',
'title': 'No. of Visits',
'type': 'numeric',
'unit_of_measure': 'No. of Visits'}],
'CSV'),
('https://storage.data.gov.sg/number-of-hospital-beds/resources/number-of-hospital-beds-annual-2016-02-15T01-51-36Z.csv',
'9df79e72-a7ed-4df3-9a60-5fe434f38fe7',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'sector',
'sub_type': 'general',
'title': 'Sector',
'type': 'text'},
{'name': 'no_of_hospital_beds',
'sub_type': 'general',
'title': 'No. Of Hospital Beds',
'type': 'numeric',
'unit_of_measure': 'No. Of Hospital Beds'}],
'CSV'),
('https://storage.data.gov.sg/number-of-households-billed-for-upgrading-costs/resources/number-of-households-billed-for-upgrading-2016-11-24T03-01-22Z.csv',
'0ee05708-7ba3-49db-9b24-769fd923e8d4',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial year',
'type': 'datetime'},
{'name': 'no_of_households',
'sub_type': 'general',
'title': 'No. of Households',
'type': 'numeric',
'unit_of_measure': 'No. of Households'}],
'CSV'),
('https://storage.data.gov.sg/number-of-illegal-immigrants-arrested/resources/number-of-illegal-immigrants-arrested-from-2011-2016-2017-03-08T06-36-52Z.csv',
'7c4cf27f-77d3-4da1-b01b-968c3e3552fa',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'illegal_immigrants_count',
'sub_type': 'general',
'title': 'Illegal Immigrants Count',
'type': 'numeric',
'unit_of_measure': 'No. of Illegal Immigrants'}],
'CSV'),
('https://storage.data.gov.sg/number-of-infocomm-jobs-employed-and-vacancies/resources/number-of-infocomm-jobs-employed-and-vacancies-2016-07-11T09-10-59Z.csv',
'60ec62b2-4c53-47bf-94a9-a86e7179daff',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'total_infocomm_jobs',
'sub_type': 'general',
'title': 'Number of Infocomm Jobs',
'type': 'numeric',
'unit_of_measure': 'Number'}],
'CSV'),
('https://storage.data.gov.sg/number-of-intermediate-and-long-term-care-facilities/resources/intermediate-and-long-term-care-facilities-and-beds-by-services-offered-2016-07-05T09-08-46Z.csv',
'bfd9f935-bcf3-4aaf-9f0d-0ef0110034e6',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'description': 'Type of service offered.',
'name': 'type',
'sub_type': 'general',
'title': 'Type',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'no_of_facilities',
'sub_type': 'general',
'title': 'No. of Facilities',
'type': 'numeric',
'unit_of_measure': 'No. of Facilities'},
{'name': 'no_of_beds',
'sub_type': 'general',
'title': 'No. of Beds',
'type': 'numeric',
'unit_of_measure': 'No. of Beds'}],
'CSV'),
('https://storage.data.gov.sg/number-of-inward-consignment-non-containerised-cleared-at-the-checkpoints/resources/number-of-inward-consignment-non-containerised-cleared-at-the-checkpoints-from-2004-2016-05-11T03-03-50Z.csv',
'd39295a1-a953-42dc-88c2-2a276eb8ff81',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'inward_consignments_count',
'sub_type': 'general',
'title': 'Inward Consignments Count',
'type': 'numeric',
'unit_of_measure': 'No. of Inward Consignments cleared'}],
'CSV'),
('https://storage.data.gov.sg/number-of-inward-containers-cleared-at-the-checkpoints/resources/number-of-inward-containers-cleared-at-the-checkpoints-from-2004-onwards-2016-05-11T03-08-05Z.csv',
'21e87da6-94bb-4219-a607-1a928494b3a5',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'inward_containers_count',
'sub_type': 'general',
'title': 'Inward Containers Count',
'type': 'numeric',
'unit_of_measure': 'No. of Inward Containers cleared'}],
'CSV'),
('https://storage.data.gov.sg/number-of-leaks-in-potable-water-pipelines-annual/resources/number-of-leaks-in-potable-water-pipelines-annual-2016-09-26T13-48-12Z.csv',
'c7be4ef1-14f5-453c-b155-6d5b07c774af',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'count',
'sub_type': 'general',
'title': 'Count',
'type': 'numeric',
'unit_of_measure': 'Number Leaks Per 100km '}],
'CSV'),
('https://storage.data.gov.sg/number-of-licensed-hawkers-under-government-market-and-hawker-centres-annual/resources/number-of-licensed-hawkers-under-government-market-and-hawker-centres-annual-2016-12-23T07-02-01Z.csv',
'35559d2b-092e-439b-97e9-7bb6e7a7145e',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'type_of_goods',
'sub_type': 'general',
'title': 'Type of Goods',
'type': 'text'},
{'name': 'no_of_licenses',
'sub_type': 'general',
'title': 'Number of Licenses',
'type': 'numeric',
'unit_of_measure': 'Number of Licenses'}],
'CSV'),
('https://storage.data.gov.sg/number-of-long-term-unemployed-residents-annual/resources/number-of-long-term-unemployed-residents-annual-2016-04-21T08-39-17Z.csv',
'8380e00c-fefb-48c5-ad38-a6860fbe5fb9',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'long_term_unemployed',
'sub_type': 'general',
'title': 'Long Term Unemployed',
'type': 'numeric',
'unit_of_measure': 'Number of Persons'}],
'CSV'),
('https://storage.data.gov.sg/number-of-lta-road-facilities/resources/traffic-facilities-2017-05-05T07-34-14Z.csv',
'acdc00fd-5aa4-467c-ad98-466e1d6f26d9',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'facility',
'sub_type': 'general',
'title': 'Facility',
'type': 'text'},
{'name': 'number',
'sub_type': 'general',
'title': 'No. of Facilities',
'type': 'numeric',
'unit_of_measure': 'No. of Facilities'}],
'CSV'),
('https://storage.data.gov.sg/number-of-lta-road-facilities/resources/vehicular-facilities-2017-05-05T07-34-25Z.csv',
'5546efc9-ba74-4f5a-b116-321aae534463',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'facility',
'sub_type': 'general',
'title': 'Facility',
'type': 'text'},
{'name': 'number',
'sub_type': 'general',
'title': 'No. of Facilities',
'type': 'numeric',
'unit_of_measure': 'No. of Facilities'}],
'CSV'),
('https://storage.data.gov.sg/number-of-members-net-amount-withdrawn-under-housing-schemes-in-year/resources/number-of-members-withdrawn-under-housing-schemes-annual-2017-03-20T02-27-20Z.csv',
'1641ea38-12e1-41e0-abfe-7662f81028a0',
[{'format': 'YYYY',
'name': 'yr',
'sub_type': 'year',
'title': 'Yr',
'type': 'datetime'},
{'description': 'Refers to Public Housing or Private Properties Scheme.',
'name': 'housing_schm_type',
'sub_type': 'general',
'title': 'Housing scheme type',
'type': 'text'},
{'description': 'Figures are rounded to the nearest thousand.',
'name': 'no_of_mbrs',
'sub_type': 'general',
'title': 'Number of members',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/number-of-members-net-amount-withdrawn-under-housing-schemes-in-year/resources/net-amount-withdrawn-under-housing-schemes-annual-2017-03-20T02-30-14Z.csv',
'c10b6660-2926-4f0b-b997-f1d2d0d26cf3',
[{'format': 'YYYY',
'name': 'yr',
'sub_type': 'year',
'title': 'Yr',
'type': 'datetime'},
{'description': 'Refers to Public Housing or Private Properties Scheme.',
'name': 'housing_schm_type',
'sub_type': 'general',
'title': 'Housing scheme type',
'type': 'text'},
{'description': 'Figures are rounded to the nearest hundred thousand dollars.',
'name': 'net_wdl_amt',
'sub_type': 'general',
'title': 'Net amount withdrawn',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/number-of-members-under-cpf-investment-schemes-as-at-end-of-quarter/resources/number-of-members-under-cpf-investment-schemes-as-at-end-of-quarter-2017-06-14T07-55-06Z.csv',
'd62d01a0-e3cd-4f48-bf77-35f8d327902a',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'description': 'Refers to Ordinary or Special Account.',
'name': 'investment_schm_type',
'sub_type': 'general',
'title': 'Investment scheme type',
'type': 'text'},
{'description': 'Figures are rounded to the nearest thousand.',
'name': 'no_of_mbrs',
'sub_type': 'general',
'title': 'Number of members',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/number-of-members-under-housing-schemes-net-amount-withdrawn-as-at-end-of-quarter/resources/number-of-members-under-housing-schemes-as-at-end-of-quarter-2017-06-14T07-37-25Z.csv',
'e2e65551-4a16-46be-9593-08df162e7120',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'description': 'Refers to Public Housing or Private Properties Scheme.',
'name': 'housing_schm_type',
'sub_type': 'general',
'title': 'Housing scheme type',
'type': 'text'},
{'description': 'Figures are rounded to the nearest thousand.',
'name': 'no_of_mbrs',
'sub_type': 'general',
'title': 'Number of members',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/number-of-members-under-housing-schemes-net-amount-withdrawn-as-at-end-of-quarter/resources/net-amount-withdrawn-under-housing-schemes-as-at-end-of-quarter-2017-06-14T07-39-12Z.csv',
'2c92f76a-6949-4ec4-920e-701d84618418',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'description': 'Refers to Public Housing or Private Properties Scheme.',
'name': 'housing_schm_type',
'sub_type': 'general',
'title': 'Housing scheme type',
'type': 'text'},
{'description': 'Figures are rounded to the nearest hundred thousand dollars.',
'name': 'net_wdl_amt',
'sub_type': 'general',
'title': 'Net amount withdrawn',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/number-of-mrt-lrt-stations/resources/number-of-mrt-and-lrt-stations-2017-05-05T07-34-14Z.csv',
'61181936-55e4-4075-89bc-cc0b9b637175',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'mrt',
'sub_type': 'general',
'title': 'MRT',
'type': 'numeric',
'unit_of_measure': 'No. of Stations'},
{'name': 'lrt',
'sub_type': 'general',
'title': 'LRT',
'type': 'numeric',
'unit_of_measure': 'No. of Stations'}],
'CSV'),
('https://storage.data.gov.sg/number-of-national-and-foreign-citizens-held/resources/number-of-national-and-foreign-citizens-held-2017-02-27T07-38-38Z.csv',
'0696bef8-baf1-4c39-9a34-681fca7590b7',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'type_of_citizens',
'sub_type': 'general',
'title': 'Type Of Citizens',
'type': 'text'},
{'name': 'number_of_citizens_held',
'sub_type': 'general',
'title': 'Number Of Citizens Held',
'type': 'numeric',
'unit_of_measure': 'Number of Inmates'}],
'CSV'),
('https://storage.data.gov.sg/number-of-nurses-and-midwives/resources/number-of-nurses-and-midwives-2016-07-10T12-39-38Z.csv',
'e954d621-ad3a-4aa8-9d0b-6b91ac2ff9b5',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'type', 'sub_type': 'general', 'title': 'Type', 'type': 'text'},
{'name': 'sector',
'sub_type': 'general',
'title': 'Sector',
'type': 'text'},
{'name': 'count',
'sub_type': 'general',
'title': 'Count',
'type': 'numeric',
'unit_of_measure': 'No. of Nurses/Midwives'}],
'CSV'),
('https://storage.data.gov.sg/number-of-nurses-and-midwives/resources/number-of-advanced-practice-nurses-2016-07-10T12-42-04Z.csv',
'2e8d8bed-b222-44ae-acba-071bf1c08aae',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'sector',
'sub_type': 'general',
'title': 'Sector',
'type': 'text'},
{'name': 'count',
'sub_type': 'general',
'title': 'Count',
'type': 'numeric',
'unit_of_measure': 'No. of Advanced Practice Nurses'}],
'CSV'),
('https://storage.data.gov.sg/number-of-occupational-therapists/resources/number-of-occupational-therapists-2016-07-10T13-10-34Z.csv',
'3cada53d-d903-49eb-b3e3-23bd80e584d5',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'sector',
'sub_type': 'general',
'title': 'Sector',
'type': 'text'},
{'name': 'count',
'sub_type': 'general',
'title': 'Count',
'type': 'numeric',
'unit_of_measure': 'Occupational Therapists'}],
'CSV'),
('https://storage.data.gov.sg/number-of-opticians-and-optometrists/resources/number-of-opticians-and-optometrists-2016-07-10T13-18-58Z.csv',
'abf4a637-5428-40c9-af0b-9e9faea254ae',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'sector',
'sub_type': 'general',
'title': 'Sector',
'type': 'text'},
{'name': 'count',
'sub_type': 'general',
'title': 'Count',
'type': 'numeric',
'unit_of_measure': 'Opticians/Optometrists'}],
'CSV'),
('https://storage.data.gov.sg/number-of-overstayers-arrested/resources/number-of-overstayers-arrested-from-2011-2016-2017-03-08T06-34-46Z.csv',
'63c1097c-5ca9-4dbf-a3f9-3e7f34bac29e',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'overstayers_count',
'sub_type': 'general',
'title': 'Overstayers Count',
'type': 'numeric',
'unit_of_measure': 'No. of Overstayers'}],
'CSV'),
('https://storage.data.gov.sg/number-of-palliative-home-care-providers/resources/number-of-palliative-home-care-providers-by-services-offered-2016-07-05T10-01-15Z.csv',
'da50b144-8ab2-4452-9015-03a269f09c7e',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'description': 'Type of service offered.',
'name': 'service_type',
'sub_type': 'general',
'title': 'Service Type',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'no_of_providers',
'sub_type': 'general',
'title': 'No. of Providers',
'type': 'numeric',
'unit_of_measure': 'No. of Providers'}],
'CSV'),
('https://storage.data.gov.sg/number-of-parcels-cleared-at-the-parcel-post-centre/resources/number-of-parcels-cleared-at-the-parcel-post-centre-2016-05-11T03-02-14Z.csv',
'0a9edafa-37a9-400c-af10-53af79a71ab9',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'parcels_count',
'sub_type': 'general',
'title': 'Parcels Count',
'type': 'numeric',
'unit_of_measure': 'No. of Parcels cleared'}],
'CSV'),
('https://storage.data.gov.sg/number-of-passengers-cleared-at-the-checkpoints-arrival-and-departure/resources/number-of-passengers-cleared-at-the-checkpoints-arrival-and-departure-2016-05-11T03-08-43Z.csv',
'f3ab6139-0a17-42da-848f-03d48913eda6',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'arrival_passengers_count',
'sub_type': 'general',
'title': 'Arrival Passengers Count',
'type': 'numeric',
'unit_of_measure': 'No. of arrival passengers cleared'},
{'name': 'depart_passengers_count',
'sub_type': 'general',
'title': 'Depart Passengers Count',
'type': 'numeric',
'unit_of_measure': 'No. of departing passengers cleared'}],
'CSV'),
('https://storage.data.gov.sg/number-of-persons-convicted-for-marriage-of-convenience-offences/resources/number-of-persons-convicted-for-marriage-of-convenience-offences-from-2013-onwards-2017-03-08T06-29-01Z.csv',
'97cd048c-88e4-45d6-8c45-bc323950d851',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'persons_moc_count',
'sub_type': 'general',
'title': 'Persons Moc Count',
'type': 'numeric',
'unit_of_measure': 'No. of persons convicted for MOC'}],
'CSV'),
('https://storage.data.gov.sg/number-of-pharmacies/resources/number-of-pharmacies-2016-07-05T09-45-41Z.csv',
'6de7dc53-5000-4017-95a5-999b1f438748',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'sector',
'sub_type': 'general',
'title': 'Sector',
'type': 'text'},
{'name': 'count',
'sub_type': 'general',
'title': 'No. of Pharmacies',
'type': 'numeric',
'unit_of_measure': 'No. of Pharmacies'}],
'CSV'),
('https://storage.data.gov.sg/number-of-pharmacists/resources/number-of-pharmacists-2016-07-10T12-58-08Z.csv',
'320056db-6215-42b4-9d8f-1b8ad1dd79c7',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'sector',
'sub_type': 'general',
'title': 'Sector',
'type': 'text'},
{'name': 'count',
'sub_type': 'general',
'title': 'Count',
'type': 'numeric',
'unit_of_measure': 'Pharmacists'}],
'CSV'),
('https://storage.data.gov.sg/number-of-physiotherapists/resources/number-of-physiotherapists-2016-07-10T13-15-50Z.csv',
'2fa7863a-0d84-4e1e-ab23-b9476afe77dd',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'sector',
'sub_type': 'general',
'title': 'Sector',
'type': 'text'},
{'name': 'count',
'sub_type': 'general',
'title': 'Count',
'type': 'numeric',
'unit_of_measure': 'Physiotherapists'}],
'CSV'),
('https://storage.data.gov.sg/number-of-polyclinics/resources/number-of-polyclinics-2016-07-05T09-39-25Z.csv',
'843df644-3447-4644-9020-d61549e7d085',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'count',
'sub_type': 'general',
'title': 'No. of Polyclinics',
'type': 'numeric',
'unit_of_measure': 'No. of Polyclinics'}],
'CSV'),
('https://storage.data.gov.sg/number-of-public-sector-dental-clinics/resources/number-of-public-sector-dental-clinics-2016-07-05T09-42-20Z.csv',
'b1800a31-c10d-4ddd-b955-4b3faa9de0a1',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'sector',
'sub_type': 'general',
'title': 'Sector',
'type': 'text'},
{'name': 'no_of_clinics',
'sub_type': 'general',
'title': 'No. of Clinics',
'type': 'numeric',
'unit_of_measure': 'No. of Clinics'}],
'CSV'),
('https://storage.data.gov.sg/number-of-radiation-licenses-issued-by-type-annual/resources/number-of-radiation-licenses-issued-by-type-annual-2016-06-15T08-49-09Z.csv',
'd646b8ad-cdae-44c6-a89e-18aeefbb2ba8',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'type_of_licence',
'sub_type': 'general',
'title': 'Type of Licence',
'type': 'text'},
{'name': 'number_of_licences_issued',
'sub_type': 'general',
'title': 'Number of Licences issued',
'type': 'numeric',
'unit_of_measure': 'Licence'}],
'CSV'),
('https://storage.data.gov.sg/number-of-resale-applications-registered-by-flat-type-quarterly/resources/number-of-resale-applications-registered-by-flat-type-2017-05-15T07-09-32Z.csv',
'144dbc6b-6113-4fa4-a583-c471eafce539',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'flat_type',
'sub_type': 'general',
'title': 'Flat type',
'type': 'text'},
{'name': 'no_of_resale_applications',
'sub_type': 'general',
'title': 'No of resale applications',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/number-of-residential-units-under-hdb-s-management/resources/dwelling-units-under-hdbs-management-by-town-and-flat-type-2016-10-31T09-37-26Z.csv',
'34b7e3fe-b3b9-4f08-a5ca-c8574f13ccbd',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'description': 'The 3 HDB estates are Bukit Timah, Central Area and Marine Parade. ',
'name': 'town_or_estate',
'sub_type': 'general',
'title': 'Town or Estate',
'type': 'text'},
{'description': 'From FY 2015 onwards, 2-room sold flats include 2-Room Flexi flats.',
'name': 'flat_type',
'sub_type': 'general',
'title': 'Flat Type',
'type': 'text'},
{'name': 'sold_or_rental',
'sub_type': 'general',
'title': 'Sold or Rental',
'type': 'text'},
{'name': 'no_of_dwelling_units',
'sub_type': 'general',
'title': 'Number of Dwelling Units',
'type': 'numeric',
'unit_of_measure': 'Number of Dwelling Units'}],
'CSV'),
('https://storage.data.gov.sg/number-of-sold-and-rented-hdb-properties-facilities/resources/number-of-sold-and-rented-hdb-residential-units-2017-03-15T06-04-32Z.csv',
'4541dd43-89a8-4e4b-881a-0cf1096489d0',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'name': 'property_type',
'sub_type': 'general',
'title': 'Property Type',
'type': 'text'},
{'name': 'category',
'sub_type': 'general',
'title': 'Category',
'type': 'text'},
{'name': 'flat_type',
'sub_type': 'general',
'title': 'Flat Type',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'no_of_units',
'sub_type': 'general',
'title': 'No. of Units',
'type': 'numeric',
'unit_of_measure': 'No. of Units'}],
'CSV'),
('https://storage.data.gov.sg/number-of-sold-and-rented-hdb-properties-facilities/resources/number-of-sold-and-rented-hdb-industrial-properties-2017-03-15T07-09-01Z.csv',
'99155858-f1db-45dc-8fc5-8eb3ec219ecf',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'name': 'property_type',
'sub_type': 'general',
'title': 'Property Type',
'type': 'text'},
{'name': 'category',
'sub_type': 'general',
'title': 'Category',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'no_of_units',
'sub_type': 'general',
'title': 'No. of Units',
'type': 'numeric',
'unit_of_measure': 'No. of Units'}],
'CSV'),
('https://storage.data.gov.sg/number-of-sold-and-rented-hdb-properties-facilities/resources/number-of-sold-and-rented-hdb-commercial-properties-2017-05-05T07-34-14Z.csv',
'2710a5c3-12b6-4e17-b339-123d811bb9c1',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'name': 'property_type',
'sub_type': 'general',
'title': 'Property type',
'type': 'text'},
{'name': 'category',
'sub_type': 'general',
'title': 'Category',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'no_of_units',
'sub_type': 'general',
'title': 'No. of Units',
'type': 'numeric',
'unit_of_measure': 'No. of Units'}],
'CSV'),
('https://storage.data.gov.sg/number-of-sold-and-rented-hdb-properties-facilities/resources/number-of-sold-and-rented-hdb-social-communal-facilities-2017-05-05T07-34-30Z.csv',
'0f813709-817b-4348-bb38-ac44eec03a8e',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'name': 'facility_type',
'sub_type': 'general',
'title': 'Facility Type',
'type': 'text'},
{'name': 'category',
'sub_type': 'general',
'title': 'Category',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'no_of_units',
'sub_type': 'general',
'title': 'No.of Units',
'type': 'numeric',
'unit_of_measure': 'No. of Units'}],
'CSV'),
('https://storage.data.gov.sg/number-of-speech-therapists/resources/number-of-speech-therapists-2016-07-10T13-13-20Z.csv',
'dd7c0893-451c-492f-b0db-49e969e14390',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'sector',
'sub_type': 'general',
'title': 'Sector',
'type': 'text'},
{'name': 'count',
'sub_type': 'general',
'title': 'Count',
'type': 'numeric',
'unit_of_measure': 'Speech Therapists'}],
'CSV'),
('https://storage.data.gov.sg/number-of-subletting-approvals-by-flat-type-quarterly/resources/subletting-approvals-by-flat-type-quarterly-2017-06-06T03-43-01Z.csv',
'963f7db6-900f-4401-8889-973b74abf00a',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'flat_type',
'sub_type': 'general',
'title': 'Flat Type',
'type': 'text'},
{'name': 'no_of_approvals',
'sub_type': 'general',
'title': 'Number of Approvals',
'type': 'numeric',
'unit_of_measure': 'Number of Approvals'}],
'CSV'),
('https://storage.data.gov.sg/number-of-traditional-chinese-medicine-practitioners/resources/number-of-traditional-chinese-medicine-practitioners-2016-07-10T13-22-46Z.csv',
'94ba6f5e-c319-4628-b66d-3ad64a91443c',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'sector',
'sub_type': 'general',
'title': 'Sector',
'type': 'text'},
{'name': 'count',
'sub_type': 'general',
'title': 'Count',
'type': 'numeric',
'unit_of_measure': 'TCM Practitioners'}],
'CSV'),
('https://storage.data.gov.sg/number-of-units-of-hdb-developments-by-status/resources/completion-status-of-hdb-residential-developments-2017-03-14T07-20-48Z.csv',
'ff97dd96-6db5-4eb7-ba79-ad8d4840a3aa',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'description': ['HDB flats include sold and rental flats constructed by HDB and units constructed by private developers under the Design, Build and Sell Scheme.',
'',
'Data prior to FY2011 excludes DBSS flats. '],
'name': 'type',
'sub_type': 'general',
'title': 'Property Type',
'type': 'text'},
{'description': 'Refers to units awarded/completed within the financial year. Units under construction refers to units that are under construction as at the end of the financial year. ',
'name': 'status',
'sub_type': 'general',
'title': 'Completion Status',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'no_of_units',
'sub_type': 'general',
'title': 'No. of Units',
'type': 'numeric',
'unit_of_measure': 'No. of Units'}],
'CSV'),
('https://storage.data.gov.sg/number-of-units-of-hdb-developments-by-status/resources/completion-status-of-hdb-residential-units-by-town-estate-2017-03-14T08-34-54Z.csv',
'7152faf5-c6db-44f7-92ec-9b4874b24d6f',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'description': 'The 3 HDB estates are Bukit Timah, Central Area and Marine Parade.',
'name': 'town_or_estate',
'sub_type': 'general',
'title': 'Town or Estate',
'type': 'text'},
{'description': 'Data includes flats constructed by HDB and flats constructed by private developers under the Design, Build and Sell Scheme. ',
'name': 'hdb_or_dbss',
'sub_type': 'general',
'title': 'HDB or DBSS',
'type': 'text'},
{'description': 'Refers to units constructed within the financial year. Units under construction refers to units that are under construction as at the end of the financial year. ',
'name': 'status',
'sub_type': 'general',
'title': 'Completion Status',
'type': 'text'},
{'name': 'no_of_units',
'sub_type': 'general',
'title': 'No. of Units',
'type': 'numeric',
'unit_of_measure': 'No. of Units'}],
'CSV'),
('https://storage.data.gov.sg/number-of-units-of-hdb-developments-by-status/resources/completion-status-of-hdb-commercial-developments-2017-03-14T07-21-06Z.csv',
'cd37aed4-2d93-4e05-b6f9-4b249603f125',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'name': 'type', 'sub_type': 'general', 'title': 'Type', 'type': 'text'},
{'name': 'status',
'sub_type': 'general',
'title': 'Completion Status',
'type': 'text'},
{'name': 'no_of_units',
'sub_type': 'general',
'title': 'No. of Units',
'type': 'numeric',
'unit_of_measure': 'No. of Units'}],
'CSV'),
('https://storage.data.gov.sg/occupancy-rate-of-ready-built-facilities/resources/occupancy-rate-of-ready-built-facilities-by-product-segment-2017-04-28T04-03-56Z.csv',
'571410cc-151b-4d45-9b5b-7fa79f45015e',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'product_segment',
'sub_type': 'general',
'title': 'Product Segment',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'occupancy_rate',
'sub_type': 'percentage',
'title': 'Occupancy Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/occupational-diseases-annual/resources/occupational-disease-incidence-rate-2017-02-24T02-51-04Z.csv',
'421799dc-711e-4e76-b44c-07eadb0a314f',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'no._of_cases_confirmed',
'sub_type': 'general',
'title': 'No. of Cases Confirmed',
'type': 'numeric',
'unit_of_measure': 'No. of Cases'},
{'name': 'incidence_rate',
'sub_type': 'general',
'title': 'Incidence Rate',
'type': 'numeric',
'unit_of_measure': 'Per 100,000 Employed Persons'},
{'description': '"na" : Data not available or not applicable',
'name': '3-year_rolling_ave',
'sub_type': 'general',
'title': '3-year Rolling Average Rate',
'type': 'numeric',
'unit_of_measure': 'Per 100,000 Employed Persons'}],
'CSV'),
('https://storage.data.gov.sg/occupational-diseases-annual/resources/confirmed-cases-of-occupational-diseases-by-type-of-disease-and-industry-2017-02-24T02-59-09Z.csv',
'1a8a52b3-66ff-4e2b-a058-3c1187d5ad18',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'confirmed_od_type',
'sub_type': 'general',
'title': 'Confirmed Occupational Disease Type',
'type': 'text'},
{'name': 'industry',
'sub_type': 'general',
'title': 'Industry',
'type': 'text'},
{'name': 'sub_industry',
'sub_type': 'general',
'title': 'Sub Industry',
'type': 'text'},
{'name': 'no._of_cases',
'sub_type': 'general',
'title': 'No. of Cases',
'type': 'numeric',
'unit_of_measure': 'No. of Cases'}],
'CSV'),
('https://storage.data.gov.sg/official-capacity-of-adult-prisons-penal-institutions-or-correctional-institutions/resources/official-capacity-of-adult-prisons-penal-institutions-or-correctional-institutions-2017-02-27T07-34-10Z.csv',
'94e0c7cd-b5e1-40d0-91ec-853002815a59',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'official_capacity_of_prisons',
'sub_type': 'general',
'title': 'Official Capacity Of Prisons',
'type': 'numeric',
'unit_of_measure': 'Number of Inmates'}],
'CSV'),
('https://storage.data.gov.sg/omnibus-survey/resources/omnibus-survey-2009-2011-2016-07-13T03-44-10Z.csv',
'91d8cafb-b462-45bd-b201-a9d046ad2f8e',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'name': 'age_group',
'sub_type': 'general',
'title': 'Age group',
'type': 'text'},
{'description': ['Proportion who are able to correctly recall the recommended number of servings (2–3 servings) for wholegrain consumption',
'Percentages are expressed as a value over 1, i.e. "1" represents 100%'],
'name': 'knowledge_on_wholegrain',
'sub_type': 'percentage',
'title': 'Knowledge on wholegrain',
'type': 'numeric'},
{'description': ['Proportion who are aware of trans-fat',
'Percentages are expressed as a value over 1, i.e. "1" represents 100%'],
'name': 'aware_of_transfat',
'sub_type': 'percentage',
'title': 'Aware of transfat',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/online-shoppers/resources/online-shoppers-2016-05-18T05-48-59Z.csv',
'3038ccbd-a78e-4fbe-a9a4-fde9230f480a',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'percentage_online_shoppers',
'sub_type': 'percentage',
'title': 'Percentage Online Shoppers',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/online-shoppers/resources/online-shoppers-by-age-group-2016-05-18T05-49-33Z.csv',
'5c8f9b98-3b8e-47ff-8b92-0339dc0b37ae',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'age_group',
'sub_type': 'general',
'title': 'Age Group',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'percentage_online_shoppers',
'sub_type': 'percentage',
'title': 'Percentage Online Shoppers',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/online-shoppers/resources/online-shoppers-by-value-of-purchase-2016-05-10T09-47-51Z.csv',
'694c17ef-9e78-47c3-98dd-c7eef13326c9',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'value_of_purchase',
'sub_type': 'general',
'title': 'Value Of Purchase',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'percentage_online_shoppers',
'sub_type': 'percentage',
'title': 'Percentage Online Shoppers',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/operating-expenditure-for-all-services-industries-annual/resources/operating-expenditure-for-all-services-industries-annual-2017-05-26T16-55-54Z.csv',
'18a4ff7d-43d4-4c83-9369-e52efcbd9ee0',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Operating Expenditure',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/operating-expenditure-for-all-services-industries-annual/resources/details-of-operating-expenditure-for-all-services-industries-annual-2017-05-26T16-56-00Z.csv',
'3c8b4c42-4150-4a94-b779-d9eeaf26529d',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Expenditure Item',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Operating Expenditure',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/operating-expenditure-for-food-beverage-services-annual/resources/operating-expenditure-for-food-beverage-services-annual-2016-11-29T16-27-57Z.csv',
'94d8c47d-6ec2-4c0d-891b-9c0626be0aa8',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Operating Expenditure',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/operating-expenditure-for-food-beverage-services-annual/resources/details-of-operating-expenditure-for-food-beverage-services-annual-2016-11-29T16-27-59Z.csv',
'a9195bc2-3efe-411e-a0ff-541cec5f4cfc',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Expenditure Item',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Operating Expenditure',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/operating-expenditure-for-health-services-annual/resources/operating-expenditure-for-health-services-annual-2016-10-06T16-03-08Z.csv',
'04336b44-1b9d-4ae0-9e5a-c7283dce433b',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Operating Expenditure',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/operating-expenditure-for-health-services-annual/resources/details-of-operating-expenditure-for-health-services-annual-2016-11-18T16-20-07Z.csv',
'563e2b23-ae0f-46a1-889c-cb0b8dc56851',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Expenditure Item',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Operating Expenditure',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/operating-expenditure-for-information-communications-services-annual/resources/operating-expenditure-for-information-communications-services-annual-2017-01-09T16-22-11Z.csv',
'be10c4df-4289-4716-9417-8e2e8446577e',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Operating Expenditure',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/operating-expenditure-for-information-communications-services-annual/resources/details-of-operating-expenditure-for-information-communications-services-annual-2017-05-26T16-56-09Z.csv',
'78e5a844-14af-42a7-b25e-94c4f1589154',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Expenditure Item',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Operating Expenditure',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/operating-expenditure-for-retail-trade-annual/resources/operating-expenditure-for-retail-trade-annual-2017-01-09T16-22-14Z.csv',
'1c9858df-fc13-42c4-81c9-29a931edd06d',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Operating Expenditure',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/operating-expenditure-for-retail-trade-annual/resources/details-of-operating-expenditure-for-retail-trade-annual-2017-01-09T16-22-16Z.csv',
'8547d2c9-d02b-4d52-b141-63b9d9e75aa8',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Expenditure Item',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Operating Expenditure',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/operating-expenditure-for-transport-storage-services-annual/resources/operating-expenditure-for-transport-storage-services-annual-2017-01-09T16-22-19Z.csv',
'be4a2834-daf8-4da2-85e6-d9db2b0adf9f',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Operating Expenditure',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/operating-expenditure-for-transport-storage-services-annual/resources/details-of-operating-expenditure-for-transport-storage-services-annual-2017-01-09T16-22-20Z.csv',
'c7d4e8ec-ff09-4504-ad74-57f1bb1bc87e',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Expenditure Item',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Operating Expenditure',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/operating-expenditure-for-wholesale-trade-annual/resources/operating-expenditure-for-wholesale-trade-annual-2017-01-09T16-22-22Z.csv',
'39ec7448-81d1-4f6c-b4ba-c5f606c174f9',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Operating Expenditure',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/operating-expenditure-for-wholesale-trade-annual/resources/details-of-operating-expenditure-for-wholesale-trade-annual-2017-01-13T16-23-44Z.csv',
'0d20a856-ed85-4d5c-a611-66b9616d48cd',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Expenditure Item',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Operating Expenditure',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/other-taxes-less-subsidies-on-production-by-industry-at-current-prices-annual/resources/other-taxes-less-subsidies-on-production-at-current-prices-annual-2017-05-26T16-56-20Z.csv',
'97cbfb7a-5c31-49a3-98c2-f0ce7956e4a8',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Other Taxes less Subsidies',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/other-taxes-less-subsidies-on-production-by-industry-at-current-prices-annual/resources/other-taxes-less-subsidies-on-production-by-industry-at-current-prices-annual-2017-05-26T16-56-25Z.csv',
'084fe04e-006f-4311-9cef-f15d27a5ff43',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Industry',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Other Taxes less Subsidies',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/output-saving-investment-at-current-market-prices-annual/resources/output-saving-investment-at-current-market-prices-annual-2016-06-15T03-58-15Z.csv',
'3fdc1bf9-01ae-4d67-9c90-4dc55fdc52f4',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/output-saving-investment-at-current-market-prices-annual/resources/output-saving-investment-components-at-current-market-prices-annual-2017-05-26T16-56-29Z.csv',
'cf4ca6eb-356b-4771-8b3d-de56756e799f',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Component',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/output-saving-investment-at-current-market-prices-annual/resources/gross-domestic-saving-at-current-market-prices-annual-2017-05-26T16-56-35Z.csv',
'6d1e458b-50f0-4633-b1bd-973cd45bd92d',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Component',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Components of Gross Domestic Saving',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'S$ Million'}],
'CSV'),
('https://storage.data.gov.sg/output-saving-investment-at-current-market-prices-in-usd-annual/resources/output-saving-investment-at-current-market-prices-in-usd-annual-2017-05-26T16-56-39Z.csv',
'6cca6806-485e-4f5b-9b4d-a2629d2e128e',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Output, Saving & Investment',
'type': 'numeric',
'unit_of_measure': 'US$ Million'}],
'CSV'),
('https://storage.data.gov.sg/output-saving-investment-at-current-market-prices-in-usd-annual/resources/average-exchange-rate-of-sgd-per-usd-annual-2017-05-26T16-56-45Z.csv',
'4577d33b-701c-4e34-a764-a7edff0edb6d',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Exchange Rate',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'S$/US$'}],
'CSV'),
('https://storage.data.gov.sg/output-saving-investment-at-current-market-prices-in-usd-annual/resources/output-saving-investment-components-at-current-market-prices-in-usd-annual-2017-05-26T16-56-50Z.csv',
'ff20efbd-a220-4b1e-8b8c-e2fd325417bc',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Output, Saving & Investment Components at Current Market Prices in USD, Annual',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Component',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Output, Saving & Investment Components',
'type': 'numeric',
'unit_of_measure': 'US$ Million'}],
'CSV'),
('https://storage.data.gov.sg/output-saving-investment-at-current-market-prices-in-usd-annual/resources/gross-domestic-saving-at-current-market-prices-in-usd-annual-2017-05-26T16-56-56Z.csv',
'cf279922-aafe-492f-947d-d94b179cf66e',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Component',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Components of Gross Domestic Saving',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Gross Domestic Saving',
'type': 'numeric',
'unit_of_measure': 'US$ Million'}],
'CSV'),
('https://storage.data.gov.sg/outstanding-housing-loans-for-owner-occupied-property/resources/outstanding-housing-loans-for-owner-occupied-property-quarterly-2016-02-12T03-13-47Z.csv',
'b07a4065-d690-493a-8cd9-6bb2bb14755b',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'limits_granted',
'sub_type': 'general',
'title': 'Limits Granted',
'type': 'numeric',
'unit_of_measure': 'S$ Million'},
{'name': 'utilised',
'sub_type': 'general',
'title': 'Utilised',
'type': 'numeric',
'unit_of_measure': 'S$ Million'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'non-performing_percentage',
'sub_type': 'percentage',
'title': 'Non-Performing Percentage',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/overall-crime-cases-crime-rate/resources/overall-crime-cases-crime-rate-2016-09-20T04-21-34Z.csv',
'56987172-00a3-4f0c-be4f-12f3e7ec4e1a',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'overall_crime_cases_recorded',
'sub_type': 'general',
'title': 'Overall Crime Cases Recorded',
'type': 'numeric',
'unit_of_measure': 'No. of Cases'},
{'name': 'overall_crime_rate',
'sub_type': 'general',
'title': 'Overall Crime Rate',
'type': 'numeric',
'unit_of_measure': 'Per 100,000 population'}],
'CSV'),
('https://storage.data.gov.sg/overall-crime-cases-crime-rate/resources/overall-crime-cases-reported-by-crime-classes-2016-09-20T04-26-16Z.csv',
'efc3dd2a-8779-46be-b8c7-882712d49451',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'crime_classes',
'sub_type': 'general',
'title': 'Crime Classes',
'type': 'text'},
{'name': 'crime_cases',
'sub_type': 'general',
'title': 'Crime Cases',
'type': 'numeric',
'unit_of_measure': 'No. Of Cases'}],
'CSV'),
('https://storage.data.gov.sg/pa-courses/resources/pa-courses-2016-02-15T09-23-23Z.csv',
'9432d5f0-fb3f-42cc-b11e-ee2e680399ac',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'type_of_course',
'sub_type': 'general',
'title': 'Type Of Course',
'type': 'text'},
{'name': 'total_participation',
'sub_type': 'general',
'title': 'Total Participation',
'type': 'numeric',
'unit_of_measure': 'No. of Participants'}],
'CSV'),
('https://storage.data.gov.sg/palliative-home-care-visits/resources/number-of-palliative-home-care-visits-2016-07-07T03-51-14Z.csv',
'e86f8c99-05d7-459b-ab11-aa790944d57c',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'type', 'sub_type': 'general', 'title': 'Type', 'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'count',
'sub_type': 'general',
'title': 'No. of Visits',
'type': 'numeric',
'unit_of_measure': 'No. of Visits'}],
'CSV'),
('https://storage.data.gov.sg/parliamentary-by-election-results/resources/parliamentary-by-election-results-by-candidate-2016-11-02T08-05-27Z.csv',
'1994c1fa-6dca-4a9c-9af7-ec414df506fd',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'constituency',
'sub_type': 'general',
'title': 'Constituency',
'type': 'text'},
{'description': '"na" : Before GRCs were introduced in 1988, all constituencies were single-member.',
'name': 'constituency_type',
'sub_type': 'general',
'title': 'Constituency Type',
'type': 'text'},
{'description': 'For GRCs, candidate names are separated by the pipe character "|". ',
'name': 'candidates',
'sub_type': 'general',
'title': 'Candidates',
'type': 'text'},
{'name': 'party', 'sub_type': 'general', 'title': 'Party', 'type': 'text'},
{'description': '"na" : "na" implies a walkover.',
'name': 'vote_count',
'sub_type': 'general',
'title': 'Vote count',
'type': 'numeric',
'unit_of_measure': 'No. of Votes'},
{'description': ['Percentages are expressed as a value over 1, i.e. "1" represents 100%',
'"na" : "na" implies a walkover.'],
'name': 'vote_percentage',
'sub_type': 'percentage',
'title': 'Percentage of Valid Votes',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/parliamentary-by-election-results/resources/parliamentary-by-election-dates-2016-11-02T08-11-45Z.csv',
'8ea1ae5f-8585-4094-a292-72a3bf7177b2',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'constituency',
'sub_type': 'general',
'title': 'Constituency',
'type': 'text'},
{'format': 'YYYY-MM-DD',
'name': 'nomination_day',
'sub_type': 'date',
'title': 'Nomination Day',
'type': 'datetime'},
{'description': '"na" : "na" implies a walkover.',
'format': 'YYYY-MM-DD',
'name': 'polling_day',
'sub_type': 'date',
'title': 'Polling Day',
'type': 'datetime'}],
'CSV'),
('https://storage.data.gov.sg/parliamentary-by-election-results/resources/parliamentary-by-election-registered-electors-rejected-votes-and-spoilt-ballots-2017-05-31T10-19-32Z.csv',
'a15dd984-9fb0-4d1d-8707-8e33f315638c',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'constituency',
'sub_type': 'general',
'title': 'Constituency',
'type': 'text'},
{'name': 'no_of_registered_electors',
'sub_type': 'general',
'title': 'No of Registered Electors',
'type': 'numeric',
'unit_of_measure': 'No. of People'},
{'description': '"na" : "na" means there was no contest.',
'name': 'no_of_rejected_votes',
'sub_type': 'general',
'title': 'No. of Rejected Votes',
'type': 'numeric',
'unit_of_measure': 'No. of Rejected Votes'},
{'description': '"na" : "na" means there was no contest.',
'name': 'no_of_spoilt_ballot_papers',
'sub_type': 'general',
'title': 'No. of Spoilt Ballot Papers',
'type': 'numeric',
'unit_of_measure': 'No. of Spoilt Ballot Papers'}],
'CSV'),
('https://storage.data.gov.sg/parliamentary-general-election-results/resources/parliamentary-general-election-results-by-candidate-2016-11-01T07-04-11Z.csv',
'4706f2cb-a909-4cc0-bd3d-f366c34cf6af',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'constituency',
'sub_type': 'general',
'title': 'Constituency',
'type': 'text'},
{'description': '"na" : Before GRCs were introduced in 1988, all constituencies were single-member.',
'name': 'constituency_type',
'sub_type': 'general',
'title': 'Constituency Type',
'type': 'text'},
{'description': 'For GRCs, candidate names are separated by the pipe character "|". ',
'name': 'candidates',
'sub_type': 'general',
'title': 'Candidates',
'type': 'text'},
{'name': 'party', 'sub_type': 'general', 'title': 'Party', 'type': 'text'},
{'description': '"na" : "na" implies a walkover. ',
'name': 'vote_count',
'sub_type': 'general',
'title': 'Vote Count',
'type': 'numeric',
'unit_of_measure': 'No. of Votes'},
{'description': ['Percentages are expressed as a value over 1, i.e. "1" represents 100%',
'"na" : "na" implies a walkover. '],
'name': 'vote_percentage',
'sub_type': 'percentage',
'title': 'Percentage of Valid Votes',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/parliamentary-general-election-results/resources/parliamentary-general-election-dates-2016-11-01T07-13-38Z.csv',
'4e5d3f48-c728-4db7-961c-d337b17ecefb',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'format': 'YYYY-MM-DD',
'name': 'nomination_day',
'sub_type': 'date',
'title': 'Nomination Day',
'type': 'datetime'},
{'format': 'YYYY-MM-DD',
'name': 'polling_day',
'sub_type': 'date',
'title': 'Polling Day',
'type': 'datetime'}],
'CSV'),
('https://storage.data.gov.sg/parliamentary-general-election-results/resources/parliamentary-general-election-registered-electors-rejected-votes-and-spoilt-ballots-2017-05-31T09-38-34Z.csv',
'f33c3652-ec6a-46e6-9c04-4f5c869d99b2',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'constituency',
'sub_type': 'general',
'title': 'Constituency',
'type': 'text'},
{'name': 'no_of_registered_electors',
'sub_type': 'general',
'title': 'No. of Registered Electors',
'type': 'numeric',
'unit_of_measure': 'No. of People'},
{'description': '"na" : "na" means there was no contest.',
'name': 'no_of_rejected_votes',
'sub_type': 'general',
'title': 'No. of Rejected Votes',
'type': 'numeric',
'unit_of_measure': 'No. of Rejected Votes'},
{'description': '"na" : "na" means there was no contest.',
'name': 'no_of_spoilt_ballot_papers',
'sub_type': 'general',
'title': 'No. of Spoilt Ballot Papers',
'type': 'numeric',
'unit_of_measure': 'No. of Spoilt Ballot Papers'}],
'CSV'),
('https://storage.data.gov.sg/parliamentary-general-election-results/resources/list-of-political-parties-2016-11-01T07-18-17Z.csv',
'3188cb4c-5a14-4e48-b419-2154d68bd5f4',
[{'name': 'abbreviation',
'sub_type': 'general',
'title': 'Abbreviation',
'type': 'text'},
{'name': 'political_party',
'sub_type': 'general',
'title': 'Political Party Name',
'type': 'text'}],
'CSV'),
('https://storage.data.gov.sg/passion-card-membership/resources/passion-card-membership-2016-02-12T05-58-50Z.csv',
'2a9b00d1-d66f-4757-b59b-4d1c2f00ee3f',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'total_passion_card_members',
'sub_type': 'general',
'title': 'Total Passion Card Members',
'type': 'numeric',
'unit_of_measure': 'No. of Passion Cards'}],
'CSV'),
('https://storage.data.gov.sg/patents-applied-awarded-and-owned-by-sector/resources/patents-applied-awarded-and-owned-by-sector-2016-10-05T08-36-42Z.csv',
'8b40d22f-9dcc-41b3-9bac-dec46c8f6620',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'sector',
'sub_type': 'general',
'title': 'Sector',
'type': 'text'},
{'name': 'patents_applied',
'sub_type': 'general',
'title': 'Patents Applied',
'type': 'numeric',
'unit_of_measure': 'No. of Patents'},
{'name': 'patents_awarded',
'sub_type': 'general',
'title': 'Patents Awarded',
'type': 'numeric',
'unit_of_measure': 'No. of Patents'},
{'name': 'patents_owned',
'sub_type': 'general',
'title': 'Patents Owned',
'type': 'numeric',
'unit_of_measure': 'No. of Patents'}],
'CSV'),
('https://storage.data.gov.sg/per-capita-gni-and-per-capita-gdp-at-current-market-prices-annual/resources/per-capita-gni-and-per-capita-gdp-at-current-market-prices-annual-2017-05-26T16-57-00Z.csv',
'3034c198-c742-44f0-8e5c-251c55dda577',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'GDP/GNI Per Capita',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/per-capita-gni-and-per-capita-gdp-at-current-market-prices-annual/resources/per-capita-gni-and-per-capita-gdp-at-current-market-prices-in-usd-annual-2017-05-26T16-57-04Z.csv',
'e9246eb0-8c30-42bc-8873-03b6e67128ec',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1', 'sub_type': 'general', 'title': 'Main', 'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'GDP/GNI Per Capita',
'type': 'numeric',
'unit_of_measure': 'US$'}],
'CSV'),
('https://storage.data.gov.sg/percentage-of-a-level-students-who-passed-general-paper-or-knowledge-and-inquiry/resources/percentage-of-a-level-students-who-passed-gp-or-ki-2016-10-10T05-51-15Z.csv',
'605ba28d-7873-404b-8629-94eefcb5ce31',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'race', 'sub_type': 'general', 'title': 'Race', 'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'percentage_passed_gp_ki',
'sub_type': 'percentage',
'title': 'Percentage of Students',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/percentage-of-a-level-students-who-passed-mother-tongue-language-at-ao-h1-level/resources/percentage-of-a-level-students-who-passed-mtl-at-ao-h1-level-2016-10-10T07-09-25Z.csv',
'44611e52-4a37-4071-810b-cfbdf858b32a',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'race', 'sub_type': 'general', 'title': 'Race', 'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'percentage_passed_mtl_ao_h1',
'sub_type': 'percentage',
'title': 'Percentage of Students',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/percentage-of-gce-o-level-students-who-passed-english-language/resources/percentage-of-gce-o-level-students-who-passed-english-language-2016-10-10T06-36-41Z.csv',
'83281660-6202-476d-bf31-af13a7c3da4c',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'race', 'sub_type': 'general', 'title': 'Race', 'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'percentage_passed_olevel_el',
'sub_type': 'percentage',
'title': 'Percentage of Students',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/percentage-of-gce-o-level-students-who-passed-mathematics/resources/percentage-of-gce-o-level-students-who-passed-mathematics-2016-10-10T06-57-06Z.csv',
'90da3390-9628-4bb7-836d-66e5839e271f',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'race', 'sub_type': 'general', 'title': 'Race', 'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'percentage_passed_olevels_math',
'sub_type': 'percentage',
'title': 'Percentage Passed O Level Math',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/percentage-of-gce-o-level-students-who-passed-mother-tongue-language/resources/percentage-of-gce-o-level-students-who-passed-mtl-2016-10-10T06-41-35Z.csv',
'ba5669ab-8e60-4d0c-b23a-8186b31c99d2',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'race', 'sub_type': 'general', 'title': 'Race', 'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'percentage_passed_olevels_mtl',
'sub_type': 'percentage',
'title': 'Percentage of Students',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/percentage-of-p1-cohort-admitted-to-post-secondary-education/resources/percentage-of-p1-cohort-admitted-to-post-secondary-education-by-type-of-post-sec-course-2016-10-10T07-38-44Z.csv',
'173b95bc-6e8b-4af9-a166-4441789383cd',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'post_secondary_course',
'sub_type': 'general',
'title': 'Post-Secondary Course',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'percentage',
'sub_type': 'percentage',
'title': 'Percentage',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/percentage-of-p1-cohort-admitted-to-post-secondary-education/resources/percentage-of-p1-cohort-admitted-to-post-secondary-education-2016-10-10T07-39-59Z.csv',
'6d8044d1-ee0c-4a58-9e96-24713212a8a1',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'race', 'sub_type': 'general', 'title': 'Race', 'type': 'text'},
{'description': ['Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'"na" : Data not available or not applicable'],
'name': 'percentage_p1_cohort_post_sec',
'sub_type': 'percentage',
'title': 'Percentage of P1 Cohort',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/percentage-of-p1-cohort-eligible-for-express-normal-acad-normal-tech/resources/percentage-of-p1-cohort-who-sat-for-psle-and-are-eligible-for-express-n-a-and-n-t-course-2016-10-10T07-26-58Z.csv',
'ed4ab4f4-b69c-4761-ad0a-a2ce4011a3ec',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'percentage',
'sub_type': 'percentage',
'title': 'Percentage',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/percentage-of-p1-cohort-who-did-not-complete-secondary-education/resources/percentage-of-p1-cohort-who-did-not-complete-secondary-education-2016-08-31T07-05-50Z.csv',
'3f529728-54f9-415e-af43-96babc18d514',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'percentage',
'sub_type': 'percentage',
'title': 'Percentage',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/percentage-of-p1-cohort-who-had-at-least-5-n-level-passes-or-3-o-level-passes/resources/percentage-of-p1-cohort-who-had-at-least-5-n-level-passes-or-3-o-level-passes-2016-10-10T07-29-43Z.csv',
'ff367fe9-7460-46ee-bb37-61a7dc2a4116',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'percentage',
'sub_type': 'percentage',
'title': 'Percentage',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/percentage-of-psle-students-who-scored-a-c-by-subject/resources/percentage-of-psle-students-who-scored-a-to-c-in-standard-english-language-2016-10-10T06-16-39Z.csv',
'f1270a83-f3e4-413e-b95e-a63817b14fcb',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'race', 'sub_type': 'general', 'title': 'Race', 'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'percentage_psle_eng',
'sub_type': 'percentage',
'title': 'Percentage of PSLE Students',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/percentage-of-psle-students-who-scored-a-c-by-subject/resources/percentage-of-psle-students-who-scored-a-to-c-in-standard-mathematics-2016-10-10T06-17-33Z.csv',
'd08a23b5-772d-4b95-9d5d-c847cfdda685',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'race', 'sub_type': 'general', 'title': 'Race', 'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'percentage_psle_math',
'sub_type': 'percentage',
'title': 'Percentage of PSLE Students',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/percentage-of-psle-students-who-scored-a-c-by-subject/resources/percentage-of-psle-students-who-scored-a-to-c-in-standard-mother-tongue-language-2016-10-10T06-18-59Z.csv',
'9aa243d9-5f97-48e9-adbc-ecd3cd4ad06d',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'race', 'sub_type': 'general', 'title': 'Race', 'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'percentage_psle_mtl',
'sub_type': 'percentage',
'title': 'Percentage of PSLE Students',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/percentage-of-psle-students-who-scored-a-c-by-subject/resources/percentage-of-psle-students-who-scored-a-to-c-in-standard-science-2016-10-10T06-32-27Z.csv',
'e01fd2b4-d394-4940-ad5c-c8a7c83412e9',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'race', 'sub_type': 'general', 'title': 'Race', 'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'percentage_psle_science',
'sub_type': 'percentage',
'title': 'Percentage of PSLE Students',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/percentage-of-students-eligible-for-express-normal-academic-and-normal-technical/resources/percentage-of-psle-students-eligible-for-express-normal-academic-and-normal-tech-2016-10-10T06-00-12Z.csv',
'0b65d021-6ed1-407c-a261-2ce220cab582',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'race', 'sub_type': 'general', 'title': 'Race', 'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'percentage',
'sub_type': 'percentage',
'title': 'Percentage',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/percentage-of-students-with-at-least-3-a-h2-passes-and-pass-in-gp-or-ki/resources/percentage-of-students-with-at-least-3-a-h2-passes-and-pass-in-gp-or-ki-2016-10-10T07-13-42Z.csv',
'4e97c9f9-c15b-4069-b5ce-0f06ed440e30',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'race', 'sub_type': 'general', 'title': 'Race', 'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'percentage_passes_alevels',
'sub_type': 'percentage',
'title': 'Percentage of Students',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/percentage-of-students-with-at-least-3-o-level-passes/resources/percentage-of-students-with-at-least-3-o-level-passes-2016-10-10T07-18-59Z.csv',
'5b2ac42c-3e4e-4526-8b87-592ab7bde5df',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'race', 'sub_type': 'general', 'title': 'Race', 'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'percentage_3_olevel_passes',
'sub_type': 'percentage',
'title': 'Percentage of Students',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/percentage-of-students-with-at-least-5-o-level-passes/resources/percentage-of-students-with-at-least-5-o-level-passes-2016-10-10T07-16-34Z.csv',
'4972cf44-128d-45fb-80d9-66b11907945e',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'race', 'sub_type': 'general', 'title': 'Race', 'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'percentage_5_olevel_passes',
'sub_type': 'percentage',
'title': 'Percentage of Students',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/percent-change-cpi-corresponding-period-previous-year-households-different-income-groups-half-yearly/resources/percent-change-in-cpi-over-same-period-last-year-by-income-group-half-yearly-2017-05-26T16-57-09Z.csv',
'd8d67702-f88f-4373-90de-3b9b42f37d8a',
[{'format': 'YYYY-[H]H',
'name': 'half_year',
'sub_type': 'half_year',
'title': 'Half year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Income Group',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Percentage Change in Consumer Price Index',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/percent-change-cpi-corresponding-period-previous-year-households-different-income-groups-half-yearly/resources/percent-change-in-cpi-over-same-period-last-year-by-income-group-and-division-half-yearly-2017-05-26T16-57-16Z.csv',
'9ee38b88-e9dd-4098-bcee-79a824e29039',
[{'format': 'YYYY-[H]H',
'name': 'half_year',
'sub_type': 'half_year',
'title': 'Half year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Income Group',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Division',
'type': 'text'},
{'description': ['Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'"na" : Data not available or not applicable'],
'name': 'value',
'sub_type': 'percentage',
'title': 'Percentage Change in Consumer Price Index',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/percent-change-cpi-households-diff-income-groups-annual/resources/percent-change-in-consumer-price-index-cpi-over-corresponding-period-of-previous-year-b-2016-06-14T06-25-36Z.csv',
'd6bea352-57ef-428d-8370-24a5f9d42b8d',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Income Group',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Consumer Price Index',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/percent-change-cpi-over-corresponding-period-previous-year-base-year-2014-monthly/resources/percent-change-in-cpi-over-same-period-last-year-by-measure-monthly-2017-05-26T16-58-46Z.csv',
'80bfffce-a8ff-4243-8978-8c888b2f83cf',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Measure',
'type': 'text'},
{'description': ['Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'"na" : Data not available or not applicable'],
'name': 'value',
'sub_type': 'percentage',
'title': 'Percentage Change in Consumer Price Index',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/percent-change-cpi-over-corresponding-period-previous-year-base-year-2014-monthly/resources/percent-change-in-cpi-over-same-period-last-year-by-division-monthly-2017-05-26T16-59-08Z.csv',
'805eaf76-aad0-4bec-8611-3293e0aa78a0',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Measure',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Division',
'type': 'text'},
{'description': ['Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'"na" : Data not available or not applicable'],
'name': 'value',
'sub_type': 'percentage',
'title': 'Percentage Change in Consumer Price Index',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/percent-change-cpi-over-corresponding-period-previous-year-base-year-2014-monthly/resources/percent-change-in-cpi-over-same-period-last-year-by-group-monthly-2017-05-26T17-00-16Z.csv',
'ded4f2ec-ba50-498e-9776-0bca41c1a529',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Measure',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Division',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Group',
'type': 'text'},
{'description': ['Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'"na" : Data not available or not applicable'],
'name': 'value',
'sub_type': 'percentage',
'title': 'Percentage Change in Consumer Price Index',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/percent-change-cpi-over-corresponding-period-previous-year-households-different-income-groups-annual/resources/percent-change-in-cpi-over-same-period-last-year-by-income-group-half-yearly-2017-05-26T17-00-37Z.csv',
'68f7398e-43ec-40fb-b1e1-61ec5c9de911',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Income Group',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Percentage Change in Consumer Price Index',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/percent-change-cpi-over-corresponding-period-previous-year-households-different-income-groups-annual/resources/percent-change-in-cpi-over-same-period-last-year-by-income-group-and-division-annual-2017-05-26T17-01-11Z.csv',
'86a4eec9-9757-4b0d-b60e-cdc2471bc37d',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Income Group',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Division',
'type': 'text'},
{'description': ['Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'"na" : Data not available or not applicable'],
'name': 'value',
'sub_type': 'percentage',
'title': 'Percentage Change in Consumer Price Index',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/percent-change-domestic-supply-price-index-previous-year-by-commodity-section-1-digit-level-annual/resources/domestic-supply-price-index-2017-05-26T17-01-15Z.csv',
'67d18367-3bfb-4f6a-b7de-7b7cb880d9e4',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Main Index',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Index'}],
'CSV'),
('https://storage.data.gov.sg/percent-change-domestic-supply-price-index-previous-year-by-commodity-section-1-digit-level-annual/resources/domestic-supply-price-index-by-commodity-section-2017-05-26T17-01-19Z.csv',
'fcec6a3f-4886-43c6-bab0-f74b490bb363',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Main Index',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Commodity Section',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Index'}],
'CSV'),
('https://storage.data.gov.sg/percent-change-domestic-supply-price-indexr-previous-year-by-commodity-division-2-digit-level-annual/resources/domestic-supply-price-index-by-commodity-division-2017-05-26T17-01-26Z.csv',
'36465fb7-c78f-4899-95e0-f7c9898568ab',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Commodity Division',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Index'}],
'CSV'),
('https://storage.data.gov.sg/percent-change-in-cpi-over-corresponding-period-of-previous-year-base-year-2014-100-annual/resources/percent-change-in-cpi-over-corresponding-period-of-previous-year-all-items-2017-05-26T17-03-03Z.csv',
'01e85012-332d-48b0-85a0-c6a4964718c7',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'All Items',
'type': 'text'},
{'description': ['Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'"na" : Data not available or not applicable'],
'name': 'value',
'sub_type': 'percentage',
'title': 'Percent Change',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/percent-change-in-cpi-over-corresponding-period-of-previous-year-base-year-2014-100-annual/resources/percent-change-in-cpi-over-corresponding-period-of-previous-year-by-division-2017-05-26T17-03-09Z.csv',
'9da61064-b9a6-4866-b528-dd02759ce1fc',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'All Items',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Division',
'type': 'text'},
{'description': ['Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'"na" : Data not available or not applicable'],
'name': 'value',
'sub_type': 'percentage',
'title': 'Percent Change',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/percent-change-in-cpi-over-corresponding-period-of-previous-year-base-year-2014-100-annual/resources/percent-change-in-cpi-over-corresponding-period-of-previous-year-by-group-2017-05-26T17-03-16Z.csv',
'8741b6b0-81fe-4f3e-a412-5d7dd669bfb9',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'All Items',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Division',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Group',
'type': 'text'},
{'description': ['Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'"na" : Data not available or not applicable'],
'name': 'value',
'sub_type': 'percentage',
'title': 'Percent Change',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/persons-assured-amount-under-home-protection-scheme-as-at-end-of-quarter/resources/number-of-persons-under-home-protection-scheme-as-at-end-of-quarter-2017-06-14T08-00-04Z.csv',
'29f53e29-8b95-49b2-940d-c53e0edfdd24',
[{'format': 'YYYY-[Q]Q',
'name': 'qtr',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'description': 'Figures are rounded to the nearest thousand.',
'name': 'no_of_persons',
'sub_type': 'general',
'title': 'Number of persons',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/persons-assured-amount-under-home-protection-scheme-as-at-end-of-quarter/resources/assured-amount-for-home-protection-scheme-as-at-end-of-quarter-2017-06-14T08-01-26Z.csv',
'84a5be8f-88cf-4a1c-937b-d73df111b34a',
[{'format': 'YYYY-[Q]Q',
'name': 'qtr',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'description': 'Figures are rounded to the nearest hundred thousand dollars.',
'name': 'assured_amt',
'sub_type': 'general',
'title': 'Assured amount',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/persons-who-completed-skills-training-and-continuing-academic-education-programmes/resources/completion-count-of-skills-training-and-continuing-academic-education-programmes-at-ite-2017-01-11T03-05-31Z.csv',
'856beac2-8fdc-42b2-97b6-7df9ece436b8',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'gender',
'sub_type': 'general',
'title': 'Gender',
'type': 'text'},
{'name': 'nmc_course_level',
'sub_type': 'general',
'title': 'National Manpower Council Course level',
'type': 'text'},
{'name': 'completion_count',
'sub_type': 'general',
'title': 'Completion count',
'type': 'numeric',
'unit_of_measure': 'Number of Students'}],
'CSV'),
('https://storage.data.gov.sg/pollution-control-number-of-hazardous-substances-licences-and-permits-issued-annual/resources/pollution-control-number-of-hazardous-substances-licences-and-permits-issued-annual-2016-06-27T10-55-21Z.csv',
'c5817418-a498-4b61-a962-4d36dbc9dbf0',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'hazardous_substances_licences_issued_annual',
'sub_type': 'general',
'title': 'Hazardous Substances Licences issued',
'type': 'numeric',
'unit_of_measure': 'Count'},
{'name': 'hazardous_substances_permits_issued_annual',
'sub_type': 'general',
'title': 'Hazardous Substances Permits issued',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/population-of-inmates-in-drc/resources/population-of-inmates-in-drug-rehabilitation-centre-drc-2017-02-27T07-00-32Z.csv',
'55e14744-3349-4778-bccb-900050163e9c',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'number_of_population',
'sub_type': 'general',
'title': 'Number Of Population',
'type': 'numeric',
'unit_of_measure': 'Number of Inmates'}],
'CSV'),
('https://storage.data.gov.sg/population-of-inmates-in-drc/resources/population-of-inmates-in-drug-rehabilitation-centre-drc-by-age-group-2017-02-27T07-12-45Z.csv',
'36fe2a6c-2007-4b85-ace9-89a8c79780d5',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'population_by_age_group',
'sub_type': 'general',
'title': 'Population By Age Group',
'type': 'text'},
{'name': 'number_of_population',
'sub_type': 'general',
'title': 'Number Of Population',
'type': 'numeric',
'unit_of_measure': 'Number of Inmates'}],
'CSV'),
('https://storage.data.gov.sg/population-of-inmates-in-drc/resources/population-of-inmates-in-drug-rehabilitation-centre-drc-by-education-level-2017-02-27T07-20-50Z.csv',
'cece01dc-d600-42dc-8546-ac9a4e97eab4',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'population_by_education_level',
'sub_type': 'general',
'title': 'Population By Education Level',
'type': 'text'},
{'name': 'number_of_population',
'sub_type': 'general',
'title': 'Number Of Population',
'type': 'numeric',
'unit_of_measure': 'Number of Inmates'}],
'CSV'),
('https://storage.data.gov.sg/population-of-inmates-in-drc/resources/population-of-inmates-in-drug-rehabilitation-centre-drc-by-gender-2017-02-27T07-22-38Z.csv',
'454c2c76-a1ff-4a00-88b7-9dc37ee51cb8',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'population_by_gender',
'sub_type': 'general',
'title': 'Population By Gender',
'type': 'text'},
{'name': 'number_of_population',
'sub_type': 'general',
'title': 'Number Of Population',
'type': 'numeric',
'unit_of_measure': 'Number of Inmates'}],
'CSV'),
('https://storage.data.gov.sg/postal-network-by-type/resources/postal-network-by-type-2016-06-13T10-42-19Z.csv',
'942646ed-dddb-4c05-821c-e1d37ed8d7be',
[{'format': 'YYYY-[H]H',
'name': 'half_year',
'sub_type': 'half_year',
'title': 'Half Year',
'type': 'datetime'},
{'name': 'type', 'sub_type': 'general', 'title': 'Type', 'type': 'text'},
{'name': 'number',
'sub_type': 'general',
'title': 'Number',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/presidential-election-results/resources/presidential-election-results-2016-11-02T08-55-00Z.csv',
'e2723af7-ca95-4ccb-9c96-5e6720f57e5d',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'candidates',
'sub_type': 'general',
'title': 'Candidates',
'type': 'text'},
{'description': '"na" : "na" implies a walkover.',
'name': 'vote_count',
'sub_type': 'general',
'title': 'Vote count',
'type': 'numeric',
'unit_of_measure': 'No. of Votes'},
{'description': ['Percentages are expressed as a value over 1, i.e. "1" represents 100%',
'"na" : "na" implies a walkover.'],
'name': 'vote_percentage',
'sub_type': 'percentage',
'title': 'Percentage of Valid Votes',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/presidential-election-results/resources/presidential-election-dates-2016-11-02T08-55-44Z.csv',
'388a76da-7a77-46ca-982a-53d48abadbdd',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'format': 'YYYY-MM-DD',
'name': 'nomination_day',
'sub_type': 'date',
'title': 'Nomination Day',
'type': 'datetime'},
{'description': '"na" : "na" implies a walkover.',
'format': 'YYYY-MM-DD',
'name': 'polling_day',
'sub_type': 'date',
'title': 'Polling Day',
'type': 'datetime'}],
'CSV'),
('https://storage.data.gov.sg/presidential-election-results/resources/presidential-election-registered-electors-rejected-votes-and-spoilt-ballots-2017-05-31T10-25-21Z.csv',
'b7e239f8-1abd-4714-bc2c-57433bcbec1b',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'no_of_registered_electors',
'sub_type': 'general',
'title': 'No of Registered Electors',
'type': 'numeric',
'unit_of_measure': 'No. of People'},
{'description': '"na" : "na" means there was no contest.',
'name': 'no_of_rejected_votes',
'sub_type': 'general',
'title': 'No. of Rejected Votes',
'type': 'numeric',
'unit_of_measure': 'No. of Rejected Votes'},
{'description': '"na" : "na" means there was no contest.',
'name': 'no_of_spoilt_ballot_papers',
'sub_type': 'general',
'title': 'No. of Spoilt Ballot Papers',
'type': 'numeric',
'unit_of_measure': 'No. of Spoilt Ballot Papers'}],
'CSV'),
('https://storage.data.gov.sg/prevalence-of-hypertension-diabetes-high-total-cholesterol-obesity-and-daily-smoking/resources/prevalence-of-hypertension-diabetes-high-total-cholesterol-obesity-and-daily-smoking-2017-03-28T01-57-21Z.csv',
'c5f26f19-b6aa-4f4f-ae5b-ee62d840f8e7',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'disease',
'sub_type': 'general',
'title': 'Disease',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'prevalence_rate',
'sub_type': 'percentage',
'title': 'Prevalence rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/percentage-of-primary-1-and-equivalent-age-groups-medically-screened/resources/percentage-of-primary-1-and-equivalent-age-groups-medically-screened-2017-02-18T13-38-42Z.csv',
'6e0e6c64-ad77-4853-bc56-dc7bff959556',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'description': ['Percentage of Primary 1 and equivalent age groups medically screened',
'Percentages are expressed as a value over 100, i.e. "100" represents 100%'],
'name': 'percent',
'sub_type': 'percentage',
'title': 'Percent',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/percentage-of-primary-1-and-equivalent-age-groups-medically-screened/resources/percentage-of-women-aged-50-to-69-years-who-have-gone-for-mammography-in-the-last-2-years-2017-04-03T06-49-35Z.csv',
'ae7613d6-8e7c-45a7-a134-0b403c9d9023',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'description': ['Percentage of women aged 50 to 69 years who have gone for mammography in the last 2 years',
'Percentages are expressed as a value over 100, i.e. "100" represents 100%'],
'name': 'percent',
'sub_type': 'percentage',
'title': 'Percent',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/percentage-of-primary-1-and-equivalent-age-groups-medically-screened/resources/percentage-of-women-aged-25-to-69-years-who-have-pap-smear-done-in-the-last-3-years-2017-03-28T03-14-57Z.csv',
'b011c120-589f-44f4-94bb-1390091b1b71',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'description': ['Percentage of women aged 25 to 69 years who have pap smear done in the last 3 years',
'Percentages are expressed as a value over 100, i.e. "100" represents 100%'],
'name': 'percent',
'sub_type': 'percentage',
'title': 'Percent',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/price-indices-of-non-landed-properties-by-locality/resources/property-price-index-of-non-landed-properties-by-locality-quarterly-2016-09-15T07-28-18Z.csv',
'f83f5994-e7f8-4dce-b70d-8e7b3cc3b8fb',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'market_segment',
'sub_type': 'general',
'title': 'Market Segment',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'price_index',
'sub_type': 'percentage',
'title': 'Price Index (1Q2009=100)',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/price-indices-of-selected-consumer-items-base-year-2014-100-monthly/resources/price-indices-of-selected-consumer-items-base-year-2014-100-monthly-2017-05-26T17-03-45Z.csv',
'13486cf5-c297-45b7-a1fe-a6c5ff8d1235',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Items',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'value',
'sub_type': 'general',
'title': 'Index',
'type': 'numeric',
'unit_of_measure': 'Index'}],
'CSV'),
('https://storage.data.gov.sg/price-range-of-hdb-flats-offered/resources/price-range-of-hdb-flats-offered-2016-11-24T06-53-12Z.csv',
'd23b9636-5812-4b33-951e-b209de710dd5',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'name': 'town', 'sub_type': 'general', 'title': 'Town', 'type': 'text'},
{'name': 'room_type',
'sub_type': 'general',
'title': 'Room Type',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'min_selling_price',
'sub_type': 'general',
'title': 'Min. Selling Price',
'type': 'numeric',
'unit_of_measure': 'S$'},
{'description': '"na" : Data not available or not applicable',
'name': 'max_selling_price',
'sub_type': 'general',
'title': 'Max Selling Price',
'type': 'numeric',
'unit_of_measure': 'S$'},
{'description': '"na" : Data not available or not applicable',
'name': 'min_selling_price_less_ahg_shg',
'sub_type': 'general',
'title': 'Min Selling Price Less AHG/SHG',
'type': 'numeric',
'unit_of_measure': 'S$'},
{'description': '"na" : Data not available or not applicable',
'name': 'max_selling_price_less_ahg_shg',
'sub_type': 'general',
'title': 'Max Selling Price Less AHG/SHG',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/prices-of-major-drugs-of-abuse/resources/prices-of-major-drugs-of-abuse-2016-07-01T09-32-26Z.csv',
'485fcf1f-eaec-41d3-a674-434704544bf8',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'drug', 'sub_type': 'general', 'title': 'Drug', 'type': 'text'},
{'name': 'unit', 'sub_type': 'general', 'title': 'Unit', 'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'price',
'sub_type': 'general',
'title': 'Price',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/principal-causes-of-death/resources/total-number-of-deaths-2017-05-31T07-00-40Z.csv',
'39693204-7875-47e1-ac6a-e4bd8c2e5a7a',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'no_of_deaths',
'sub_type': 'general',
'title': 'No. of Deaths',
'type': 'numeric',
'unit_of_measure': 'No. of Deaths'}],
'CSV'),
('https://storage.data.gov.sg/principal-causes-of-death/resources/principal-causes-of-death-2017-05-31T07-01-15Z.csv',
'98d62914-67a3-47c8-bd7a-310fb3b07a0f',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'rank', 'sub_type': 'general', 'title': 'Rank', 'type': 'text'},
{'name': 'icd', 'sub_type': 'general', 'title': 'ICD', 'type': 'text'},
{'description': 'ICD codes classified under the disease or condition',
'name': 'classification',
'sub_type': 'general',
'title': 'Classification',
'type': 'text'},
{'name': 'disease_condition',
'sub_type': 'general',
'title': 'Disease or Condition',
'type': 'text'},
{'description': ['Percentage of total deaths',
'Percentages are expressed as a value over 100, i.e. "100" represents 100%'],
'name': 'percentage_deaths',
'sub_type': 'percentage',
'title': 'Percentage of Deaths',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/private-residential-property-transaction-in-core-central-region-quarterly/resources/private-residential-property-transactions-in-core-central-region-quarterly-2016-09-08T02-44-58Z.csv',
'8facb87d-603d-40c1-9abf-f3bd2f57bfc2',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'type_of_sale',
'sub_type': 'general',
'title': 'Type of sale',
'type': 'text'},
{'description': '"na" : Not Applicable',
'name': 'sale_status',
'sub_type': 'general',
'title': 'Sale status',
'type': 'text'},
{'name': 'units',
'sub_type': 'general',
'title': 'Units',
'type': 'numeric',
'unit_of_measure': 'Units'}],
'CSV'),
('https://storage.data.gov.sg/prop-singles-among-res-pop-by-age-group-sex-hqa-annual/resources/proportion-of-singles-among-resident-population-by-selected-age-group-and-sex-annual-2017-05-26T17-04-41Z.csv',
'690597a1-5c94-49be-af9a-db75a06fd1e0',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Selected Age Group/Sex',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Value',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/prop-singles-among-res-pop-by-age-group-sex-hqa-annual/resources/proportion-of-singles-among-resident-population-by-sex-hqa-and-selected-age-group-annual-2017-05-26T17-04-46Z.csv',
'f84c19cf-1388-4467-9647-7604f07fe30a',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Selected Age Group/Sex',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Highest Qualification Attained',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'value',
'sub_type': 'percentage',
'title': 'Value',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/public-sector-research-and-development-expenditure/resources/research-and-development-expenditure-by-sector-annual-2016-10-06T07-28-23Z.csv',
'7032cf7f-a9d6-4d3e-a819-4206b03a344a',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'sector',
'sub_type': 'general',
'title': 'Sector',
'type': 'text'},
{'name': 'research_and_development_expenditure',
'sub_type': 'general',
'title': 'Research and development expenditure',
'type': 'numeric',
'unit_of_measure': 'S$ Millions'}],
'CSV'),
('https://storage.data.gov.sg/public-transport-capacity-average-daily-km-travelled-and-bus-routes-in-operation/resources/public-transport-capacity-average-daily-distance-travelled-2016-04-26T02-57-52Z.csv',
'3aea732b-b67e-40da-841d-c07c559597dc',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'mrt',
'sub_type': 'general',
'title': 'Mrt',
'type': 'numeric',
'unit_of_measure': 'Kilometre'},
{'name': 'bus',
'sub_type': 'general',
'title': 'Bus',
'type': 'numeric',
'unit_of_measure': 'Kilometre'}],
'CSV'),
('https://storage.data.gov.sg/public-transport-capacity-average-daily-km-travelled-and-bus-routes-in-operation/resources/public-transport-capacity-bus-routes-in-operation-2016-05-03T01-36-53Z.csv',
'77fb71a7-4e7b-4a2b-9b99-83a5770b3e8b',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'format': 'YYYY',
'name': 'ave_bus_fleet',
'sub_type': 'year',
'title': 'Average Bus Fleet',
'type': 'datetime'},
{'name': 'bus_route_in_operation',
'sub_type': 'general',
'title': 'Bus Routes In Operation',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/public-transport-journeys/resources/public-transport-journeys-2017-04-02T13-08-27Z.csv',
'5793edc5-aeea-4242-a1dc-17f2b3f2cc39',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'description': 'Rounded to the nearest thousand',
'name': 'average_daily_passenger_journeys',
'sub_type': 'general',
'title': 'Average Daily Passenger Journeys',
'type': 'numeric',
'unit_of_measure': 'Number of Passenger Journeys'},
{'name': 'average_journey_distances',
'sub_type': 'general',
'title': 'Average Journey Distances',
'type': 'numeric',
'unit_of_measure': 'Kilometres'}],
'CSV'),
('https://storage.data.gov.sg/public-transport-utilisation-average-public-transport-ridership/resources/public-transport-utilisation-average-public-transport-ridership-2017-04-24T01-07-56Z.csv',
'552b8662-3cbc-48c0-9fbb-abdc07fb377a',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'type_of_public_transport',
'sub_type': 'general',
'title': 'Type of Public Transport',
'type': 'text'},
{'name': 'average_ridership',
'sub_type': 'general',
'title': 'Average Ridership',
'type': 'numeric',
'unit_of_measure': 'Thousand Passenger Trips Per Day'}],
'CSV'),
('https://storage.data.gov.sg/public-transport-utilisation-average-trip-distance/resources/public-transport-utilisation-average-trip-distance-2017-04-02T13-10-09Z.csv',
'5d68d9b1-59d3-4133-a29f-3c301e73e1db',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'mode', 'sub_type': 'general', 'title': 'Mode', 'type': 'text'},
{'name': 'ave_distance_per_trip',
'sub_type': 'general',
'title': 'Average Distance Per Trip',
'type': 'numeric',
'unit_of_measure': 'Kilometres'}],
'CSV'),
('https://storage.data.gov.sg/pupils-per-teacher-in-primary-and-secondary-schools/resources/pupils-per-teacher-in-primary-schools-2016-10-12T02-06-01Z.csv',
'4eaef5ca-fda9-4e57-82dd-ccb58ca997a0',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'primary_students_to_teaching_staff',
'sub_type': 'general',
'title': 'Primary Students To Teaching Staff',
'type': 'numeric',
'unit_of_measure': 'No. of Students Per Teacher'}],
'CSV'),
('https://storage.data.gov.sg/pupils-per-teacher-in-primary-and-secondary-schools/resources/pupils-per-teacher-in-secondary-schools-2016-10-12T02-07-04Z.csv',
'2f25f030-ce00-468d-aef4-b63247ec1035',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'sec_pupil_to_teacher',
'sub_type': 'general',
'title': 'Sec pupil to teacher',
'type': 'numeric',
'unit_of_measure': 'ratio'}],
'CSV'),
('https://storage.data.gov.sg/rail-length/resources/rail-length-km-at-end-of-year-2016-09-05T08-47-22Z.csv',
'087f64e3-9f69-46de-8d70-6d96676b1bfa',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'description': 'Mass Rapid Transit (MRT) or Light Rapid Transit (LRT)',
'name': 'rail_type',
'sub_type': 'general',
'title': 'Rail Type',
'type': 'text'},
{'name': 'length',
'sub_type': 'general',
'title': 'Length',
'type': 'numeric',
'unit_of_measure': 'Kilometre'}],
'CSV'),
('https://storage.data.gov.sg/rainfall-monthly-maximum-daily-total/resources/rainfall-monthly-highest-daily-total-2017-03-14T06-25-58Z.csv',
'df4d391e-6950-4fc6-80cd-c9b9ef6354fe',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'maximum_rainfall_in_a_day',
'sub_type': 'general',
'title': 'Highest Daily Rainfall in the Month',
'type': 'numeric',
'unit_of_measure': 'Millimetre'}],
'CSV'),
('https://storage.data.gov.sg/rainfall-monthly-number-of-rain-days/resources/rainfall-monthly-number-of-rain-days-2017-03-14T06-27-12Z.csv',
'8b94f596-91fd-4545-bf9e-7a426493b674',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'no_of_rainy_days',
'sub_type': 'general',
'title': 'Number of Rain Days in the Month',
'type': 'numeric',
'unit_of_measure': 'Days'}],
'CSV'),
('https://storage.data.gov.sg/rainfall-monthly-total/resources/rainfall-monthly-total-2017-03-14T06-28-41Z.csv',
'778814b8-1b96-404b-9ac9-68d6c00e637b',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'total_rainfall',
'sub_type': 'general',
'title': 'Monthly Total Rainfall',
'type': 'numeric',
'unit_of_measure': 'Millimetre'}],
'CSV'),
('https://storage.data.gov.sg/rate-of-re-entry-into-employment-annual/resources/rate-of-re-entry-into-employment-annual-2017-06-15T02-28-20Z.csv',
'b1818689-dcde-430b-9fed-04ee59e5159a',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'reentry_rate',
'sub_type': 'percentage',
'title': 'Re-entry Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/rate-of-re-entry-into-employment-annual/resources/rate-of-re-entry-into-employment-by-age-annual-2017-06-15T02-28-51Z.csv',
'0a37742a-0b67-4905-903f-63db3ff8c444',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'age1',
'sub_type': 'general',
'title': 'Age Group (Years)',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'reentry_rate',
'sub_type': 'percentage',
'title': 'Re-entry Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/rate-of-re-entry-into-employment-annual/resources/rate-of-re-entry-into-employment-by-educational-attainment-annual-2017-06-15T02-29-27Z.csv',
'2a3f9d21-9e85-45ec-a695-fe9384333410',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'education1',
'sub_type': 'general',
'title': 'Educational Attainment',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'reentry_rate',
'sub_type': 'percentage',
'title': 'Re-entry Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/rate-of-re-entry-into-employment-annual/resources/rate-of-re-entry-into-employment-by-occupational-group-prior-to-redundancy-annual-2017-06-15T02-29-59Z.csv',
'ed1e0c32-ef42-408c-938e-ae64bb3cc916',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'occupation1',
'sub_type': 'general',
'title': 'Occupational Group Prior To Redundancy',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'reentry_rate',
'sub_type': 'percentage',
'title': 'Re-entry Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/rate-of-re-entry-into-employment-annual/resources/rate-of-re-entry-into-employment-by-sex-annual-2017-06-15T02-30-31Z.csv',
'295ac178-f075-4b25-8fa3-2cd2afb4cd60',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'sex1', 'sub_type': 'general', 'title': 'Sex', 'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'reentry_rate',
'sub_type': 'percentage',
'title': 'Re-entry Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/rate-of-re-entry-into-employment-quarterly/resources/rate-of-re-entry-into-employment-quarterly-2017-06-15T02-35-50Z.csv',
'98c669ca-bd54-4b2a-be06-86eef9a3c429',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'reentry_rate',
'sub_type': 'percentage',
'title': 'Re-entry Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/rate-of-re-entry-into-employment-quarterly/resources/rate-of-re-entry-into-employment-by-age-quarterly-2017-06-15T02-36-37Z.csv',
'dfffd17c-d8eb-42ec-b98d-00c07e7c23a0',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'age1',
'sub_type': 'general',
'title': 'Age Group (Years)',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'reentry_rate',
'sub_type': 'percentage',
'title': 'Re-entry Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/rate-of-re-entry-into-employment-quarterly/resources/rate-of-re-entry-into-employment-by-educational-attainment-quarterly-2017-06-15T02-38-49Z.csv',
'a7813918-1abd-4c1d-9783-c99483d701b9',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'education1',
'sub_type': 'general',
'title': 'Educational Attainment',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'reentry_rate',
'sub_type': 'percentage',
'title': 'Re-entry Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/rate-of-re-entry-into-employment-quarterly/resources/rate-of-re-entry-into-employment-occupational-group-prior-to-redundancy-quarterly-2017-06-15T02-39-34Z.csv',
'63c2f7d0-c661-464d-a460-0e1b5ab3383f',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'occupation1',
'sub_type': 'general',
'title': 'Occupational Group Prior To Redundancy',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'reentry_rate',
'sub_type': 'percentage',
'title': 'Re-entry Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/rate-of-re-entry-into-employment-quarterly/resources/rate-of-re-entry-into-employment-by-sex-quarterly-2017-06-15T02-40-02Z.csv',
'a5bd2f7c-ca40-4b4a-a928-d6c1afc9ea7b',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'sex1', 'sub_type': 'general', 'title': 'Sex', 'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'reentry_rate',
'sub_type': 'percentage',
'title': 'Re-entry Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/recidivism-rate/resources/recidivism-rate-2017-02-27T06-50-41Z.csv',
'9e5a8817-2fc8-41cd-9d1f-8bc1846d86c1',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'types_of_recidivism_rates',
'sub_type': 'general',
'title': 'Types Of Recidivism Rates',
'type': 'text'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': '2_year_recidivism_rates',
'sub_type': 'percentage',
'title': '2 Year Recidivism Rates',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/registration-of-documents-lodged-for-hdb-properties/resources/registration-of-documents-lodged-for-hdb-properties-2016-12-23T06-47-06Z.csv',
'6d9217f9-b5cc-457e-857f-ec124107170b',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'number_of_documents_lodged',
'sub_type': 'general',
'title': 'Number Of Documents Lodged',
'type': 'numeric',
'unit_of_measure': 'No. of documents lodged'}],
'CSV'),
('https://storage.data.gov.sg/registration-of-documents-lodged-for-private-properties/resources/registration-of-documents-lodged-for-private-properties-2016-12-23T06-45-56Z.csv',
'e13285c6-27cd-46f8-8bc3-dbfdf6f6741d',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'number_of_documents_lodged',
'sub_type': 'general',
'title': 'Number Of Documents Lodged',
'type': 'numeric',
'unit_of_measure': 'No. of documents lodged'}],
'CSV'),
('https://storage.data.gov.sg/relative-humidity-annual-mean/resources/relative-humidity-annual-mean-2017-01-12T08-32-59Z.csv',
'77b9059f-cc9a-4f4f-a495-9c268945191b',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'rh_mean_daily',
'sub_type': 'percentage',
'title': 'Daily Mean Relative Humidity',
'type': 'numeric'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'rh_mean_daily_minimum',
'sub_type': 'percentage',
'title': 'Daily Minimum Relative Humidity',
'type': 'numeric'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'rh_means_daily_maximum',
'sub_type': 'percentage',
'title': 'Daily Maximum Relative Humidity',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/relative-humidity-monthly-absolute-extreme-minimum/resources/relative-humidity-absolute-monthly-extreme-minimum-2017-03-14T06-30-00Z.csv',
'585c24a5-76cd-4c48-9341-9223de5adc1d',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Year-Month',
'type': 'datetime'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'rh_extremes_minimum',
'sub_type': 'percentage',
'title': 'Relative humidity - Absolute monthly extreme minimum',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/relative-humidity-monthly-mean/resources/relative-humidity-monthly-mean-2017-03-14T06-32-05Z.csv',
'4631174f-9858-463d-8a88-f3cb21588c67',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'mean_rh',
'sub_type': 'percentage',
'title': 'Monthly mean relative humidity',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/reliefs-and-allowances-for-taxable-individuals-annual/resources/reliefs-and-allowances-for-taxable-individuals-2016-10-03T00-59-48Z.csv',
'fe9354b9-58a4-4d2e-bf51-9927112f2194',
[{'format': 'YYYY',
'name': 'year_of_assessment',
'sub_type': 'year',
'title': 'Year of Assessment',
'type': 'datetime'},
{'name': 'assessable_income',
'sub_type': 'general',
'title': 'Assessable Income',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'},
{'name': 'reliefs',
'sub_type': 'general',
'title': 'Reliefs',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'},
{'name': 'chargeable_income',
'sub_type': 'general',
'title': 'Chargeable Income',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'},
{'name': 'gross_tax',
'sub_type': 'general',
'title': 'Gross Tax',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'},
{'name': 'tax_set_offs',
'sub_type': 'general',
'title': 'Tax Set Offs',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'},
{'name': 'net_tax_assessed',
'sub_type': 'general',
'title': 'Net Tax Assessed',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'}],
'CSV'),
('https://storage.data.gov.sg/reliefs-and-allowances-for-taxable-individuals-annual/resources/reliefs-for-taxable-individuals-by-type-of-relief-2016-10-03T01-01-09Z.csv',
'd3a4325f-0184-49ec-8188-a4ee23705792',
[{'format': 'YYYY',
'name': 'year_of_assessment',
'sub_type': 'year',
'title': 'Year of Assessment',
'type': 'datetime'},
{'name': 'type_of_relief',
'sub_type': 'general',
'title': 'Type of Relief',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'no_of_claimants',
'sub_type': 'general',
'title': 'No. of Claimants',
'type': 'numeric',
'unit_of_measure': 'Count'},
{'name': 'amount',
'sub_type': 'general',
'title': 'Amount',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'}],
'CSV'),
('https://storage.data.gov.sg/reliefs-and-allowances-for-taxable-individuals-annual/resources/tax-set-offs-for-taxable-individuals-by-type-of-tax-set-offs-2016-10-03T01-02-58Z.csv',
'b34da422-4947-451f-8ee6-899feed0d74e',
[{'format': 'YYYY',
'name': 'year_of_assessment',
'sub_type': 'year',
'title': 'Year of Assessment',
'type': 'datetime'},
{'name': 'type_of_tax_set_offs',
'sub_type': 'general',
'title': 'Type of Tax Set-offs',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'no_of_claimants',
'sub_type': 'general',
'title': 'No. of Claimants',
'type': 'numeric',
'unit_of_measure': 'Count'},
{'name': 'amount',
'sub_type': 'general',
'title': 'Amount',
'type': 'numeric',
'unit_of_measure': 'S$ Thousand'}],
'CSV'),
('https://storage.data.gov.sg/remand-population/resources/remand-population-2017-02-27T06-34-16Z.csv',
'3dafe2f8-bb69-4ce8-ba11-409884f56abb',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'number_of_population',
'sub_type': 'general',
'title': 'Number Of Population',
'type': 'numeric',
'unit_of_measure': 'Number of Inmates'}],
'CSV'),
('https://storage.data.gov.sg/remand-population/resources/remand-population-by-age-group-2017-02-27T06-38-05Z.csv',
'37e16c90-38a7-4c6f-b8c1-7e4fd2108b59',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'population_by_age_group',
'sub_type': 'general',
'title': 'Population By Age Group',
'type': 'text'},
{'name': 'number_of_population',
'sub_type': 'general',
'title': 'Number Of Population',
'type': 'numeric',
'unit_of_measure': 'Number of Inmates'}],
'CSV'),
('https://storage.data.gov.sg/remand-population/resources/remand-population-by-education-level-2017-02-27T06-39-22Z.csv',
'10de50f0-9e7b-42d3-a303-cd34c80aa656',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'population_by_education_level',
'sub_type': 'general',
'title': 'Population By Education Level',
'type': 'text'},
{'name': 'number_of_population',
'sub_type': 'general',
'title': 'Number Of Population',
'type': 'numeric',
'unit_of_measure': 'Number of Inmates'}],
'CSV'),
('https://storage.data.gov.sg/remand-population/resources/remand-population-by-gender-2017-02-27T06-40-44Z.csv',
'f4a244d7-2496-4b54-b5f3-5eb107b1a884',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'population_by_gender',
'sub_type': 'general',
'title': 'Population By Gender',
'type': 'text'},
{'name': 'number_of_population',
'sub_type': 'general',
'title': 'Number Of Population',
'type': 'numeric',
'unit_of_measure': 'Number of Inmates'}],
'CSV'),
('https://storage.data.gov.sg/remand-population/resources/remand-population-by-offence-group-2017-02-27T06-42-15Z.csv',
'0b9769ec-9753-45b7-ae10-aa907962c00b',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'population_by_main_offence_group',
'sub_type': 'general',
'title': 'Population By Main Offence Group',
'type': 'text'},
{'description': '"na" : Data not available or not applicable',
'name': 'number_of_population',
'sub_type': 'general',
'title': 'Number Of Population',
'type': 'numeric',
'unit_of_measure': 'Number of Inmates'}],
'CSV'),
('https://storage.data.gov.sg/rentals-of-non-landed-residential-buildings-with-at-least-10-rental-contracts-signed-in-1q2016/resources/rentals-of-non-landed-residential-buildings-2016-06-14T02-34-31Z.csv',
'4384e22c-234f-4196-9df8-1941cd41c667',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'project_name',
'sub_type': 'general',
'title': 'Project Name',
'type': 'text'},
{'name': 'postal_district',
'sub_type': 'general',
'title': 'Postal District',
'type': 'text'},
{'description': 'Per Square Meter, Per Month',
'name': '25th_percentile',
'sub_type': 'general',
'title': '25th percentile',
'type': 'numeric',
'unit_of_measure': 'S$ psm pm'},
{'description': 'Per Square Meter, Per Month',
'name': 'median',
'sub_type': 'general',
'title': 'Median',
'type': 'numeric',
'unit_of_measure': 'S$ psm pm'},
{'description': 'Per Square Meter, Per Month',
'name': '75th_percentile',
'sub_type': 'general',
'title': '75th percentile',
'type': 'numeric',
'unit_of_measure': 'S$ psm pm'},
{'name': 'no_of_rental_contracts',
'sub_type': 'general',
'title': 'Rental Contracts',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/resale-flat-prices/resources/resale-flat-prices-based-on-registration-date-from-march-2012-onwards-2017-06-05T09-02-44Z.csv',
'83b2fc37-ce8c-4df4-968b-370fd818138b',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'town', 'sub_type': 'general', 'title': 'Town', 'type': 'text'},
{'name': 'flat_type',
'sub_type': 'general',
'title': 'Flat Type',
'type': 'text'},
{'name': 'block', 'sub_type': 'general', 'title': 'Block', 'type': 'text'},
{'name': 'street_name',
'sub_type': 'general',
'title': 'Street Name',
'type': 'text'},
{'name': 'storey_range',
'sub_type': 'general',
'title': 'Storey Range',
'type': 'text'},
{'name': 'floor_area_sqm',
'sub_type': 'general',
'title': 'Floor Area',
'type': 'numeric',
'unit_of_measure': 'Sqm'},
{'name': 'flat_model',
'sub_type': 'general',
'title': 'Flat Model',
'type': 'text'},
{'format': 'YYYY',
'name': 'lease_commence_date',
'sub_type': 'year',
'title': 'Lease Commence Date',
'type': 'datetime'},
{'name': 'resale_price',
'sub_type': 'general',
'title': 'Resale Price',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/resale-flat-prices/resources/resale-flat-prices-based-on-approval-date-2000-feb-2012-2016-02-11T00-53-05Z.csv',
'8c00bf08-9124-479e-aeca-7cc411d884c4',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'town', 'sub_type': 'general', 'title': 'Town', 'type': 'text'},
{'name': 'flat_type',
'sub_type': 'general',
'title': 'Flat Type',
'type': 'text'},
{'name': 'block', 'sub_type': 'general', 'title': 'Block', 'type': 'text'},
{'name': 'street_name',
'sub_type': 'general',
'title': 'Street Name',
'type': 'text'},
{'name': 'storey_range',
'sub_type': 'general',
'title': 'Storey Range',
'type': 'text'},
{'name': 'floor_area_sqm',
'sub_type': 'general',
'title': 'Floor Area',
'type': 'numeric',
'unit_of_measure': 'Sqm'},
{'name': 'flat_model',
'sub_type': 'general',
'title': 'Flat Model',
'type': 'text'},
{'format': 'YYYY',
'name': 'lease_commence_date',
'sub_type': 'year',
'title': 'Lease Commence Date',
'type': 'datetime'},
{'name': 'resale_price',
'sub_type': 'general',
'title': 'Resale Price',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/resale-flat-prices/resources/resale-flat-prices-based-on-approval-date-1990-1999-2016-12-08T01-02-42Z.csv',
'adbbddd3-30e2-445f-a123-29bee150a6fe',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'town', 'sub_type': 'general', 'title': 'Town', 'type': 'text'},
{'name': 'flat_type',
'sub_type': 'general',
'title': 'Flat Type',
'type': 'text'},
{'name': 'block', 'sub_type': 'general', 'title': 'Block', 'type': 'text'},
{'name': 'street_name',
'sub_type': 'general',
'title': 'Street Name',
'type': 'text'},
{'name': 'storey_range',
'sub_type': 'general',
'title': 'Storey Range',
'type': 'text'},
{'name': 'floor_area_sqm',
'sub_type': 'general',
'title': 'Floor Area ',
'type': 'numeric',
'unit_of_measure': 'Sqm'},
{'name': 'flat_model',
'sub_type': 'general',
'title': 'Flat Model',
'type': 'text'},
{'format': 'YYYY',
'name': 'lease_commence_date',
'sub_type': 'year',
'title': 'Lease Commence Date',
'type': 'datetime'},
{'name': 'resale_price',
'sub_type': 'general',
'title': 'Resale Price',
'type': 'numeric',
'unit_of_measure': 'S$'}],
'CSV'),
('https://storage.data.gov.sg/resale-transaction-by-flat-type-based-on-registered-cases/resources/resale-transactions-by-flat-type-based-on-registered-cases-2016-11-24T04-31-14Z.csv',
'577d6006-9923-44f5-8e5e-2d12354c9550',
[{'description': 'Financial year starts on 1 April and ends on 31 March',
'format': 'YYYY',
'name': 'financial_year',
'sub_type': 'financial_year',
'title': 'Financial Year',
'type': 'datetime'},
{'description': "With effect from 2014, there are no HUDC flats under HDB's management.",
'name': 'flat_type',
'sub_type': 'general',
'title': 'Flat Type',
'type': 'text'},
{'name': 'resale_transactions',
'sub_type': 'general',
'title': 'Resale Transactions',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/resident-households-by-age-group-of-head-and-household-living-arrangement-annual/resources/resident-households-by-age-group-of-head-2017-05-26T17-05-00Z.csv',
'68f5f948-2386-417f-89a7-a6d45d727c9a',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Age Group of Heads',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Resident Households',
'type': 'numeric',
'unit_of_measure': 'Number of Households'}],
'CSV'),
('https://storage.data.gov.sg/resident-households-by-age-group-of-head-and-household-living-arrangement-annual/resources/resident-households-by-age-group-of-head-and-household-living-arrangement-2017-05-26T17-05-04Z.csv',
'8afe1e60-cc0e-4298-9e16-b46253036330',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Age Group of Head',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Household Living Arrangement',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Resident Households',
'type': 'numeric',
'unit_of_measure': 'Number of Households'}],
'CSV'),
('https://storage.data.gov.sg/resident-households-by-type-of-dwelling-annual/resources/resident-households-annual-2017-05-26T17-06-11Z.csv',
'0ddfc858-b745-48ed-baff-c8c387f1526a',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Number'}],
'CSV'),
('https://storage.data.gov.sg/resident-households-by-type-of-dwelling-annual/resources/resident-households-by-type-of-dwelling-broad-categories-annual-2017-05-26T17-06-15Z.csv',
'54ad26a7-1ff4-453a-a2cd-39ce64c6aaa8',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Type of Dwelling (Broad Categories)',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Value',
'type': 'numeric',
'unit_of_measure': 'Number'}],
'CSV'),
('https://storage.data.gov.sg/resident-households-by-type-of-dwelling-annual/resources/resident-households-by-type-of-hdb-dwelling-2017-05-26T17-06-19Z.csv',
'c4c59d15-3566-4514-8e4a-6e70c57fecb7',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'level_1',
'sub_type': 'general',
'title': 'Total',
'type': 'text'},
{'name': 'level_2',
'sub_type': 'general',
'title': 'Type of Dwelling (Broad Categories)',
'type': 'text'},
{'name': 'level_3',
'sub_type': 'general',
'title': 'Type of HDB Dwelling',
'type': 'text'},
{'name': 'value',
'sub_type': 'general',
'title': 'Number',
'type': 'numeric',
'unit_of_measure': 'Thousand'}],
'CSV'),
('https://storage.data.gov.sg/residential-intermediate-and-long-term-care-admissions-annual/resources/residential-intermediate-and-long-term-care-admissions-annual-2016-07-07T03-30-31Z.csv',
'5c717895-d256-4d8c-8f1f-5361b3e04e8a',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'type', 'sub_type': 'general', 'title': 'Type', 'type': 'text'},
{'name': 'count',
'sub_type': 'general',
'title': 'Count',
'type': 'numeric',
'unit_of_measure': 'No. of Admissions'}],
'CSV'),
('https://storage.data.gov.sg/residential-wired-broadband-subscriptions-by-speed-quarterly/resources/residential-wired-broadband-subscriptions-by-speed-quarterly-2017-04-18T12-16-35Z.csv',
'280439e7-c243-4901-9ff2-8ad4ad711793',
[{'format': 'YYYY-[Q]Q',
'name': 'quarter',
'sub_type': 'quarter',
'title': 'Quarter',
'type': 'datetime'},
{'name': 'speed', 'sub_type': 'general', 'title': 'Speed', 'type': 'text'},
{'name': 'no_of_subscriptions',
'sub_type': 'general',
'title': 'No of subscriptions',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/residential-wired-broadband-subscriptions-by-type-monthly/resources/residential-wired-broadband-subscriptions-by-type-monthly-2017-04-18T12-13-06Z.csv',
'29c6c49c-93f6-4e60-af96-4fc0e1298b14',
[{'format': 'YYYY-MM',
'name': 'month',
'sub_type': 'month',
'title': 'Month',
'type': 'datetime'},
{'name': 'broadband_connections',
'sub_type': 'general',
'title': 'Broadband connections',
'type': 'text'},
{'name': 'no_of_subscriptions',
'sub_type': 'general',
'title': 'No of subscriptions',
'type': 'numeric',
'unit_of_measure': 'Count'}],
'CSV'),
('https://storage.data.gov.sg/resident-labour-force-aged-15-years-and-over-by-highest-qualification-attained-and-sex/resources/resident-labour-force-aged-15-years-and-over-by-highest-qualification-attained-and-sex-2016-05-10T09-20-52Z.csv',
'2547a94c-19d8-4f73-8c8f-80d744112ce3',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'sex', 'sub_type': 'general', 'title': 'Sex', 'type': 'text'},
{'name': 'highest_qualification',
'sub_type': 'general',
'title': 'Highest Qualification Attained',
'type': 'text'},
{'name': 'labour_force',
'sub_type': 'general',
'title': 'Labour Force',
'type': 'numeric',
'unit_of_measure': 'Number of Persons'}],
'CSV'),
('https://storage.data.gov.sg/resident-labour-force-aged-15-years-and-over-by-marital-status-age-and-sex/resources/resident-labour-force-aged-15-years-and-over-by-marital-status-age-and-sex-2016-05-10T09-22-45Z.csv',
'cf072e56-b58d-4310-a7a5-01bc106605fc',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'sex', 'sub_type': 'general', 'title': 'Sex', 'type': 'text'},
{'name': 'marital_status',
'sub_type': 'general',
'title': 'Marital Status',
'type': 'text'},
{'name': 'age_group',
'sub_type': 'general',
'title': 'Age Group',
'type': 'text'},
{'description': '"-" : Data is negligible or not significant',
'name': 'labour_force',
'sub_type': 'general',
'title': 'Labour Force',
'type': 'numeric',
'unit_of_measure': 'Number of Persons'}],
'CSV'),
('https://storage.data.gov.sg/resident-long-term-unemployment-rate/resources/resident-long-term-unemployment-rate-annual-2016-04-21T07-30-46Z.csv',
'21ac477f-f591-4b2a-9bec-c81e83fe7263',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'description': 'Percentages are expressed as a value over 100, i.e. "100" represents 100%',
'name': 'long_term_unemployment_rate',
'sub_type': 'percentage',
'title': 'Long Term Unemployment Rate',
'type': 'numeric'}],
'CSV'),
('https://storage.data.gov.sg/resident-median-duration-of-unemployment/resources/median-duration-of-unemployment-among-unemployed-residents-2016-04-18T08-47-57Z.csv',
'2b7fd879-8601-41cd-8bda-2821f9857d2f',
[{'format': 'YYYY',
'name': 'year',
'sub_type': 'year',
'title': 'Year',
'type': 'datetime'},
{'name': 'median_duration_of_unemployment',
'sub_type': 'general',
'title': 'Median Duration Of Unemployment',
'type': 'numeric',
'unit_of_measure': 'Weeks'}],
'CSV'),
...]
In [ ]:
Content source: zayyarlin/codex
Similar notebooks: