Statistical Data and Metadata Exchange (SDMX) User Guide

Table of contents

Table of contents

Introduction

The Statistics Canada SDMX REST web services provide access to the time series made available on the Statistics Canada's website in a structured form. It complies with the SDMX standard. This service is accessible using an HTTP request.

The time series available through Statistics Canada's Common Output Data Repository (CODR) are presented in a form of Canadian indicators/cubes (short-term, structural, specific, etc.) usually representing a set of series/vectors. An indicator/cube is broken down into as many elementary series as there are possible crossover of variables/dimensions. For example, 50 industries * 13 provinces/territories = 650 different series/vectors in CODR.

The SDMX web service allows access:

  • to the values of the series
  • structural metadata describing the characteristics of the series
  • is free of charge

It is possible to quickly extract data using the CODR cube identifier and vectors. In these cases the user must have previously noted the CODR cube identifier or vector identifier from the Statistics Canada website.

What is SDMX?

The Statistical Data and Metadata Exchange initiative is sponsored by seven institutions (the Bank for International Settlements (BIS), the European Central Bank (ECB), Eurostat, the International Monetary Fund (IMF), the Organisation for Economic Co-operation and Development (OECD), the United Nations (UN) and the World Bank) to foster standards for the exchange of statistical information. The first version of the standard is an ISO standard (ISO/Technical Specification 17369:2005). It offers an information model for the representation of statistical data and metadata, as well as several formats to represent this model (SDMX-EDI, SDMX-JSON, SDMX-CSV and several SDMX-ML formats). It also proposes a standard way of implementing web services, including the use of registries.

The SDMX information model in a nutshell

The list below tells you everything you need to know about the SDMX information model in order for us to start developing an application based on the SDMX standard:

  • Descriptor concepts: In order to make sense of some statistical data, we need to know the concepts associated with them. For example, on its own the figure 1.3312 is pretty meaningless, but if we know that this is an exchange rate for the CDN dollar against the US dollar on November 19th, 2019, it starts to make more sense.
  • Packaging structure: Statistical data can be grouped together at the following levels: the observation level (the measurement of some phenomenon); the series level (the measurement of some phenomenon over time, usually at regular intervals); the group level (a group of series – a well-known example being the sibling group, a set of series which are identical, except for the fact that they are measured with different frequencies); and the dataset level (made up of several groups, to cover a specific statistical domain for instance). The descriptor concepts mentioned in point 1 can be attached at various levels in this hierarchy.
  • Dimensions and attributes: There are two types of descriptor concepts: dimensions, which both identify and describe the data, and attributes, which are purely descriptive.
  • Keys: Dimensions are grouped into keys, which allow the identification of a particular set of data (a series, for example). The key values are attached at the series level and given in a fixed sequence. Conventionally, frequency is the first descriptor concept and the other concepts are assigned an order for that particular dataset. Partial keys can be attached to groups.
  • Code lists: Every possible value for a dimension is defined in a code list. Each value on that list is given a language-independent abbreviation (code) and a language-specific description. Attributes are represented sometimes by codes, and sometimes by free-text values. Since the purpose of an attribute is solely to describe and not to identify the data, this is not a problem.
  • Data Structure Definitions: A Data Structure Definition (key family) specifies a set of concepts, which describe and identify a set of data. It tells us which concepts are dimensions (identification and description) and which are attributes (just description), and it gives the attachment level for each of these concepts on the basis of the packaging structure (dataset, group, series or observation), as well as their status (mandatory or conditional). It also specifies which code lists provide possible values for the dimensions and gives possible values for the attributes, either as code lists or free text fields.

The various SDMX-ML formats

SDMX-ML supports various use cases and, therefore, defines several XML formats. For the purpose of this guide, the following two formats will be used:

  • The Structure Definition format : This format will be used to define the structure (concepts, code lists, dimensions, attributes, etc.) of the key families.
  • The Compact format: This format will be used to define the data file. It is not a generic format (it is specific to a Data Structure Definition), but it is designed to support validation and is much more compact so as to support the exchange of large datasets.

The SDMX information model is much richer than this limited introduction, however the above should be sufficient to understand the basics of this web service. For additional information, please refer to the SDMX documentation.

SDMX Data (cube) Web Service

All the data stored in CODR can be retrieved using the query string described below.

protocol://wsEntryPoint/resource/flowRef/key?parameters

where parameters are defined as such:

startPeriod=value&endPeriod=value&firstNObservations=value&lastNObservations=value&detail=value

SDMX Data (cube) Web Service Syntax definition

protocol
The web service is available over http and https.
wsEntryPoint
The web service entry point is available at the same location of the sdmx data and metadata entry point.
resource
The resource for queries is dataflow.
flowRef

A reference to the dataflow describing the data that needs to be returned.

The syntax is the identifier of the agency maintaining the dataflow, followed by the identifier of the dataflow, followed by the dataflow version, separated by a ,(comma).

For example: AGENCY_ID, FLOW_ID, VERSION

If the parameter contains only one of these 3 elements, it is considered to be the identifier of the dataflow. The value for the identifier of the agency maintaining the dataflow will default to all, while the value for the dataflow version will default to latest.

If the string contains only two of these 3 elements, they are considered to be the identifier of the agency maintaining the dataflow and the identifier of the dataflow. The value for the dataflow version will default to latest.

key

The combination of dimensions allows statistical data to be uniquely identified. Such a combination is known as a series key in SDMX and this is what is needed in the key parameter.

Let's say for example that exchange rates can be uniquely identified by the following:

  • the frequency at which they are measured (e.g.: on a daily basis - code D),
  • the currency being measured (e.g.: US dollar - code USD),
  • the currency against which a currency is being measured (e.g.: Euro - code EUR),
  • the type of exchange rates (Foreign exchange reference rates - code SP00) and
  • the series variation (such as average or standardized measure for given frequency, code A).

In order to build the series key, you need to take the value for each of the dimensions (in the order in which the dimensions are defined in the DSD) and separate them with a .(dot). The series key for the example above therefore becomes: D.USD.EUR.SP00.A

Wildcarding is supported by omitting the value for the dimension to be wildcarded. For example, the following series key can be used to retrieve the data for all daily currencies against the euro: D..EUR.SP00.A

The OR operator is supported using the + (plus) character. For example, the following key can be used to retrieve the exchange rates against the euro for both the US dollar and the Japanese Yen: D.USD+JPY.EUR.SP00.A

You can of course combine wildcarding and the OR operator. For example, the following key can be used to retrieve daily or monthly exchange rates of any currency against the euro: D+M..EUR.SP00.A

startPeriod & endPeriod

It is possible to define a date range for which observations should be returned by using the startPeriod and/or endPeriod parameters. The values should be given according to the syntax defined in ISO 8601 or as SDMX reporting periods. The format will vary depending on the frequency.

The supported formats are:

  • YYYY for annual data (e.g.: 2013).
  • YYYY-MM for monthly data (e.g.: 2013-01).
  • YYYY-MM-DD for daily data (e.g.: 2013-01-01).
Detail

Using the detail parameter, it is possible to specify the desired amount of information to be returned by the web service.

Possible options are:

  • full: The data (series and observations) and the attributes will be returned. This is the default.
firstNObservations & lastNObservations
Using the firstNObservations and/or lastNObservations parameters, it is possible to specify the maximum number of observations to be returned for each of the matching series, starting from the first observation (firstNObservations) or counting back from the most recent observation (lastNObservations).

SDMX Data (cube) Web Service Examples

1. Retrieve the data for the series 1.1.1 (Canada / Both sexes / All ages) for the 17100005 dataflow. Table 17100005 is presented in full details in appendix 1.

https://www150.statcan.gc.ca/t1/wds/sdmx/statcan/rest/data/DF_17100005/1.1.1

Results

SDMX-ML 2.1 Generic Data
<?xml version="1.0" encoding="utf-8"?><!--NSI Web Service v7.8.0.0--><message:GenericData xmlns:footer="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/message/footer" xmlns:generic="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/data/generic" xmlns:message="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/message" xmlns:common="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/common" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xml="http://www.w3.org/XML/1998/namespace"><message:Header><message:ID>IREFe1bc0f6d2dcc41219f43d827cc979106</message:ID><message:Test>true</message:Test><message:Prepared>2019-11-26T00:12:41</message:Prepared><message:Sender id="NOT_CONFIGURED" /><message:Structure structureID="StatCan_Data_Structure_17100005_1_0" dimensionAtObservation="TIME_PERIOD"><common:Structure><Ref agencyID="StatCan" id="Data_Structure_17100005" version="1.0" /></common:Structure></message:Structure><message:DataSetAction>Information</message:DataSetAction></message:Header><message:DataSet action="Information" structureRef="StatCan_Data_Structure_17100005_1_0"><generic:Series><generic:SeriesKey><generic:Value id="Geography" value="1" /><generic:Value id="Sex" value="1" /><generic:Value id="Age_group" value="1" /></generic:SeriesKey><generic:Attributes><generic:Value id="UOM" value="249" /><generic:Value id="DGUID" value="2016A000011124" /><generic:Value id="SCALAR_FACTOR" value="0" /><generic:Value id="VECTOR_ID" value="466668" /><generic:Value id="NB_DECIMAL" value="0" /></generic:Attributes><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2012" /><generic:ObsValue value="34714222" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2013" /><generic:ObsValue value="35082954" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2014" /><generic:ObsValue value="35437435" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2015" /><generic:ObsValue value="35702908" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2016" /><generic:ObsValue value="36109487" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2017" /><generic:ObsValue value="36543321" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2018" /><generic:ObsValue value="37057765" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2019" /><generic:ObsValue value="37589262" /></generic:Obs></generic:Series></message:DataSet></message:GenericData>
SDMX-ML 2.1 Structure Specific Data
<?xml version="1.0" encoding="utf-8"?><!--NSI Web Service v7.8.0.0--><message:StructureSpecificData xmlns:ss="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/data/structurespecific" xmlns:footer="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/message/footer" xmlns:ns1="urn:sdmx:org.sdmx.infomodel.datastructure.DataStructure=StatCan:Data_Structure_17100005(1.0):ObsLevelDim:TIME_PERIOD" xmlns:message="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/message" xmlns:common="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/common" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xml="http://www.w3.org/XML/1998/namespace"><message:Header><message:ID>IREF6c6123ee03f2474e8c8966362092d5da</message:ID><message:Test>true</message:Test><message:Prepared>2019-11-26T00:12:41</message:Prepared><message:Sender id="NOT_CONFIGURED" /><message:Structure structureID="StatCan_Data_Structure_17100005_1_0" namespace="urn:sdmx:org.sdmx.infomodel.datastructure.DataStructure=StatCan:Data_Structure_17100005(1.0):ObsLevelDim:TIME_PERIOD" dimensionAtObservation="TIME_PERIOD"><common:Structure><Ref agencyID="StatCan" id="Data_Structure_17100005" version="1.0" /></common:Structure></message:Structure><message:DataSetAction>Information</message:DataSetAction></message:Header><message:DataSet action="Information" ss:dataScope="DataStructure" xsi:type="ns1:DataSetType" ss:structureRef="StatCan_Data_Structure_17100005_1_0"><Series Geography="1" Sex="1" Age_group="1" UOM="249" DGUID="2016A000011124" SCALAR_FACTOR="0" VECTOR_ID="466668" NB_DECIMAL="0"><Obs TIME_PERIOD="2012" OBS_VALUE="34714222" /><Obs TIME_PERIOD="2013" OBS_VALUE="35082954" /><Obs TIME_PERIOD="2014" OBS_VALUE="35437435" /><Obs TIME_PERIOD="2015" OBS_VALUE="35702908" /><Obs TIME_PERIOD="2016" OBS_VALUE="36109487" /><Obs TIME_PERIOD="2017" OBS_VALUE="36543321" /><Obs TIME_PERIOD="2018" OBS_VALUE="37057765" /><Obs TIME_PERIOD="2019" OBS_VALUE="37589262" /></Series></message:DataSet></message:StructureSpecificData>
SDMX-JSON
{"header":{"id":"IREFc0e7b4d85c50461c912ed378b326730c","prepared":"2019-11-26T00:12:50","test":true,"sender":{"id":"NOT_CONFIGURED","name":"unknown"}},"dataSets":[{"action":"Information","annotations":[],"series":{"0:0:0":{"attributes":[0,0,0,0,0,null],"annotations":[],"observations":{"0":[34714222],"1":[35082954],"2":[35437435],"3":[35702908],"4":[36109487],"5":[36543321],"6":[37057765],"7":[37589262]}}}}],"structure":{"name":"Population estimates on July 1st, by age and sex","description":"","dimensions":{"dataset":[],"series":[{"id":"Geography","name":"Geography","keyPosition":0,"role":"Geography","values":[{"id":"1","name":"Canada"}]},{"id":"Sex","name":"Sex","keyPosition":1,"role":"Sex","values":[{"id":"1","name":"Both sexes"}]},{"id":"Age_group","name":"Age group","keyPosition":2,"role":"Age_group","values":[{"id":"1","name":"All ages"}]}],"observation":[{"id":"TIME_PERIOD","name":"Time","keyPosition":3,"role":"TIME_PERIOD","values":[{"start":"2012-01-01T00:00:00","end":"2012-12-31T23:59:59","id":"2012","name":"2012"},{"start":"2013-01-01T00:00:00","end":"2013-12-31T23:59:59","id":"2013","name":"2013"},{"start":"2014-01-01T00:00:00","end":"2014-12-31T23:59:59","id":"2014","name":"2014"},{"start":"2015-01-01T00:00:00","end":"2015-12-31T23:59:59","id":"2015","name":"2015"},{"start":"2016-01-01T00:00:00","end":"2016-12-31T23:59:59","id":"2016","name":"2016"},{"start":"2017-01-01T00:00:00","end":"2017-12-31T23:59:59","id":"2017","name":"2017"},{"start":"2018-01-01T00:00:00","end":"2018-12-31T23:59:59","id":"2018","name":"2018"},{"start":"2019-01-01T00:00:00","end":"2019-12-31T23:59:59","id":"2019","name":"2019"}]}]},"attributes":{"dataSet":[],"series":[{"id":"UOM","name":"Unit of measure","role":"UOM","values":[{"id":"249","name":"Persons"}]},{"id":"DGUID","name":"DGUID","role":"DGUID","values":[{"id":"2016A000011124","name":"2016A000011124"}]},{"id":"SCALAR_FACTOR","name":"Scalar Factor","role":"SCALAR_FACTOR","values":[{"id":"0","name":"units"}]},{"id":"VECTOR_ID","name":"Vector ID","role":"VECTOR_ID","values":[{"id":"466668","name":"466668"}]},{"id":"NB_DECIMAL","name":"Number of decimal","role":"NB_DECIMAL","values":[{"id":"0","name":"0"}]},{"id":"TERMINATED","name":"Terminated","role":"TERMINATED","values":[]}],"observation":[{"id":"SYMBOL","name":"Symbol","role":"SYMBOL","values":[]},{"id":"STATUS_CAN","name":"Status","role":"STATUS_CAN","values":[]},{"id":"SECURITY_LEVEL","name":"Security Level","role":"SECURITY_LEVEL","values":[]}]},"annotations":[]}}
2. Retrieve the data for the series 1.2+3.1 (Canada / Male & Female / All ages) for the 17100005 dataflow. Table 17100005 is presented in full details in appendix 1.

https://www150.statcan.gc.ca/t1/wds/sdmx/statcan/rest/data/DF_17100005/1.2+3.1

Results

SDMX-ML 2.1 Generic Data
<?xml version="1.0" encoding="utf-8"?><!--NSI Web Service v7.8.0.0--><message:GenericData xmlns:footer="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/message/footer" xmlns:generic="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/data/generic" xmlns:message="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/message" xmlns:common="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/common" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xml="http://www.w3.org/XML/1998/namespace"><message:Header><message:ID>IREFf7ccf4e1550b46f9b91a43343e5debd3</message:ID><message:Test>true</message:Test><message:Prepared>2019-11-26T00:17:08</message:Prepared><message:Sender id="NOT_CONFIGURED" /><message:Structure structureID="StatCan_Data_Structure_17100005_1_0" dimensionAtObservation="TIME_PERIOD"><common:Structure><Ref agencyID="StatCan" id="Data_Structure_17100005" version="1.0" /></common:Structure></message:Structure><message:DataSetAction>Information</message:DataSetAction></message:Header><message:DataSet action="Information" structureRef="StatCan_Data_Structure_17100005_1_0"><generic:Series><generic:SeriesKey><generic:Value id="Geography" value="1" /><generic:Value id="Sex" value="3" /><generic:Value id="Age_group" value="1" /></generic:SeriesKey><generic:Attributes><generic:Value id="UOM" value="249" /><generic:Value id="DGUID" value="2016A000011124" /><generic:Value id="SCALAR_FACTOR" value="0" /><generic:Value id="VECTOR_ID" value="466670" /><generic:Value id="NB_DECIMAL" value="0" /></generic:Attributes><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2012" /><generic:ObsValue value="17504322" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2013" /><generic:ObsValue value="17681789" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2014" /><generic:ObsValue value="17855738" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2015" /><generic:ObsValue value="17990107" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2016" /><generic:ObsValue value="18192991" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2017" /><generic:ObsValue value="18408053" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2018" /><generic:ObsValue value="18655084" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2019" /><generic:ObsValue value="18911177" /></generic:Obs></generic:Series><generic:Series><generic:SeriesKey><generic:Value id="Geography" value="1" /><generic:Value id="Sex" value="2" /><generic:Value id="Age_group" value="1" /></generic:SeriesKey><generic:Attributes><generic:Value id="UOM" value="249" /><generic:Value id="DGUID" value="2016A000011124" /><generic:Value id="SCALAR_FACTOR" value="0" /><generic:Value id="VECTOR_ID" value="466669" /><generic:Value id="NB_DECIMAL" value="0" /></generic:Attributes><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2012" /><generic:ObsValue value="17209900" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2013" /><generic:ObsValue value="17401165" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2014" /><generic:ObsValue value="17581697" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2015" /><generic:ObsValue value="17712801" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2016" /><generic:ObsValue value="17916496" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2017" /><generic:ObsValue value="18135268" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2018" /><generic:ObsValue value="18402681" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2019" /><generic:ObsValue value="18678085" /></generic:Obs></generic:Series></message:DataSet></message:GenericData>
SDMX-ML 2.1 Structure Specific Data
<?xml version="1.0" encoding="utf-8"?><!--NSI Web Service v7.8.0.0--><message:StructureSpecificData xmlns:ss="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/data/structurespecific" xmlns:footer="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/message/footer" xmlns:ns1="urn:sdmx:org.sdmx.infomodel.datastructure.DataStructure=StatCan:Data_Structure_17100005(1.0):ObsLevelDim:TIME_PERIOD" xmlns:message="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/message" xmlns:common="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/common" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xml="http://www.w3.org/XML/1998/namespace"><message:Header><message:ID>IREF36867abba54c43c29ec589d4027bf84d</message:ID><message:Test>true</message:Test><message:Prepared>2019-11-26T00:17:07</message:Prepared><message:Sender id="NOT_CONFIGURED" /><message:Structure structureID="StatCan_Data_Structure_17100005_1_0" namespace="urn:sdmx:org.sdmx.infomodel.datastructure.DataStructure=StatCan:Data_Structure_17100005(1.0):ObsLevelDim:TIME_PERIOD" dimensionAtObservation="TIME_PERIOD"><common:Structure><Ref agencyID="StatCan" id="Data_Structure_17100005" version="1.0" /></common:Structure></message:Structure><message:DataSetAction>Information</message:DataSetAction></message:Header><message:DataSet action="Information" ss:dataScope="DataStructure" xsi:type="ns1:DataSetType" ss:structureRef="StatCan_Data_Structure_17100005_1_0"><Series Geography="1" Sex="3" Age_group="1" UOM="249" DGUID="2016A000011124" SCALAR_FACTOR="0" VECTOR_ID="466670" NB_DECIMAL="0"><Obs TIME_PERIOD="2012" OBS_VALUE="17504322" /><Obs TIME_PERIOD="2013" OBS_VALUE="17681789" /><Obs TIME_PERIOD="2014" OBS_VALUE="17855738" /><Obs TIME_PERIOD="2015" OBS_VALUE="17990107" /><Obs TIME_PERIOD="2016" OBS_VALUE="18192991" /><Obs TIME_PERIOD="2017" OBS_VALUE="18408053" /><Obs TIME_PERIOD="2018" OBS_VALUE="18655084" /><Obs TIME_PERIOD="2019" OBS_VALUE="18911177" /></Series><Series Geography="1" Sex="2" Age_group="1" UOM="249" DGUID="2016A000011124" SCALAR_FACTOR="0" VECTOR_ID="466669" NB_DECIMAL="0"><Obs TIME_PERIOD="2012" OBS_VALUE="17209900" /><Obs TIME_PERIOD="2013" OBS_VALUE="17401165" /><Obs TIME_PERIOD="2014" OBS_VALUE="17581697" /><Obs TIME_PERIOD="2015" OBS_VALUE="17712801" /><Obs TIME_PERIOD="2016" OBS_VALUE="17916496" /><Obs TIME_PERIOD="2017" OBS_VALUE="18135268" /><Obs TIME_PERIOD="2018" OBS_VALUE="18402681" /><Obs TIME_PERIOD="2019" OBS_VALUE="18678085" /></Series></message:DataSet></message:StructureSpecificData>
SDMX-JSON
{"header":{"id":"IREF70e5ea2ecc1c47fba2695be637395233","prepared":"2019-11-26T00:17:10","test":true,"sender":{"id":"NOT_CONFIGURED","name":"unknown"}},"dataSets":[{"action":"Information","annotations":[],"series":{"0:0:0":{"attributes":[0,0,0,0,0,null],"annotations":[],"observations":{"0":[17504322],"1":[17681789],"2":[17855738],"3":[17990107],"4":[18192991],"5":[18408053],"6":[18655084],"7":[18911177]}},"0:1:0":{"attributes":[0,0,0,1,0,null],"annotations":[],"observations":{"0":[17209900],"1":[17401165],"2":[17581697],"3":[17712801],"4":[17916496],"5":[18135268],"6":[18402681],"7":[18678085]}}}}],"structure":{"name":"Population estimates on July 1st, by age and sex","description":"","dimensions":{"dataset":[],"series":[{"id":"Geography","name":"Geography","keyPosition":0,"role":"Geography","values":[{"id":"1","name":"Canada"}]},{"id":"Sex","name":"Sex","keyPosition":1,"role":"Sex","values":[{"id":"3","name":"Females"},{"id":"2","name":"Males"}]},{"id":"Age_group","name":"Age group","keyPosition":2,"role":"Age_group","values":[{"id":"1","name":"All ages"}]}],"observation":[{"id":"TIME_PERIOD","name":"Time","keyPosition":3,"role":"TIME_PERIOD","values":[{"start":"2012-01-01T00:00:00","end":"2012-12-31T23:59:59","id":"2012","name":"2012"},{"start":"2013-01-01T00:00:00","end":"2013-12-31T23:59:59","id":"2013","name":"2013"},{"start":"2014-01-01T00:00:00","end":"2014-12-31T23:59:59","id":"2014","name":"2014"},{"start":"2015-01-01T00:00:00","end":"2015-12-31T23:59:59","id":"2015","name":"2015"},{"start":"2016-01-01T00:00:00","end":"2016-12-31T23:59:59","id":"2016","name":"2016"},{"start":"2017-01-01T00:00:00","end":"2017-12-31T23:59:59","id":"2017","name":"2017"},{"start":"2018-01-01T00:00:00","end":"2018-12-31T23:59:59","id":"2018","name":"2018"},{"start":"2019-01-01T00:00:00","end":"2019-12-31T23:59:59","id":"2019","name":"2019"}]}]},"attributes":{"dataSet":[],"series":[{"id":"UOM","name":"Unit of measure","role":"UOM","values":[{"id":"249","name":"Persons"}]},{"id":"DGUID","name":"DGUID","role":"DGUID","values":[{"id":"2016A000011124","name":"2016A000011124"}]},{"id":"SCALAR_FACTOR","name":"Scalar Factor","role":"SCALAR_FACTOR","values":[{"id":"0","name":"units"}]},{"id":"VECTOR_ID","name":"Vector ID","role":"VECTOR_ID","values":[{"id":"466670","name":"466670"},{"id":"466669","name":"466669"}]},{"id":"NB_DECIMAL","name":"Number of decimal","role":"NB_DECIMAL","values":[{"id":"0","name":"0"}]},{"id":"TERMINATED","name":"Terminated","role":"TERMINATED","values":[]}],"observation":[{"id":"SYMBOL","name":"Symbol","role":"SYMBOL","values":[]},{"id":"STATUS_CAN","name":"Status","role":"STATUS_CAN","values":[]},{"id":"SECURITY_LEVEL","name":"Security Level","role":"SECURITY_LEVEL","values":[]}]},"annotations":[]}}
3. Retrieve the data for the series .1.138 (all geographies / Both sexes / 100 years and over) for the 17100005 dataflow and for the reference years 2015 & 2016. Table 17100005 is presented in full details in appendix 1.

https://www150.statcan.gc.ca/t1/wds/sdmx/statcan/rest/data/DF_17100005/.1.138?startPeriod=2015&endPeriod=2016

Results

SDMX-ML 2.1 Generic Data
<?xml version="1.0" encoding="utf-8"?><!--NSI Web Service v7.8.0.0--><message:GenericData xmlns:footer="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/message/footer" xmlns:generic="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/data/generic" xmlns:message="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/message" xmlns:common="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/common" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xml="http://www.w3.org/XML/1998/namespace"><message:Header><message:ID>IREFe55da3e3a9cb49a8bf2e3a9846e3e9cb</message:ID><message:Test>true</message:Test><message:Prepared>2019-11-28T00:06:41</message:Prepared><message:Sender id="NOT_CONFIGURED" /><message:Structure structureID="StatCan_Data_Structure_17100005_1_0" dimensionAtObservation="TIME_PERIOD"><common:Structure><Ref agencyID="StatCan" id="Data_Structure_17100005" version="1.0" /></common:Structure></message:Structure><message:DataSetAction>Information</message:DataSetAction></message:Header><message:DataSet action="Information" structureRef="StatCan_Data_Structure_17100005_1_0"><generic:Series><generic:SeriesKey><generic:Value id="Geography" value="2" /><generic:Value id="Sex" value="1" /><generic:Value id="Age_group" value="138" /></generic:SeriesKey><generic:Attributes><generic:Value id="UOM" value="249" /><generic:Value id="DGUID" value="2016A000210" /><generic:Value id="SCALAR_FACTOR" value="0" /><generic:Value id="VECTOR_ID" value="31226575" /><generic:Value id="NB_DECIMAL" value="0" /></generic:Attributes><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2015" /><generic:ObsValue value="107" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2016" /><generic:ObsValue value="99" /></generic:Obs></generic:Series><generic:Series><generic:SeriesKey><generic:Value id="Geography" value="15" /><generic:Value id="Sex" value="1" /><generic:Value id="Age_group" value="138" /></generic:SeriesKey><generic:Attributes><generic:Value id="UOM" value="249" /><generic:Value id="DGUID" value="2016A000262" /><generic:Value id="SCALAR_FACTOR" value="0" /><generic:Value id="VECTOR_ID" value="31227082" /><generic:Value id="NB_DECIMAL" value="0" /></generic:Attributes><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2015" /><generic:ObsValue value="1" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2016" /><generic:ObsValue value="1" /></generic:Obs></generic:Series><generic:Series><generic:SeriesKey><generic:Value id="Geography" value="5" /><generic:Value id="Sex" value="1" /><generic:Value id="Age_group" value="138" /></generic:SeriesKey><generic:Attributes><generic:Value id="UOM" value="249" /><generic:Value id="DGUID" value="2016A000213" /><generic:Value id="SCALAR_FACTOR" value="0" /><generic:Value id="VECTOR_ID" value="31226692" /><generic:Value id="NB_DECIMAL" value="0" /></generic:Attributes><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2015" /><generic:ObsValue value="212" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2016" /><generic:ObsValue value="209" /></generic:Obs></generic:Series><generic:Series><generic:SeriesKey><generic:Value id="Geography" value="11" /><generic:Value id="Sex" value="1" /><generic:Value id="Age_group" value="138" /></generic:SeriesKey><generic:Attributes><generic:Value id="UOM" value="249" /><generic:Value id="DGUID" value="2016A000259" /><generic:Value id="SCALAR_FACTOR" value="0" /><generic:Value id="VECTOR_ID" value="31226926" /><generic:Value id="NB_DECIMAL" value="0" /></generic:Attributes><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2015" /><generic:ObsValue value="1342" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2016" /><generic:ObsValue value="1371" /></generic:Obs></generic:Series><generic:Series><generic:SeriesKey><generic:Value id="Geography" value="9" /><generic:Value id="Sex" value="1" /><generic:Value id="Age_group" value="138" /></generic:SeriesKey><generic:Attributes><generic:Value id="UOM" value="249" /><generic:Value id="DGUID" value="2016A000247" /><generic:Value id="SCALAR_FACTOR" value="0" /><generic:Value id="VECTOR_ID" value="31226848" /><generic:Value id="NB_DECIMAL" value="0" /></generic:Attributes><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2015" /><generic:ObsValue value="445" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2016" /><generic:ObsValue value="407" /></generic:Obs></generic:Series><generic:Series><generic:SeriesKey><generic:Value id="Geography" value="14" /><generic:Value id="Sex" value="1" /><generic:Value id="Age_group" value="138" /></generic:SeriesKey><generic:Attributes><generic:Value id="UOM" value="249" /><generic:Value id="DGUID" value="2016A000261" /><generic:Value id="SCALAR_FACTOR" value="0" /><generic:Value id="VECTOR_ID" value="31227043" /><generic:Value id="NB_DECIMAL" value="0" /></generic:Attributes><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2015" /><generic:ObsValue value="1" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2016" /><generic:ObsValue value="3" /></generic:Obs></generic:Series><generic:Series><generic:SeriesKey><generic:Value id="Geography" value="6" /><generic:Value id="Sex" value="1" /><generic:Value id="Age_group" value="138" /></generic:SeriesKey><generic:Attributes><generic:Value id="UOM" value="249" /><generic:Value id="DGUID" value="2016A000224" /><generic:Value id="SCALAR_FACTOR" value="0" /><generic:Value id="VECTOR_ID" value="31226731" /><generic:Value id="NB_DECIMAL" value="0" /></generic:Attributes><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2015" /><generic:ObsValue value="1719" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2016" /><generic:ObsValue value="2008" /></generic:Obs></generic:Series><generic:Series><generic:SeriesKey><generic:Value id="Geography" value="12" /><generic:Value id="Sex" value="1" /><generic:Value id="Age_group" value="138" /></generic:SeriesKey><generic:Attributes><generic:Value id="UOM" value="249" /><generic:Value id="DGUID" value="2016A000260" /><generic:Value id="SCALAR_FACTOR" value="0" /><generic:Value id="VECTOR_ID" value="31226965" /><generic:Value id="NB_DECIMAL" value="0" /></generic:Attributes><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2015" /><generic:ObsValue value="0" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2016" /><generic:ObsValue value="0" /></generic:Obs></generic:Series><generic:Series><generic:SeriesKey><generic:Value id="Geography" value="8" /><generic:Value id="Sex" value="1" /><generic:Value id="Age_group" value="138" /></generic:SeriesKey><generic:Attributes><generic:Value id="UOM" value="249" /><generic:Value id="DGUID" value="2016A000246" /><generic:Value id="SCALAR_FACTOR" value="0" /><generic:Value id="VECTOR_ID" value="31226809" /><generic:Value id="NB_DECIMAL" value="0" /></generic:Attributes><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2015" /><generic:ObsValue value="375" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2016" /><generic:ObsValue value="446" /></generic:Obs></generic:Series><generic:Series><generic:SeriesKey><generic:Value id="Geography" value="7" /><generic:Value id="Sex" value="1" /><generic:Value id="Age_group" value="138" /></generic:SeriesKey><generic:Attributes><generic:Value id="UOM" value="249" /><generic:Value id="DGUID" value="2016A000235" /><generic:Value id="SCALAR_FACTOR" value="0" /><generic:Value id="VECTOR_ID" value="31226770" /><generic:Value id="NB_DECIMAL" value="0" /></generic:Attributes><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2015" /><generic:ObsValue value="2790" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2016" /><generic:ObsValue value="3067" /></generic:Obs></generic:Series><generic:Series><generic:SeriesKey><generic:Value id="Geography" value="4" /><generic:Value id="Sex" value="1" /><generic:Value id="Age_group" value="138" /></generic:SeriesKey><generic:Attributes><generic:Value id="UOM" value="249" /><generic:Value id="DGUID" value="2016A000212" /><generic:Value id="SCALAR_FACTOR" value="0" /><generic:Value id="VECTOR_ID" value="31226653" /><generic:Value id="NB_DECIMAL" value="0" /></generic:Attributes><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2015" /><generic:ObsValue value="263" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2016" /><generic:ObsValue value="279" /></generic:Obs></generic:Series><generic:Series><generic:SeriesKey><generic:Value id="Geography" value="1" /><generic:Value id="Sex" value="1" /><generic:Value id="Age_group" value="138" /></generic:SeriesKey><generic:Attributes><generic:Value id="UOM" value="249" /><generic:Value id="DGUID" value="2016A000011124" /><generic:Value id="SCALAR_FACTOR" value="0" /><generic:Value id="VECTOR_ID" value="31226536" /><generic:Value id="NB_DECIMAL" value="0" /></generic:Attributes><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2015" /><generic:ObsValue value="7911" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2016" /><generic:ObsValue value="8643" /></generic:Obs></generic:Series><generic:Series><generic:SeriesKey><generic:Value id="Geography" value="3" /><generic:Value id="Sex" value="1" /><generic:Value id="Age_group" value="138" /></generic:SeriesKey><generic:Attributes><generic:Value id="UOM" value="249" /><generic:Value id="DGUID" value="2016A000211" /><generic:Value id="SCALAR_FACTOR" value="0" /><generic:Value id="VECTOR_ID" value="31226614" /><generic:Value id="NB_DECIMAL" value="0" /></generic:Attributes><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2015" /><generic:ObsValue value="37" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2016" /><generic:ObsValue value="36" /></generic:Obs></generic:Series><generic:Series><generic:SeriesKey><generic:Value id="Geography" value="10" /><generic:Value id="Sex" value="1" /><generic:Value id="Age_group" value="138" /></generic:SeriesKey><generic:Attributes><generic:Value id="UOM" value="249" /><generic:Value id="DGUID" value="2016A000248" /><generic:Value id="SCALAR_FACTOR" value="0" /><generic:Value id="VECTOR_ID" value="31226887" /><generic:Value id="NB_DECIMAL" value="0" /></generic:Attributes><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2015" /><generic:ObsValue value="619" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2016" /><generic:ObsValue value="717" /></generic:Obs></generic:Series></message:DataSet></message:GenericData>
SDMX-ML 2.1 Structure Specific Data
<?xml version="1.0" encoding="utf-8"?><!--NSI Web Service v7.8.0.0--><message:StructureSpecificData xmlns:ss="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/data/structurespecific" xmlns:footer="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/message/footer" xmlns:ns1="urn:sdmx:org.sdmx.infomodel.datastructure.DataStructure=StatCan:Data_Structure_17100005(1.0):ObsLevelDim:TIME_PERIOD" xmlns:message="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/message" xmlns:common="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/common" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xml="http://www.w3.org/XML/1998/namespace"><message:Header><message:ID>IREF4aa123a91bd145399d7f81a9cc45d5b1</message:ID><message:Test>true</message:Test><message:Prepared>2019-11-28T00:06:41</message:Prepared><message:Sender id="NOT_CONFIGURED" /><message:Structure structureID="StatCan_Data_Structure_17100005_1_0" namespace="urn:sdmx:org.sdmx.infomodel.datastructure.DataStructure=StatCan:Data_Structure_17100005(1.0):ObsLevelDim:TIME_PERIOD" dimensionAtObservation="TIME_PERIOD"><common:Structure><Ref agencyID="StatCan" id="Data_Structure_17100005" version="1.0" /></common:Structure></message:Structure><message:DataSetAction>Information</message:DataSetAction></message:Header><message:DataSet action="Information" ss:dataScope="DataStructure" xsi:type="ns1:DataSetType" ss:structureRef="StatCan_Data_Structure_17100005_1_0"><Series Geography="2" Sex="1" Age_group="138" UOM="249" DGUID="2016A000210" SCALAR_FACTOR="0" VECTOR_ID="31226575" NB_DECIMAL="0"><Obs TIME_PERIOD="2015" OBS_VALUE="107" /><Obs TIME_PERIOD="2016" OBS_VALUE="99" /></Series><Series Geography="15" Sex="1" Age_group="138" UOM="249" DGUID="2016A000262" SCALAR_FACTOR="0" VECTOR_ID="31227082" NB_DECIMAL="0"><Obs TIME_PERIOD="2015" OBS_VALUE="1" /><Obs TIME_PERIOD="2016" OBS_VALUE="1" /></Series><Series Geography="5" Sex="1" Age_group="138" UOM="249" DGUID="2016A000213" SCALAR_FACTOR="0" VECTOR_ID="31226692" NB_DECIMAL="0"><Obs TIME_PERIOD="2015" OBS_VALUE="212" /><Obs TIME_PERIOD="2016" OBS_VALUE="209" /></Series><Series Geography="11" Sex="1" Age_group="138" UOM="249" DGUID="2016A000259" SCALAR_FACTOR="0" VECTOR_ID="31226926" NB_DECIMAL="0"><Obs TIME_PERIOD="2015" OBS_VALUE="1342" /><Obs TIME_PERIOD="2016" OBS_VALUE="1371" /></Series><Series Geography="9" Sex="1" Age_group="138" UOM="249" DGUID="2016A000247" SCALAR_FACTOR="0" VECTOR_ID="31226848" NB_DECIMAL="0"><Obs TIME_PERIOD="2015" OBS_VALUE="445" /><Obs TIME_PERIOD="2016" OBS_VALUE="407" /></Series><Series Geography="14" Sex="1" Age_group="138" UOM="249" DGUID="2016A000261" SCALAR_FACTOR="0" VECTOR_ID="31227043" NB_DECIMAL="0"><Obs TIME_PERIOD="2015" OBS_VALUE="1" /><Obs TIME_PERIOD="2016" OBS_VALUE="3" /></Series><Series Geography="6" Sex="1" Age_group="138" UOM="249" DGUID="2016A000224" SCALAR_FACTOR="0" VECTOR_ID="31226731" NB_DECIMAL="0"><Obs TIME_PERIOD="2015" OBS_VALUE="1719" /><Obs TIME_PERIOD="2016" OBS_VALUE="2008" /></Series><Series Geography="12" Sex="1" Age_group="138" UOM="249" DGUID="2016A000260" SCALAR_FACTOR="0" VECTOR_ID="31226965" NB_DECIMAL="0"><Obs TIME_PERIOD="2015" OBS_VALUE="0" /><Obs TIME_PERIOD="2016" OBS_VALUE="0" /></Series><Series Geography="8" Sex="1" Age_group="138" UOM="249" DGUID="2016A000246" SCALAR_FACTOR="0" VECTOR_ID="31226809" NB_DECIMAL="0"><Obs TIME_PERIOD="2015" OBS_VALUE="375" /><Obs TIME_PERIOD="2016" OBS_VALUE="446" /></Series><Series Geography="7" Sex="1" Age_group="138" UOM="249" DGUID="2016A000235" SCALAR_FACTOR="0" VECTOR_ID="31226770" NB_DECIMAL="0"><Obs TIME_PERIOD="2015" OBS_VALUE="2790" /><Obs TIME_PERIOD="2016" OBS_VALUE="3067" /></Series><Series Geography="4" Sex="1" Age_group="138" UOM="249" DGUID="2016A000212" SCALAR_FACTOR="0" VECTOR_ID="31226653" NB_DECIMAL="0"><Obs TIME_PERIOD="2015" OBS_VALUE="263" /><Obs TIME_PERIOD="2016" OBS_VALUE="279" /></Series><Series Geography="1" Sex="1" Age_group="138" UOM="249" DGUID="2016A000011124" SCALAR_FACTOR="0" VECTOR_ID="31226536" NB_DECIMAL="0"><Obs TIME_PERIOD="2015" OBS_VALUE="7911" /><Obs TIME_PERIOD="2016" OBS_VALUE="8643" /></Series><Series Geography="3" Sex="1" Age_group="138" UOM="249" DGUID="2016A000211" SCALAR_FACTOR="0" VECTOR_ID="31226614" NB_DECIMAL="0"><Obs TIME_PERIOD="2015" OBS_VALUE="37" /><Obs TIME_PERIOD="2016" OBS_VALUE="36" /></Series><Series Geography="10" Sex="1" Age_group="138" UOM="249" DGUID="2016A000248" SCALAR_FACTOR="0" VECTOR_ID="31226887" NB_DECIMAL="0"><Obs TIME_PERIOD="2015" OBS_VALUE="619" /><Obs TIME_PERIOD="2016" OBS_VALUE="717" /></Series></message:DataSet></message:StructureSpecificData>
SDMX-JSON
{"header":{"id":"IREFe54d9d171ea440efac8ea032cbbe156c","prepared":"2019-11-28T00:06:42","test":true,"sender":{"id":"NOT_CONFIGURED","name":"unknown"}},"dataSets":[{"action":"Information","annotations":[],"series":{"0:0:0":{"attributes":[0,0,0,0,0,null],"annotations":[],"observations":{"0":[107],"1":[99]}},"1:0:0":{"attributes":[0,1,0,1,0,null],"annotations":[],"observations":{"0":[1],"1":[1]}},"2:0:0":{"attributes":[0,2,0,2,0,null],"annotations":[],"observations":{"0":[212],"1":[209]}},"3:0:0":{"attributes":[0,3,0,3,0,null],"annotations":[],"observations":{"0":[1342],"1":[1371]}},"4:0:0":{"attributes":[0,4,0,4,0,null],"annotations":[],"observations":{"0":[445],"1":[407]}},"5:0:0":{"attributes":[0,5,0,5,0,null],"annotations":[],"observations":{"0":[1],"1":[3]}},"6:0:0":{"attributes":[0,6,0,6,0,null],"annotations":[],"observations":{"0":[1719],"1":[2008]}},"7:0:0":{"attributes":[0,7,0,7,0,null],"annotations":[],"observations":{"0":[0],"1":[0]}},"8:0:0":{"attributes":[0,8,0,8,0,null],"annotations":[],"observations":{"0":[375],"1":[446]}},"9:0:0":{"attributes":[0,9,0,9,0,null],"annotations":[],"observations":{"0":[2790],"1":[3067]}},"10:0:0":{"attributes":[0,10,0,10,0,null],"annotations":[],"observations":{"0":[263],"1":[279]}},"11:0:0":{"attributes":[0,11,0,11,0,null],"annotations":[],"observations":{"0":[7911],"1":[8643]}},"12:0:0":{"attributes":[0,12,0,12,0,null],"annotations":[],"observations":{"0":[37],"1":[36]}},"13:0:0":{"attributes":[0,13,0,13,0,null],"annotations":[],"observations":{"0":[619],"1":[717]}}}}],"structure":{"name":"Population estimates on July 1st, by age and sex","description":"","dimensions":{"dataset":[],"series":[{"id":"Geography","name":"Geography","keyPosition":0,"role":"Geography","values":[{"id":"2","name":"Newfoundland and Labrador"},{"id":"15","name":"Nunavut"},{"id":"5","name":"New Brunswick"},{"id":"11","name":"British Columbia"},{"id":"9","name":"Saskatchewan"},{"id":"14","name":"Northwest Territories"},{"id":"6","name":"Quebec"},{"id":"12","name":"Yukon"},{"id":"8","name":"Manitoba"},{"id":"7","name":"Ontario"},{"id":"4","name":"Nova Scotia"},{"id":"1","name":"Canada"},{"id":"3","name":"Prince Edward Island"},{"id":"10","name":"Alberta"}]},{"id":"Sex","name":"Sex","keyPosition":1,"role":"Sex","values":[{"id":"1","name":"Both sexes"}]},{"id":"Age_group","name":"Age group","keyPosition":2,"role":"Age_group","values":[{"id":"138","name":"100 years and over"}]}],"observation":[{"id":"TIME_PERIOD","name":"Time","keyPosition":3,"role":"TIME_PERIOD","values":[{"start":"2015-01-01T00:00:00","end":"2015-12-31T23:59:59","id":"2015","name":"2015"},{"start":"2016-01-01T00:00:00","end":"2016-12-31T23:59:59","id":"2016","name":"2016"}]}]},"attributes":{"dataSet":[],"series":[{"id":"UOM","name":"Unit of measure","role":"UOM","values":[{"id":"249","name":"Persons"}]},{"id":"DGUID","name":"DGUID","role":"DGUID","values":[{"id":"2016A000210","name":"2016A000210"},{"id":"2016A000262","name":"2016A000262"},{"id":"2016A000213","name":"2016A000213"},{"id":"2016A000259","name":"2016A000259"},{"id":"2016A000247","name":"2016A000247"},{"id":"2016A000261","name":"2016A000261"},{"id":"2016A000224","name":"2016A000224"},{"id":"2016A000260","name":"2016A000260"},{"id":"2016A000246","name":"2016A000246"},{"id":"2016A000235","name":"2016A000235"},{"id":"2016A000212","name":"2016A000212"},{"id":"2016A000011124","name":"2016A000011124"},{"id":"2016A000211","name":"2016A000211"},{"id":"2016A000248","name":"2016A000248"}]},{"id":"SCALAR_FACTOR","name":"Scalar Factor","role":"SCALAR_FACTOR","values":[{"id":"0","name":"units"}]},{"id":"VECTOR_ID","name":"Vector ID","role":"VECTOR_ID","values":[{"id":"31226575","name":"31226575"},{"id":"31227082","name":"31227082"},{"id":"31226692","name":"31226692"},{"id":"31226926","name":"31226926"},{"id":"31226848","name":"31226848"},{"id":"31227043","name":"31227043"},{"id":"31226731","name":"31226731"},{"id":"31226965","name":"31226965"},{"id":"31226809","name":"31226809"},{"id":"31226770","name":"31226770"},{"id":"31226653","name":"31226653"},{"id":"31226536","name":"31226536"},{"id":"31226614","name":"31226614"},{"id":"31226887","name":"31226887"}]},{"id":"NB_DECIMAL","name":"Number of decimal","role":"NB_DECIMAL","values":[{"id":"0","name":"0"}]},{"id":"TERMINATED","name":"Terminated","role":"TERMINATED","values":[]}],"observation":[{"id":"SYMBOL","name":"Symbol","role":"SYMBOL","values":[]},{"id":"STATUS_CAN","name":"Status","role":"STATUS_CAN","values":[]},{"id":"SECURITY_LEVEL","name":"Security Level","role":"SECURITY_LEVEL","values":[]}]},"annotations":[]}}

SDMX Data (vector) Web Service

All the data stored in CODR can be retrieved using the query string described below.

 protocol://wsEntryPoint/resource/vector?parameters

where parameters are defined as such:

startPeriod=value&endPeriod=value&firstNObservations=value&lastNObservations=value&detail=value

Syntax definition

protocol
The web service is available over http and https.
wsEntryPoint
The web service entry point is available at the same location of the sdmx data and metadata entry point.
resource
The resource for vector queries is vector.
vector
The vector allows statistical time series to be identified. Vectors are unique identifiers to a time series of data points. (i.e. v123456) They do not change over time. Given the vector number does not change, users can still use the same vectors as shortcuts to their data points of interest.
startPeriod & endPeriod

It is possible to define a date range for which observations should be returned by using the startPeriod and/or endPeriod parameters. The values should be given according to the syntax defined in ISO 8601 or as SDMX reporting periods. The format will vary depending on the frequency.

The supported formats are:

  • YYYY for annual data (e.g.: 2013).
  • YYYY-MM for monthly data (e.g.: 2013-01).
  • YYYY-MM-DD for daily data (e.g.: 2013-01-01).
Detail

Using the detail parameter, it is possible to specify the desired amount of information to be returned by the web service.

Possible options are:

  • full: The data (series and observations) and the attributes will be returned. This is the default.
firstNObservations & lastNObservations
Using the firstNObservations and/or lastNObservations parameters, it is possible to specify the maximum number of observations to be returned for each of the matching series, starting from the first observation (firstNObservations) or counting back from the most recent observation (lastNObservations).

Examples

4. Retrieve the data for the series (vectors) 466670 (Canada / Male / All ages). Table 17100005 is presented in full details in appendix 1.

https://www150.statcan.gc.ca/t1/wds/sdmx/statcan/rest/vector/v466670

Results

SDMX-ML 2.1 Generic Data
<?xml version="1.0" encoding="utf-8"?><!--NSI Web Service v7.8.0.0--><message:GenericData xmlns:footer="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/message/footer" xmlns:generic="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/data/generic" xmlns:message="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/message" xmlns:common="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/common" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xml="http://www.w3.org/XML/1998/namespace"><message:Header><message:ID>IREFf7ccf4e1550b46f9b91a43343e5debd3</message:ID><message:Test>true</message:Test><message:Prepared>2019-11-26T00:17:08</message:Prepared><message:Sender id="NOT_CONFIGURED" /><message:Structure structureID="StatCan_Data_Structure_17100005_1_0" dimensionAtObservation="TIME_PERIOD"><common:Structure><Ref agencyID="StatCan" id="Data_Structure_17100005" version="1.0" /></common:Structure></message:Structure><message:DataSetAction>Information</message:DataSetAction></message:Header><message:DataSet action="Information" structureRef="StatCan_Data_Structure_17100005_1_0"><generic:Series><generic:SeriesKey><generic:Value id="Geography" value="1" /><generic:Value id="Sex" value="3" /><generic:Value id="Age_group" value="1" /></generic:SeriesKey><generic:Attributes><generic:Value id="UOM" value="249" /><generic:Value id="DGUID" value="2016A000011124" /><generic:Value id="SCALAR_FACTOR" value="0" /><generic:Value id="VECTOR_ID" value="466670" /><generic:Value id="NB_DECIMAL" value="0" /></generic:Attributes><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2012" /><generic:ObsValue value="17504322" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2013" /><generic:ObsValue value="17681789" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2014" /><generic:ObsValue value="17855738" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2015" /><generic:ObsValue value="17990107" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2016" /><generic:ObsValue value="18192991" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2017" /><generic:ObsValue value="18408053" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2018" /><generic:ObsValue value="18655084" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2019" /><generic:ObsValue value="18911177" /></generic:Obs></generic:Series><generic:Series><generic:SeriesKey><generic:Value id="Geography" value="1" /><generic:Value id="Sex" value="2" /><generic:Value id="Age_group" value="1" /></generic:SeriesKey><generic:Attributes><generic:Value id="UOM" value="249" /><generic:Value id="DGUID" value="2016A000011124" /><generic:Value id="SCALAR_FACTOR" value="0" /><generic:Value id="VECTOR_ID" value="466669" /><generic:Value id="NB_DECIMAL" value="0" /></generic:Attributes><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2012" /><generic:ObsValue value="17209900" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2013" /><generic:ObsValue value="17401165" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2014" /><generic:ObsValue value="17581697" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2015" /><generic:ObsValue value="17712801" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2016" /><generic:ObsValue value="17916496" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2017" /><generic:ObsValue value="18135268" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2018" /><generic:ObsValue value="18402681" /></generic:Obs><generic:Obs><generic:ObsDimension id="TIME_PERIOD" value="2019" /><generic:ObsValue value="18678085" /></generic:Obs></generic:Series></message:DataSet></message:GenericData>
SDMX-ML 2.1 Structure Specific Data
<?xml version="1.0" encoding="utf-8"?><!--NSI Web Service v7.8.0.0--><message:StructureSpecificData xmlns:ss="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/data/structurespecific" xmlns:footer="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/message/footer" xmlns:ns1="urn:sdmx:org.sdmx.infomodel.datastructure.DataStructure=StatCan:Data_Structure_17100005(1.0):ObsLevelDim:TIME_PERIOD" xmlns:message="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/message" xmlns:common="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/common" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xml="http://www.w3.org/XML/1998/namespace"><message:Header><message:ID>IREF36867abba54c43c29ec589d4027bf84d</message:ID><message:Test>true</message:Test><message:Prepared>2019-11-26T00:17:07</message:Prepared><message:Sender id="NOT_CONFIGURED" /><message:Structure structureID="StatCan_Data_Structure_17100005_1_0" namespace="urn:sdmx:org.sdmx.infomodel.datastructure.DataStructure=StatCan:Data_Structure_17100005(1.0):ObsLevelDim:TIME_PERIOD" dimensionAtObservation="TIME_PERIOD"><common:Structure><Ref agencyID="StatCan" id="Data_Structure_17100005" version="1.0" /></common:Structure></message:Structure><message:DataSetAction>Information</message:DataSetAction></message:Header><message:DataSet action="Information" ss:dataScope="DataStructure" xsi:type="ns1:DataSetType" ss:structureRef="StatCan_Data_Structure_17100005_1_0"><Series Geography="1" Sex="3" Age_group="1" UOM="249" DGUID="2016A000011124" SCALAR_FACTOR="0" VECTOR_ID="466670" NB_DECIMAL="0"><Obs TIME_PERIOD="2012" OBS_VALUE="17504322" /><Obs TIME_PERIOD="2013" OBS_VALUE="17681789" /><Obs TIME_PERIOD="2014" OBS_VALUE="17855738" /><Obs TIME_PERIOD="2015" OBS_VALUE="17990107" /><Obs TIME_PERIOD="2016" OBS_VALUE="18192991" /><Obs TIME_PERIOD="2017" OBS_VALUE="18408053" /><Obs TIME_PERIOD="2018" OBS_VALUE="18655084" /><Obs TIME_PERIOD="2019" OBS_VALUE="18911177" /></Series><Series Geography="1" Sex="2" Age_group="1" UOM="249" DGUID="2016A000011124" SCALAR_FACTOR="0" VECTOR_ID="466669" NB_DECIMAL="0"><Obs TIME_PERIOD="2012" OBS_VALUE="17209900" /><Obs TIME_PERIOD="2013" OBS_VALUE="17401165" /><Obs TIME_PERIOD="2014" OBS_VALUE="17581697" /><Obs TIME_PERIOD="2015" OBS_VALUE="17712801" /><Obs TIME_PERIOD="2016" OBS_VALUE="17916496" /><Obs TIME_PERIOD="2017" OBS_VALUE="18135268" /><Obs TIME_PERIOD="2018" OBS_VALUE="18402681" /><Obs TIME_PERIOD="2019" OBS_VALUE="18678085" /></Series></message:DataSet></message:StructureSpecificData>
SDMX-JSON
{"header":{"id":"IREF70e5ea2ecc1c47fba2695be637395233","prepared":"2019-11-26T00:17:10","test":true,"sender":{"id":"NOT_CONFIGURED","name":"unknown"}},"dataSets":[{"action":"Information","annotations":[],"series":{"0:0:0":{"attributes":[0,0,0,0,0,null],"annotations":[],"observations":{"0":[17504322],"1":[17681789],"2":[17855738],"3":[17990107],"4":[18192991],"5":[18408053],"6":[18655084],"7":[18911177]}},"0:1:0":{"attributes":[0,0,0,1,0,null],"annotations":[],"observations":{"0":[17209900],"1":[17401165],"2":[17581697],"3":[17712801],"4":[17916496],"5":[18135268],"6":[18402681],"7":[18678085]}}}}],"structure":{"name":"Population estimates on July 1st, by age and sex","description":"","dimensions":{"dataset":[],"series":[{"id":"Geography","name":"Geography","keyPosition":0,"role":"Geography","values":[{"id":"1","name":"Canada"}]},{"id":"Sex","name":"Sex","keyPosition":1,"role":"Sex","values":[{"id":"3","name":"Females"},{"id":"2","name":"Males"}]},{"id":"Age_group","name":"Age group","keyPosition":2,"role":"Age_group","values":[{"id":"1","name":"All ages"}]}],"observation":[{"id":"TIME_PERIOD","name":"Time","keyPosition":3,"role":"TIME_PERIOD","values":[{"start":"2012-01-01T00:00:00","end":"2012-12-31T23:59:59","id":"2012","name":"2012"},{"start":"2013-01-01T00:00:00","end":"2013-12-31T23:59:59","id":"2013","name":"2013"},{"start":"2014-01-01T00:00:00","end":"2014-12-31T23:59:59","id":"2014","name":"2014"},{"start":"2015-01-01T00:00:00","end":"2015-12-31T23:59:59","id":"2015","name":"2015"},{"start":"2016-01-01T00:00:00","end":"2016-12-31T23:59:59","id":"2016","name":"2016"},{"start":"2017-01-01T00:00:00","end":"2017-12-31T23:59:59","id":"2017","name":"2017"},{"start":"2018-01-01T00:00:00","end":"2018-12-31T23:59:59","id":"2018","name":"2018"},{"start":"2019-01-01T00:00:00","end":"2019-12-31T23:59:59","id":"2019","name":"2019"}]}]},"attributes":{"dataSet":[],"series":[{"id":"UOM","name":"Unit of measure","role":"UOM","values":[{"id":"249","name":"Persons"}]},{"id":"DGUID","name":"DGUID","role":"DGUID","values":[{"id":"2016A000011124","name":"2016A000011124"}]},{"id":"SCALAR_FACTOR","name":"Scalar Factor","role":"SCALAR_FACTOR","values":[{"id":"0","name":"units"}]},{"id":"VECTOR_ID","name":"Vector ID","role":"VECTOR_ID","values":[{"id":"466670","name":"466670"},{"id":"466669","name":"466669"}]},{"id":"NB_DECIMAL","name":"Number of decimal","role":"NB_DECIMAL","values":[{"id":"0","name":"0"}]},{"id":"TERMINATED","name":"Terminated","role":"TERMINATED","values":[]}],"observation":[{"id":"SYMBOL","name":"Symbol","role":"SYMBOL","values":[]},{"id":"STATUS_CAN","name":"Status","role":"STATUS_CAN","values":[]},{"id":"SECURITY_LEVEL","name":"Security Level","role":"SECURITY_LEVEL","values":[]}]},"annotations":[]}}

SDMX Metadata (structure) Web Service

5. Retrieve the latest version in production of the DSD with id 17100005 data structure. Table 17100005 is presented in full details in appendix 1.

https://www150.statcan.gc.ca/t1/wds/sdmx/statcan/rest/structure/Data_Structure_17100005

Results

SDMX-ML Structure format
<?xml version="1.0" encoding="utf-8"?>
<!--NSI Web Service v7.8.0.0-->
<message:Structure xmlns:message="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/message" xmlns:structure="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/structure" xmlns:common="http://www.sdmx.org/resources/sdmxml/schemas/v2_1/common">
  <message:Header>
    <message:ID>IDREF2</message:ID>
    <message:Test>false</message:Test>
    <message:Prepared>2019-11-28T00:14:57.0026038+00:00</message:Prepared>
    <message:Sender id="Unknown" />
    <message:Receiver id="Unknown" />
  </message:Header>
  <message:Structures>
    <structure:Codelists>
      <structure:Codelist id="CL_17100005_Age_group" urn="urn:sdmx:org.sdmx.infomodel.codelist.Codelist=StatCan:CL_17100005_Age_group(1.0)" agencyID="StatCan" version="1.0" isFinal="false">
        <common:Name xml:lang="en">Age group</common:Name>
        <structure:Code id="1" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).1">
          <common:Name xml:lang="en">All ages</common:Name>
          <common:Name xml:lang="fr">Tous âges</common:Name>
        </structure:Code>
        <structure:Code id="7" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).7">
          <common:Name xml:lang="en">0 to 4 years</common:Name>
          <common:Name xml:lang="fr">0 à 4 ans</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="2" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).2">
          <common:Name xml:lang="en">0 years</common:Name>
          <common:Name xml:lang="fr">0 an</common:Name>
          <structure:Parent>
            <Ref id="7" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="3" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).3">
          <common:Name xml:lang="en">1 year</common:Name>
          <common:Name xml:lang="fr">1 an</common:Name>
          <structure:Parent>
            <Ref id="7" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="4" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).4">
          <common:Name xml:lang="en">2 years</common:Name>
          <common:Name xml:lang="fr">2 ans</common:Name>
          <structure:Parent>
            <Ref id="7" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="5" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).5">
          <common:Name xml:lang="en">3 years</common:Name>
          <common:Name xml:lang="fr">3 ans</common:Name>
          <structure:Parent>
            <Ref id="7" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="6" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).6">
          <common:Name xml:lang="en">4 years</common:Name>
          <common:Name xml:lang="fr">4 ans</common:Name>
          <structure:Parent>
            <Ref id="7" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="13" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).13">
          <common:Name xml:lang="en">5 to 9 years</common:Name>
          <common:Name xml:lang="fr">5 à 9 ans</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="8" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).8">
          <common:Name xml:lang="en">5 years</common:Name>
          <common:Name xml:lang="fr">5 ans</common:Name>
          <structure:Parent>
            <Ref id="13" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="9" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).9">
          <common:Name xml:lang="en">6 years</common:Name>
          <common:Name xml:lang="fr">6 ans</common:Name>
          <structure:Parent>
            <Ref id="13" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="10" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).10">
          <common:Name xml:lang="en">7 years</common:Name>
          <common:Name xml:lang="fr">7 ans</common:Name>
          <structure:Parent>
            <Ref id="13" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="11" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).11">
          <common:Name xml:lang="en">8 years</common:Name>
          <common:Name xml:lang="fr">8 ans</common:Name>
          <structure:Parent>
            <Ref id="13" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="12" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).12">
          <common:Name xml:lang="en">9 years</common:Name>
          <common:Name xml:lang="fr">9 ans</common:Name>
          <structure:Parent>
            <Ref id="13" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="19" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).19">
          <common:Name xml:lang="en">10 to 14 years</common:Name>
          <common:Name xml:lang="fr">10 à 14 ans</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="14" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).14">
          <common:Name xml:lang="en">10 years</common:Name>
          <common:Name xml:lang="fr">10 ans</common:Name>
          <structure:Parent>
            <Ref id="19" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="15" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).15">
          <common:Name xml:lang="en">11 years</common:Name>
          <common:Name xml:lang="fr">11 ans</common:Name>
          <structure:Parent>
            <Ref id="19" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="16" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).16">
          <common:Name xml:lang="en">12 years</common:Name>
          <common:Name xml:lang="fr">12 ans</common:Name>
          <structure:Parent>
            <Ref id="19" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="17" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).17">
          <common:Name xml:lang="en">13 years</common:Name>
          <common:Name xml:lang="fr">13 ans</common:Name>
          <structure:Parent>
            <Ref id="19" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="18" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).18">
          <common:Name xml:lang="en">14 years</common:Name>
          <common:Name xml:lang="fr">14 ans</common:Name>
          <structure:Parent>
            <Ref id="19" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="25" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).25">
          <common:Name xml:lang="en">15 to 19 years</common:Name>
          <common:Name xml:lang="fr">15 à 19 ans</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="20" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).20">
          <common:Name xml:lang="en">15 years</common:Name>
          <common:Name xml:lang="fr">15 ans</common:Name>
          <structure:Parent>
            <Ref id="25" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="21" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).21">
          <common:Name xml:lang="en">16 years</common:Name>
          <common:Name xml:lang="fr">16 ans</common:Name>
          <structure:Parent>
            <Ref id="25" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="22" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).22">
          <common:Name xml:lang="en">17 years</common:Name>
          <common:Name xml:lang="fr">17 ans</common:Name>
          <structure:Parent>
            <Ref id="25" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="23" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).23">
          <common:Name xml:lang="en">18 years</common:Name>
          <common:Name xml:lang="fr">18 ans</common:Name>
          <structure:Parent>
            <Ref id="25" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="24" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).24">
          <common:Name xml:lang="en">19 years</common:Name>
          <common:Name xml:lang="fr">19 ans</common:Name>
          <structure:Parent>
            <Ref id="25" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="31" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).31">
          <common:Name xml:lang="en">20 to 24 years</common:Name>
          <common:Name xml:lang="fr">20 à 24 ans</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="26" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).26">
          <common:Name xml:lang="en">20 years</common:Name>
          <common:Name xml:lang="fr">20 ans</common:Name>
          <structure:Parent>
            <Ref id="31" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="27" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).27">
          <common:Name xml:lang="en">21 years</common:Name>
          <common:Name xml:lang="fr">21 ans</common:Name>
          <structure:Parent>
            <Ref id="31" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="28" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).28">
          <common:Name xml:lang="en">22 years</common:Name>
          <common:Name xml:lang="fr">22 ans</common:Name>
          <structure:Parent>
            <Ref id="31" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="29" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).29">
          <common:Name xml:lang="en">23 years</common:Name>
          <common:Name xml:lang="fr">23 ans</common:Name>
          <structure:Parent>
            <Ref id="31" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="30" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).30">
          <common:Name xml:lang="en">24 years</common:Name>
          <common:Name xml:lang="fr">24 ans</common:Name>
          <structure:Parent>
            <Ref id="31" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="37" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).37">
          <common:Name xml:lang="en">25 to 29 years</common:Name>
          <common:Name xml:lang="fr">25 à 29 ans</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="32" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).32">
          <common:Name xml:lang="en">25 years</common:Name>
          <common:Name xml:lang="fr">25 ans</common:Name>
          <structure:Parent>
            <Ref id="37" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="33" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).33">
          <common:Name xml:lang="en">26 years</common:Name>
          <common:Name xml:lang="fr">26 ans</common:Name>
          <structure:Parent>
            <Ref id="37" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="34" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).34">
          <common:Name xml:lang="en">27 years</common:Name>
          <common:Name xml:lang="fr">27 ans</common:Name>
          <structure:Parent>
            <Ref id="37" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="35" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).35">
          <common:Name xml:lang="en">28 years</common:Name>
          <common:Name xml:lang="fr">28 ans</common:Name>
          <structure:Parent>
            <Ref id="37" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="36" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).36">
          <common:Name xml:lang="en">29 years</common:Name>
          <common:Name xml:lang="fr">29 ans</common:Name>
          <structure:Parent>
            <Ref id="37" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="43" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).43">
          <common:Name xml:lang="en">30 to 34 years</common:Name>
          <common:Name xml:lang="fr">30 à 34 ans</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="38" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).38">
          <common:Name xml:lang="en">30 years</common:Name>
          <common:Name xml:lang="fr">30 ans</common:Name>
          <structure:Parent>
            <Ref id="43" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="39" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).39">
          <common:Name xml:lang="en">31 years</common:Name>
          <common:Name xml:lang="fr">31 ans</common:Name>
          <structure:Parent>
            <Ref id="43" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="40" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).40">
          <common:Name xml:lang="en">32 years</common:Name>
          <common:Name xml:lang="fr">32 ans</common:Name>
          <structure:Parent>
            <Ref id="43" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="41" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).41">
          <common:Name xml:lang="en">33 years</common:Name>
          <common:Name xml:lang="fr">33 ans</common:Name>
          <structure:Parent>
            <Ref id="43" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="42" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).42">
          <common:Name xml:lang="en">34 years</common:Name>
          <common:Name xml:lang="fr">34 ans</common:Name>
          <structure:Parent>
            <Ref id="43" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="49" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).49">
          <common:Name xml:lang="en">35 to 39 years</common:Name>
          <common:Name xml:lang="fr">35 à 39 ans</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="44" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).44">
          <common:Name xml:lang="en">35 years</common:Name>
          <common:Name xml:lang="fr">35 ans</common:Name>
          <structure:Parent>
            <Ref id="49" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="45" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).45">
          <common:Name xml:lang="en">36 years</common:Name>
          <common:Name xml:lang="fr">36 ans</common:Name>
          <structure:Parent>
            <Ref id="49" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="46" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).46">
          <common:Name xml:lang="en">37 years</common:Name>
          <common:Name xml:lang="fr">37 ans</common:Name>
          <structure:Parent>
            <Ref id="49" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="47" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).47">
          <common:Name xml:lang="en">38 years</common:Name>
          <common:Name xml:lang="fr">38 ans</common:Name>
          <structure:Parent>
            <Ref id="49" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="48" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).48">
          <common:Name xml:lang="en">39 years</common:Name>
          <common:Name xml:lang="fr">39 ans</common:Name>
          <structure:Parent>
            <Ref id="49" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="55" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).55">
          <common:Name xml:lang="en">40 to 44 years</common:Name>
          <common:Name xml:lang="fr">40 à 44 ans</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="50" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).50">
          <common:Name xml:lang="en">40 years</common:Name>
          <common:Name xml:lang="fr">40 ans</common:Name>
          <structure:Parent>
            <Ref id="55" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="51" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).51">
          <common:Name xml:lang="en">41 years</common:Name>
          <common:Name xml:lang="fr">41 ans</common:Name>
          <structure:Parent>
            <Ref id="55" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="52" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).52">
          <common:Name xml:lang="en">42 years</common:Name>
          <common:Name xml:lang="fr">42 ans</common:Name>
          <structure:Parent>
            <Ref id="55" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="53" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).53">
          <common:Name xml:lang="en">43 years</common:Name>
          <common:Name xml:lang="fr">43 ans</common:Name>
          <structure:Parent>
            <Ref id="55" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="54" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).54">
          <common:Name xml:lang="en">44 years</common:Name>
          <common:Name xml:lang="fr">44 ans</common:Name>
          <structure:Parent>
            <Ref id="55" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="61" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).61">
          <common:Name xml:lang="en">45 to 49 years</common:Name>
          <common:Name xml:lang="fr">45 à 49 ans</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="56" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).56">
          <common:Name xml:lang="en">45 years</common:Name>
          <common:Name xml:lang="fr">45 ans</common:Name>
          <structure:Parent>
            <Ref id="61" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="57" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).57">
          <common:Name xml:lang="en">46 years</common:Name>
          <common:Name xml:lang="fr">46 ans</common:Name>
          <structure:Parent>
            <Ref id="61" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="58" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).58">
          <common:Name xml:lang="en">47 years</common:Name>
          <common:Name xml:lang="fr">47 ans</common:Name>
          <structure:Parent>
            <Ref id="61" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="59" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).59">
          <common:Name xml:lang="en">48 years</common:Name>
          <common:Name xml:lang="fr">48 ans</common:Name>
          <structure:Parent>
            <Ref id="61" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="60" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).60">
          <common:Name xml:lang="en">49 years</common:Name>
          <common:Name xml:lang="fr">49 ans</common:Name>
          <structure:Parent>
            <Ref id="61" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="67" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).67">
          <common:Name xml:lang="en">50 to 54 years</common:Name>
          <common:Name xml:lang="fr">50 à 54 ans</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="62" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).62">
          <common:Name xml:lang="en">50 years</common:Name>
          <common:Name xml:lang="fr">50 ans</common:Name>
          <structure:Parent>
            <Ref id="67" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="63" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).63">
          <common:Name xml:lang="en">51 years</common:Name>
          <common:Name xml:lang="fr">51 ans</common:Name>
          <structure:Parent>
            <Ref id="67" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="64" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).64">
          <common:Name xml:lang="en">52 years</common:Name>
          <common:Name xml:lang="fr">52 ans</common:Name>
          <structure:Parent>
            <Ref id="67" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="65" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).65">
          <common:Name xml:lang="en">53 years</common:Name>
          <common:Name xml:lang="fr">53 ans</common:Name>
          <structure:Parent>
            <Ref id="67" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="66" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).66">
          <common:Name xml:lang="en">54 years</common:Name>
          <common:Name xml:lang="fr">54 ans</common:Name>
          <structure:Parent>
            <Ref id="67" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="73" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).73">
          <common:Name xml:lang="en">55 to 59 years</common:Name>
          <common:Name xml:lang="fr">55 à 59 ans</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="68" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).68">
          <common:Name xml:lang="en">55 years</common:Name>
          <common:Name xml:lang="fr">55 ans</common:Name>
          <structure:Parent>
            <Ref id="73" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="69" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).69">
          <common:Name xml:lang="en">56 years</common:Name>
          <common:Name xml:lang="fr">56 ans</common:Name>
          <structure:Parent>
            <Ref id="73" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="70" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).70">
          <common:Name xml:lang="en">57 years</common:Name>
          <common:Name xml:lang="fr">57 ans</common:Name>
          <structure:Parent>
            <Ref id="73" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="71" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).71">
          <common:Name xml:lang="en">58 years</common:Name>
          <common:Name xml:lang="fr">58 ans</common:Name>
          <structure:Parent>
            <Ref id="73" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="72" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).72">
          <common:Name xml:lang="en">59 years</common:Name>
          <common:Name xml:lang="fr">59 ans</common:Name>
          <structure:Parent>
            <Ref id="73" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="79" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).79">
          <common:Name xml:lang="en">60 to 64 years</common:Name>
          <common:Name xml:lang="fr">60 à 64 ans</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="74" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).74">
          <common:Name xml:lang="en">60 years</common:Name>
          <common:Name xml:lang="fr">60 ans</common:Name>
          <structure:Parent>
            <Ref id="79" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="75" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).75">
          <common:Name xml:lang="en">61 years</common:Name>
          <common:Name xml:lang="fr">61 ans</common:Name>
          <structure:Parent>
            <Ref id="79" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="76" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).76">
          <common:Name xml:lang="en">62 years</common:Name>
          <common:Name xml:lang="fr">62 ans</common:Name>
          <structure:Parent>
            <Ref id="79" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="77" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).77">
          <common:Name xml:lang="en">63 years</common:Name>
          <common:Name xml:lang="fr">63 ans</common:Name>
          <structure:Parent>
            <Ref id="79" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="78" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).78">
          <common:Name xml:lang="en">64 years</common:Name>
          <common:Name xml:lang="fr">64 ans</common:Name>
          <structure:Parent>
            <Ref id="79" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="85" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).85">
          <common:Name xml:lang="en">65 to 69 years</common:Name>
          <common:Name xml:lang="fr">65 à 69 ans</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="80" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).80">
          <common:Name xml:lang="en">65 years</common:Name>
          <common:Name xml:lang="fr">65 ans</common:Name>
          <structure:Parent>
            <Ref id="85" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="81" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).81">
          <common:Name xml:lang="en">66 years</common:Name>
          <common:Name xml:lang="fr">66 ans</common:Name>
          <structure:Parent>
            <Ref id="85" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="82" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).82">
          <common:Name xml:lang="en">67 years</common:Name>
          <common:Name xml:lang="fr">67 ans</common:Name>
          <structure:Parent>
            <Ref id="85" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="83" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).83">
          <common:Name xml:lang="en">68 years</common:Name>
          <common:Name xml:lang="fr">68 ans</common:Name>
          <structure:Parent>
            <Ref id="85" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="84" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).84">
          <common:Name xml:lang="en">69 years</common:Name>
          <common:Name xml:lang="fr">69 ans</common:Name>
          <structure:Parent>
            <Ref id="85" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="86" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).86">
          <common:Name xml:lang="en">70 to 74 years</common:Name>
          <common:Name xml:lang="fr">70 à 74 ans</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="87" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).87">
          <common:Name xml:lang="en">75 to 79 years</common:Name>
          <common:Name xml:lang="fr">75 à 79 ans</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="88" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).88">
          <common:Name xml:lang="en">80 to 84 years</common:Name>
          <common:Name xml:lang="fr">80 à 84 ans</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="89" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).89">
          <common:Name xml:lang="en">85 to 89 years</common:Name>
          <common:Name xml:lang="fr">85 à 89 ans</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="90" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).90">
          <common:Name xml:lang="en">90 years and over</common:Name>
          <common:Name xml:lang="fr">90 ans et plus</common:Name>
        </structure:Code>
        <structure:Code id="91" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).91">
          <common:Name xml:lang="en">0 to 14 years</common:Name>
          <common:Name xml:lang="fr">0 à 14 ans</common:Name>
        </structure:Code>
        <structure:Code id="92" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).92">
          <common:Name xml:lang="en">0 to 15 years</common:Name>
          <common:Name xml:lang="fr">0 à 15 ans</common:Name>
        </structure:Code>
        <structure:Code id="93" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).93">
          <common:Name xml:lang="en">0 to 16 years</common:Name>
          <common:Name xml:lang="fr">0 à 16 ans</common:Name>
        </structure:Code>
        <structure:Code id="94" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).94">
          <common:Name xml:lang="en">0 to 17 years</common:Name>
          <common:Name xml:lang="fr">0 à 17 ans</common:Name>
        </structure:Code>
        <structure:Code id="95" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).95">
          <common:Name xml:lang="en">15 to 49 years</common:Name>
          <common:Name xml:lang="fr">15 à 49 ans</common:Name>
        </structure:Code>
        <structure:Code id="96" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).96">
          <common:Name xml:lang="en">15 to 64 years</common:Name>
          <common:Name xml:lang="fr">15 à 64 ans</common:Name>
        </structure:Code>
        <structure:Code id="97" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).97">
          <common:Name xml:lang="en">16 to 64 years</common:Name>
          <common:Name xml:lang="fr">16 à 64 ans</common:Name>
        </structure:Code>
        <structure:Code id="98" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).98">
          <common:Name xml:lang="en">17 to 64 years</common:Name>
          <common:Name xml:lang="fr">17 à 64 ans</common:Name>
        </structure:Code>
        <structure:Code id="101" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).101">
          <common:Name xml:lang="en">18 years and over</common:Name>
          <common:Name xml:lang="fr">18 ans et plus</common:Name>
        </structure:Code>
        <structure:Code id="100" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).100">
          <common:Name xml:lang="en">18 to 64 years</common:Name>
          <common:Name xml:lang="fr">18 à 64 ans</common:Name>
          <structure:Parent>
            <Ref id="101" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="99" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).99">
          <common:Name xml:lang="en">18 to 24 years</common:Name>
          <common:Name xml:lang="fr">18 à 24 ans</common:Name>
          <structure:Parent>
            <Ref id="100" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="102" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).102">
          <common:Name xml:lang="en">25 to 44 years</common:Name>
          <common:Name xml:lang="fr">25 à 44 ans</common:Name>
          <structure:Parent>
            <Ref id="100" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="103" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).103">
          <common:Name xml:lang="en">45 to 64 years</common:Name>
          <common:Name xml:lang="fr">45 à 64 ans</common:Name>
          <structure:Parent>
            <Ref id="100" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="104" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).104">
          <common:Name xml:lang="en">65 years and over</common:Name>
          <common:Name xml:lang="fr">65 ans et plus</common:Name>
          <structure:Parent>
            <Ref id="101" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="105" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).105">
          <common:Name xml:lang="en">Median age</common:Name>
          <common:Name xml:lang="fr">Âge médian</common:Name>
        </structure:Code>
        <structure:Code id="106" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).106">
          <common:Name xml:lang="en">70 years</common:Name>
          <common:Name xml:lang="fr">70 ans</common:Name>
          <structure:Parent>
            <Ref id="86" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="107" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).107">
          <common:Name xml:lang="en">71 years</common:Name>
          <common:Name xml:lang="fr">71 ans</common:Name>
          <structure:Parent>
            <Ref id="86" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="108" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).108">
          <common:Name xml:lang="en">72 years</common:Name>
          <common:Name xml:lang="fr">72 ans</common:Name>
          <structure:Parent>
            <Ref id="86" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="109" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).109">
          <common:Name xml:lang="en">73 years</common:Name>
          <common:Name xml:lang="fr">73 ans</common:Name>
          <structure:Parent>
            <Ref id="86" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="110" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).110">
          <common:Name xml:lang="en">74 years</common:Name>
          <common:Name xml:lang="fr">74 ans</common:Name>
          <structure:Parent>
            <Ref id="86" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="111" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).111">
          <common:Name xml:lang="en">75 years</common:Name>
          <common:Name xml:lang="fr">75 ans</common:Name>
          <structure:Parent>
            <Ref id="87" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="112" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).112">
          <common:Name xml:lang="en">76 years</common:Name>
          <common:Name xml:lang="fr">76 ans</common:Name>
          <structure:Parent>
            <Ref id="87" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="113" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).113">
          <common:Name xml:lang="en">77 years</common:Name>
          <common:Name xml:lang="fr">77 ans</common:Name>
          <structure:Parent>
            <Ref id="87" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="114" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).114">
          <common:Name xml:lang="en">78 years</common:Name>
          <common:Name xml:lang="fr">78 ans</common:Name>
          <structure:Parent>
            <Ref id="87" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="115" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).115">
          <common:Name xml:lang="en">79 years</common:Name>
          <common:Name xml:lang="fr">79 ans</common:Name>
          <structure:Parent>
            <Ref id="87" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="116" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).116">
          <common:Name xml:lang="en">80 years</common:Name>
          <common:Name xml:lang="fr">80 ans</common:Name>
          <structure:Parent>
            <Ref id="88" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="117" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).117">
          <common:Name xml:lang="en">81 years</common:Name>
          <common:Name xml:lang="fr">81 ans</common:Name>
          <structure:Parent>
            <Ref id="88" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="118" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).118">
          <common:Name xml:lang="en">82 years</common:Name>
          <common:Name xml:lang="fr">82 ans</common:Name>
          <structure:Parent>
            <Ref id="88" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="119" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).119">
          <common:Name xml:lang="en">83 years</common:Name>
          <common:Name xml:lang="fr">83 ans</common:Name>
          <structure:Parent>
            <Ref id="88" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="120" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).120">
          <common:Name xml:lang="en">84 years</common:Name>
          <common:Name xml:lang="fr">84 ans</common:Name>
          <structure:Parent>
            <Ref id="88" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="121" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).121">
          <common:Name xml:lang="en">85 years</common:Name>
          <common:Name xml:lang="fr">85 ans</common:Name>
          <structure:Parent>
            <Ref id="89" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="122" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).122">
          <common:Name xml:lang="en">86 years</common:Name>
          <common:Name xml:lang="fr">86 ans</common:Name>
          <structure:Parent>
            <Ref id="89" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="123" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).123">
          <common:Name xml:lang="en">87 years</common:Name>
          <common:Name xml:lang="fr">87 ans</common:Name>
          <structure:Parent>
            <Ref id="89" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="124" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).124">
          <common:Name xml:lang="en">88 years</common:Name>
          <common:Name xml:lang="fr">88 ans</common:Name>
          <structure:Parent>
            <Ref id="89" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="125" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).125">
          <common:Name xml:lang="en">89 years</common:Name>
          <common:Name xml:lang="fr">89 ans</common:Name>
          <structure:Parent>
            <Ref id="89" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="126" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).126">
          <common:Name xml:lang="en">90 to 94 years</common:Name>
          <common:Name xml:lang="fr">90 à 94 ans</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="127" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).127">
          <common:Name xml:lang="en">90 years</common:Name>
          <common:Name xml:lang="fr">90 ans</common:Name>
          <structure:Parent>
            <Ref id="126" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="128" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).128">
          <common:Name xml:lang="en">91 years</common:Name>
          <common:Name xml:lang="fr">91 ans</common:Name>
          <structure:Parent>


            <Ref id="126" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="129" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).129">
          <common:Name xml:lang="en">92 years</common:Name>
          <common:Name xml:lang="fr">92 ans</common:Name>
          <structure:Parent>
            <Ref id="126" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="130" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).130">
          <common:Name xml:lang="en">93 years</common:Name>
          <common:Name xml:lang="fr">93 ans</common:Name>
          <structure:Parent>
            <Ref id="126" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="131" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).131">
          <common:Name xml:lang="en">94 years</common:Name>
          <common:Name xml:lang="fr">94 ans</common:Name>
          <structure:Parent>
            <Ref id="126" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="132" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).132">
          <common:Name xml:lang="en">95 to 99 years</common:Name>
          <common:Name xml:lang="fr">95 à 99 ans</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="133" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).133">
          <common:Name xml:lang="en">95 years</common:Name>
          <common:Name xml:lang="fr">95 ans</common:Name>
          <structure:Parent>
            <Ref id="132" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="134" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).134">
          <common:Name xml:lang="en">96 years</common:Name>
          <common:Name xml:lang="fr">96 ans</common:Name>
          <structure:Parent>
            <Ref id="132" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="135" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).135">
          <common:Name xml:lang="en">97 years</common:Name>
          <common:Name xml:lang="fr">97 ans</common:Name>
          <structure:Parent>
            <Ref id="132" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="136" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).136">
          <common:Name xml:lang="en">98 years</common:Name>
          <common:Name xml:lang="fr">98 ans</common:Name>
          <structure:Parent>
            <Ref id="132" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="137" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).137">
          <common:Name xml:lang="en">99 years</common:Name>
          <common:Name xml:lang="fr">99 ans</common:Name>
          <structure:Parent>
            <Ref id="132" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="138" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Age_group(1.0).138">
          <common:Name xml:lang="en">100 years and over</common:Name>
          <common:Name xml:lang="fr">100 ans et plus</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
      </structure:Codelist>
      <structure:Codelist id="CL_17100005_DGUID" urn="urn:sdmx:org.sdmx.infomodel.codelist.Codelist=StatCan:CL_17100005_DGUID(1.0)" agencyID="StatCan" version="1.0" isFinal="false">
        <common:Name xml:lang="en">DGUID</common:Name>
        <structure:Code id="2016A000011124" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_DGUID(1.0).2016A000011124">
          <common:Name xml:lang="en">2016A000011124</common:Name>
        </structure:Code>
        <structure:Code id="2016A000210" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_DGUID(1.0).2016A000210">
          <common:Name xml:lang="en">2016A000210</common:Name>
        </structure:Code>
        <structure:Code id="2016A000211" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_DGUID(1.0).2016A000211">
          <common:Name xml:lang="en">2016A000211</common:Name>
        </structure:Code>
        <structure:Code id="2016A000212" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_DGUID(1.0).2016A000212">
          <common:Name xml:lang="en">2016A000212</common:Name>
        </structure:Code>
        <structure:Code id="2016A000213" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_DGUID(1.0).2016A000213">
          <common:Name xml:lang="en">2016A000213</common:Name>
        </structure:Code>
        <structure:Code id="2016A000224" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_DGUID(1.0).2016A000224">
          <common:Name xml:lang="en">2016A000224</common:Name>
        </structure:Code>
        <structure:Code id="2016A000235" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_DGUID(1.0).2016A000235">
          <common:Name xml:lang="en">2016A000235</common:Name>
        </structure:Code>
        <structure:Code id="2016A000246" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_DGUID(1.0).2016A000246">
          <common:Name xml:lang="en">2016A000246</common:Name>
        </structure:Code>
        <structure:Code id="2016A000247" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_DGUID(1.0).2016A000247">
          <common:Name xml:lang="en">2016A000247</common:Name>
        </structure:Code>
        <structure:Code id="2016A000248" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_DGUID(1.0).2016A000248">
          <common:Name xml:lang="en">2016A000248</common:Name>
        </structure:Code>
        <structure:Code id="2016A000259" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_DGUID(1.0).2016A000259">
          <common:Name xml:lang="en">2016A000259</common:Name>
        </structure:Code>
        <structure:Code id="2016A000260" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_DGUID(1.0).2016A000260">
          <common:Name xml:lang="en">2016A000260</common:Name>
        </structure:Code>
        <structure:Code id="2016A000261" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_DGUID(1.0).2016A000261">
          <common:Name xml:lang="en">2016A000261</common:Name>
        </structure:Code>
        <structure:Code id="2016A000262" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_DGUID(1.0).2016A000262">
          <common:Name xml:lang="en">2016A000262</common:Name>
        </structure:Code>
      </structure:Codelist>
      <structure:Codelist id="CL_17100005_Geography" urn="urn:sdmx:org.sdmx.infomodel.codelist.Codelist=StatCan:CL_17100005_Geography(1.0)" agencyID="StatCan" version="1.0" isFinal="false">
        <common:Name xml:lang="en">Geography</common:Name>
        <structure:Code id="1" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Geography(1.0).1">
          <common:Annotations>
            <common:Annotation>
              <common:AnnotationType>FootnoteId</common:AnnotationType>
            </common:Annotation>
            <common:Annotation>
              <common:AnnotationType>Footnote_4</common:AnnotationType>
            </common:Annotation>
          </common:Annotations>
          <common:Name xml:lang="en">Canada</common:Name>
          <common:Name xml:lang="fr">Canada</common:Name>
        </structure:Code>
        <structure:Code id="2" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Geography(1.0).2">
          <common:Annotations>
            <common:Annotation>
              <common:AnnotationType>FootnoteId</common:AnnotationType>
            </common:Annotation>
            <common:Annotation>
              <common:AnnotationType>Footnote_4</common:AnnotationType>
            </common:Annotation>
          </common:Annotations>
          <common:Name xml:lang="en">Newfoundland and Labrador</common:Name>
          <common:Name xml:lang="fr">Terre-Neuve-et-Labrador</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="3" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Geography(1.0).3">
          <common:Annotations>
            <common:Annotation>
              <common:AnnotationType>FootnoteId</common:AnnotationType>
            </common:Annotation>
            <common:Annotation>
              <common:AnnotationType>Footnote_4</common:AnnotationType>
            </common:Annotation>
          </common:Annotations>
          <common:Name xml:lang="en">Prince Edward Island</common:Name>
          <common:Name xml:lang="fr">Île-du-Prince-Édouard</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="4" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Geography(1.0).4">
          <common:Annotations>
            <common:Annotation>
              <common:AnnotationType>FootnoteId</common:AnnotationType>
            </common:Annotation>
            <common:Annotation>
              <common:AnnotationType>Footnote_4</common:AnnotationType>
            </common:Annotation>
          </common:Annotations>
          <common:Name xml:lang="en">Nova Scotia</common:Name>
          <common:Name xml:lang="fr">Nouvelle-Écosse</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="5" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Geography(1.0).5">
          <common:Annotations>
            <common:Annotation>
              <common:AnnotationType>FootnoteId</common:AnnotationType>
            </common:Annotation>
            <common:Annotation>
              <common:AnnotationType>Footnote_4</common:AnnotationType>
            </common:Annotation>
          </common:Annotations>
          <common:Name xml:lang="en">New Brunswick</common:Name>
          <common:Name xml:lang="fr">Nouveau-Brunswick</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="6" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Geography(1.0).6">
          <common:Annotations>
            <common:Annotation>
              <common:AnnotationType>FootnoteId</common:AnnotationType>
            </common:Annotation>
            <common:Annotation>
              <common:AnnotationType>Footnote_4</common:AnnotationType>
            </common:Annotation>
          </common:Annotations>
          <common:Name xml:lang="en">Quebec</common:Name>
          <common:Name xml:lang="fr">Québec</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="7" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Geography(1.0).7">
          <common:Annotations>
            <common:Annotation>
              <common:AnnotationType>FootnoteId</common:AnnotationType>
            </common:Annotation>
            <common:Annotation>
              <common:AnnotationType>Footnote_4</common:AnnotationType>
            </common:Annotation>
          </common:Annotations>
          <common:Name xml:lang="en">Ontario</common:Name>
          <common:Name xml:lang="fr">Ontario</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="8" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Geography(1.0).8">
          <common:Annotations>
            <common:Annotation>
              <common:AnnotationType>FootnoteId</common:AnnotationType>
            </common:Annotation>
            <common:Annotation>
              <common:AnnotationType>Footnote_4</common:AnnotationType>
            </common:Annotation>
          </common:Annotations>
          <common:Name xml:lang="en">Manitoba</common:Name>
          <common:Name xml:lang="fr">Manitoba</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="9" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Geography(1.0).9">
          <common:Annotations>
            <common:Annotation>
              <common:AnnotationType>FootnoteId</common:AnnotationType>
            </common:Annotation>
            <common:Annotation>
              <common:AnnotationType>Footnote_4</common:AnnotationType>
            </common:Annotation>
          </common:Annotations>
          <common:Name xml:lang="en">Saskatchewan</common:Name>
          <common:Name xml:lang="fr">Saskatchewan</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="10" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Geography(1.0).10">
          <common:Annotations>
            <common:Annotation>
              <common:AnnotationType>FootnoteId</common:AnnotationType>
            </common:Annotation>
            <common:Annotation>
              <common:AnnotationType>Footnote_4</common:AnnotationType>
            </common:Annotation>
          </common:Annotations>
          <common:Name xml:lang="en">Alberta</common:Name>
          <common:Name xml:lang="fr">Alberta</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="11" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Geography(1.0).11">
          <common:Annotations>
            <common:Annotation>
              <common:AnnotationType>FootnoteId</common:AnnotationType>
            </common:Annotation>
            <common:Annotation>
              <common:AnnotationType>Footnote_4</common:AnnotationType>
            </common:Annotation>
          </common:Annotations>
          <common:Name xml:lang="en">British Columbia</common:Name>
          <common:Name xml:lang="fr">Colombie-Britannique</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="12" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Geography(1.0).12">
          <common:Annotations>
            <common:Annotation>
              <common:AnnotationType>FootnoteId</common:AnnotationType>
            </common:Annotation>
            <common:Annotation>
              <common:AnnotationType>Footnote_4</common:AnnotationType>
            </common:Annotation>
          </common:Annotations>
          <common:Name xml:lang="en">Yukon</common:Name>
          <common:Name xml:lang="fr">Yukon</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="13" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Geography(1.0).13">
          <common:Annotations>
            <common:Annotation>
              <common:AnnotationTitle>Footnote_3</common:AnnotationTitle>
              <common:AnnotationType>FootnoteId</common:AnnotationType>
            </common:Annotation>
            <common:Annotation>
              <common:AnnotationType>Footnote_4</common:AnnotationType>
            </common:Annotation>
          </common:Annotations>
          <common:Name xml:lang="en">Northwest Territories including Nunavut</common:Name>
          <common:Name xml:lang="fr">Territoires du Nord-Ouest incluant Nunavut</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="14" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Geography(1.0).14">
          <common:Annotations>
            <common:Annotation>
              <common:AnnotationTitle>Footnote_4</common:AnnotationTitle>
              <common:AnnotationType>FootnoteId</common:AnnotationType>
            </common:Annotation>
            <common:Annotation>
              <common:AnnotationType>Footnote_4</common:AnnotationType>
            </common:Annotation>
          </common:Annotations>
          <common:Name xml:lang="en">Northwest Territories</common:Name>
          <common:Name xml:lang="fr">Territoires du Nord-Ouest</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="15" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Geography(1.0).15">
          <common:Annotations>
            <common:Annotation>
              <common:AnnotationTitle>Footnote_4</common:AnnotationTitle>
              <common:AnnotationType>FootnoteId</common:AnnotationType>
            </common:Annotation>
            <common:Annotation>
              <common:AnnotationType>Footnote_4</common:AnnotationType>
            </common:Annotation>
          </common:Annotations>
          <common:Name xml:lang="en">Nunavut</common:Name>
          <common:Name xml:lang="fr">Nunavut</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
      </structure:Codelist>
      <structure:Codelist id="CL_17100005_SCALAR_FACTOR" urn="urn:sdmx:org.sdmx.infomodel.codelist.Codelist=StatCan:CL_17100005_SCALAR_FACTOR(1.0)" agencyID="StatCan" version="1.0" isFinal="false">
        <common:Name xml:lang="en">Scalar Factor</common:Name>
        <structure:Code id="0" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_SCALAR_FACTOR(1.0).0">
          <common:Name xml:lang="en">units</common:Name>
          <common:Name xml:lang="fr">unités</common:Name>
        </structure:Code>
        <structure:Code id="1" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_SCALAR_FACTOR(1.0).1">
          <common:Name xml:lang="en">tens</common:Name>
          <common:Name xml:lang="fr">dizaines</common:Name>
        </structure:Code>
        <structure:Code id="2" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_SCALAR_FACTOR(1.0).2">
          <common:Name xml:lang="en">hundreds</common:Name>
          <common:Name xml:lang="fr">centaines</common:Name>
        </structure:Code>
        <structure:Code id="3" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_SCALAR_FACTOR(1.0).3">
          <common:Name xml:lang="en">thousands</common:Name>
          <common:Name xml:lang="fr">milliers</common:Name>
        </structure:Code>
        <structure:Code id="4" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_SCALAR_FACTOR(1.0).4">
          <common:Name xml:lang="en">tens of thousands</common:Name>
          <common:Name xml:lang="fr">dizaines de milliers</common:Name>
        </structure:Code>
        <structure:Code id="5" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_SCALAR_FACTOR(1.0).5">
          <common:Name xml:lang="en">hundreds of thousands</common:Name>
          <common:Name xml:lang="fr">centaines de milliers</common:Name>
        </structure:Code>
        <structure:Code id="6" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_SCALAR_FACTOR(1.0).6">
          <common:Name xml:lang="en">millions</common:Name>
          <common:Name xml:lang="fr">millions</common:Name>
        </structure:Code>
        <structure:Code id="7" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_SCALAR_FACTOR(1.0).7">
          <common:Name xml:lang="en">tens of millions</common:Name>
          <common:Name xml:lang="fr">dizaines de millions</common:Name>
        </structure:Code>
        <structure:Code id="8" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_SCALAR_FACTOR(1.0).8">
          <common:Name xml:lang="en">hundreds of millions</common:Name>
          <common:Name xml:lang="fr">centaines de millions</common:Name>
        </structure:Code>
        <structure:Code id="9" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_SCALAR_FACTOR(1.0).9">
          <common:Name xml:lang="en">billions</common:Name>
          <common:Name xml:lang="fr">milliards</common:Name>
        </structure:Code>
      </structure:Codelist>
      <structure:Codelist id="CL_17100005_SECURITY_LEVEL" urn="urn:sdmx:org.sdmx.infomodel.codelist.Codelist=StatCan:CL_17100005_SECURITY_LEVEL(1.0)" agencyID="StatCan" version="1.0" isFinal="false">
        <common:Name xml:lang="en">Security Level</common:Name>
        <structure:Code id="0" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_SECURITY_LEVEL(1.0).0">
          <common:Name xml:lang="en">0 = public</common:Name>
          <common:Name xml:lang="fr">0 = public</common:Name>
        </structure:Code>
        <structure:Code id="1" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_SECURITY_LEVEL(1.0).1">
          <common:Name xml:lang="en">x = suppressed to meet the confidentiality requirements of the Statistics Act</common:Name>
          <common:Name xml:lang="fr">x = confidentiel en vertu des dispositions de la Loi sur la statistique</common:Name>
        </structure:Code>
      </structure:Codelist>
      <structure:Codelist id="CL_17100005_STATUS_CAN" urn="urn:sdmx:org.sdmx.infomodel.codelist.Codelist=StatCan:CL_17100005_STATUS_CAN(1.0)" agencyID="StatCan" version="1.0" isFinal="false">
        <common:Name xml:lang="en">Status</common:Name>
        <structure:Code id="0" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_STATUS_CAN(1.0).0">
          <common:Name xml:lang="en">0 = normal</common:Name>
          <common:Name xml:lang="fr">0 = normal</common:Name>
        </structure:Code>
        <structure:Code id="1" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_STATUS_CAN(1.0).1">
          <common:Name xml:lang="en">.. = not available for a specific reference period</common:Name>
          <common:Name xml:lang="fr">.. = indisponible pour une période de référence précise</common:Name>
        </structure:Code>
        <structure:Code id="2" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_STATUS_CAN(1.0).2">
          <common:Name xml:lang="en">0s = value rounded to 0 (zero) where there is a meaningful distinction between true zero and the value that was rounded</common:Name>
          <common:Name xml:lang="fr">0s = valeur arrondie à 0 (zéro) là où il y a une distinction importante entre le zéro absolu et la valeur arrondie</common:Name>
        </structure:Code>
        <structure:Code id="3" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_STATUS_CAN(1.0).3">
          <common:Name xml:lang="en">A = data quality: excellent</common:Name>
          <common:Name xml:lang="fr">A = qualité des données: excellente</common:Name>
        </structure:Code>
        <structure:Code id="4" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_STATUS_CAN(1.0).4">
          <common:Name xml:lang="en">B = data quality: very good</common:Name>
          <common:Name xml:lang="fr">B = qualité des données: très bonne</common:Name>
        </structure:Code>
        <structure:Code id="5" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_STATUS_CAN(1.0).5">
          <common:Name xml:lang="en">C = data quality: good</common:Name>
          <common:Name xml:lang="fr">C = qualité des données: bonne</common:Name>
        </structure:Code>
        <structure:Code id="6" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_STATUS_CAN(1.0).6">
          <common:Name xml:lang="en">D = data quality: acceptable</common:Name>
          <common:Name xml:lang="fr">D = qualité des données: acceptable</common:Name>
        </structure:Code>
        <structure:Code id="7" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_STATUS_CAN(1.0).7">
          <common:Name xml:lang="en">E = use with caution</common:Name>
          <common:Name xml:lang="fr">E = à utiliser avec prudence</common:Name>
        </structure:Code>
        <structure:Code id="8" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_STATUS_CAN(1.0).8">
          <common:Name xml:lang="en">F = too unreliable to be published.</common:Name>
          <common:Name xml:lang="fr">F = trop peu fiable pour être publié</common:Name>
        </structure:Code>
        <structure:Code id="9" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_STATUS_CAN(1.0).9">
          <common:Name xml:lang="en">... = not applicable</common:Name>
          <common:Name xml:lang="fr">... = n'ayant pas lieu de figurer</common:Name>
        </structure:Code>
        <structure:Code id="10" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_STATUS_CAN(1.0).10">
          <common:Name xml:lang="en"><LOD = less than the limit of detection</common:Name>
          <common:Name xml:lang="fr"><LOD = inférieur à la limite de détection</common:Name>
        </structure:Code>
      </structure:Codelist>
      <structure:Codelist id="CL_17100005_SYMBOL" urn="urn:sdmx:org.sdmx.infomodel.codelist.Codelist=StatCan:CL_17100005_SYMBOL(1.0)" agencyID="StatCan" version="1.0" isFinal="false">
        <common:Name xml:lang="en">Symbol</common:Name>
        <structure:Code id="0" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_SYMBOL(1.0).0">
          <common:Name xml:lang="en">0 = none</common:Name>
          <common:Name xml:lang="fr">0 = aucun</common:Name>
        </structure:Code>
        <structure:Code id="1" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_SYMBOL(1.0).1">
          <common:Name xml:lang="en">p = preliminary</common:Name>
          <common:Name xml:lang="fr">p = provisoire</common:Name>
        </structure:Code>
        <structure:Code id="3" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_SYMBOL(1.0).3">
          <common:Name xml:lang="en">r = revised</common:Name>
          <common:Name xml:lang="fr">r = révisé</common:Name>
        </structure:Code>
      </structure:Codelist>
      <structure:Codelist id="CL_17100005_Sex" urn="urn:sdmx:org.sdmx.infomodel.codelist.Codelist=StatCan:CL_17100005_Sex(1.0)" agencyID="StatCan" version="1.0" isFinal="false">
        <common:Name xml:lang="en">Sex</common:Name>
        <structure:Code id="1" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Sex(1.0).1">
          <common:Name xml:lang="en">Both sexes</common:Name>
          <common:Name xml:lang="fr">Les deux sexes</common:Name>
        </structure:Code>
        <structure:Code id="2" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Sex(1.0).2">
          <common:Name xml:lang="en">Males</common:Name>
          <common:Name xml:lang="fr">Hommes</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
        <structure:Code id="3" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_Sex(1.0).3">
          <common:Name xml:lang="en">Females</common:Name>
          <common:Name xml:lang="fr">Femmes</common:Name>
          <structure:Parent>
            <Ref id="1" />
          </structure:Parent>
        </structure:Code>
      </structure:Codelist>
      <structure:Codelist id="CL_17100005_TERMINATED" urn="urn:sdmx:org.sdmx.infomodel.codelist.Codelist=StatCan:CL_17100005_TERMINATED(1.0)" agencyID="StatCan" version="1.0" isFinal="false">
        <common:Name xml:lang="en">Terminated</common:Name>
        <structure:Code id="0" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_TERMINATED(1.0).0">
          <common:Name xml:lang="en">0 = active</common:Name>
          <common:Name xml:lang="fr">0 = actif</common:Name>
        </structure:Code>
        <structure:Code id="1" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_TERMINATED(1.0).1">
          <common:Name xml:lang="en">t = terminated</common:Name>
          <common:Name xml:lang="fr">t = terminé</common:Name>
        </structure:Code>
      </structure:Codelist>
      <structure:Codelist id="CL_17100005_UOM" urn="urn:sdmx:org.sdmx.infomodel.codelist.Codelist=StatCan:CL_17100005_UOM(1.0)" agencyID="StatCan" version="1.0" isFinal="false">
        <common:Name xml:lang="en">Unit of measure</common:Name>
        <structure:Code id="249" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_UOM(1.0).249">
          <common:Name xml:lang="en">Persons</common:Name>
          <common:Name xml:lang="fr">Personnes</common:Name>
        </structure:Code>
        <structure:Code id="308" urn="urn:sdmx:org.sdmx.infomodel.codelist.Code=StatCan:CL_17100005_UOM(1.0).308">
          <common:Name xml:lang="en">Years</common:Name>
          <common:Name xml:lang="fr">Années</common:Name>
        </structure:Code>
      </structure:Codelist>
    </structure:Codelists>
    <structure:Concepts>
      <structure:ConceptScheme id="CONCEPTS_17100005" urn="urn:sdmx:org.sdmx.infomodel.conceptscheme.ConceptScheme=StatCan:CONCEPTS_17100005(1.0)" agencyID="StatCan" version="1.0" isFinal="false">
        <common:Name xml:lang="en">Concepts of Population estimates on July 1st, by age and sex</common:Name>
        <structure:Concept id="Geography" urn="urn:sdmx:org.sdmx.infomodel.conceptscheme.Concept=StatCan:CONCEPTS_17100005(1.0).Geography">
          <common:Name xml:lang="en">Geography</common:Name>
        </structure:Concept>
        <structure:Concept id="Sex" urn="urn:sdmx:org.sdmx.infomodel.conceptscheme.Concept=StatCan:CONCEPTS_17100005(1.0).Sex">
          <common:Name xml:lang="en">Sex</common:Name>
        </structure:Concept>
        <structure:Concept id="Age_group" urn="urn:sdmx:org.sdmx.infomodel.conceptscheme.Concept=StatCan:CONCEPTS_17100005(1.0).Age_group">
          <common:Name xml:lang="en">Age group</common:Name>
        </structure:Concept>
        <structure:Concept id="TIME_PERIOD" urn="urn:sdmx:org.sdmx.infomodel.conceptscheme.Concept=StatCan:CONCEPTS_17100005(1.0).TIME_PERIOD">
          <common:Name xml:lang="en">Time</common:Name>
        </structure:Concept>
        <structure:Concept id="OBS_VALUE" urn="urn:sdmx:org.sdmx.infomodel.conceptscheme.Concept=StatCan:CONCEPTS_17100005(1.0).OBS_VALUE">
          <common:Name xml:lang="en">Observation Value</common:Name>
        </structure:Concept>
        <structure:Concept id="UOM" urn="urn:sdmx:org.sdmx.infomodel.conceptscheme.Concept=StatCan:CONCEPTS_17100005(1.0).UOM">
          <common:Name xml:lang="en">Unit of measure</common:Name>
        </structure:Concept>
        <structure:Concept id="DGUID" urn="urn:sdmx:org.sdmx.infomodel.conceptscheme.Concept=StatCan:CONCEPTS_17100005(1.0).DGUID">
          <common:Name xml:lang="en">DGUID</common:Name>
        </structure:Concept>
        <structure:Concept id="SCALAR_FACTOR" urn="urn:sdmx:org.sdmx.infomodel.conceptscheme.Concept=StatCan:CONCEPTS_17100005(1.0).SCALAR_FACTOR">
          <common:Name xml:lang="en">Scalar Factor</common:Name>
        </structure:Concept>
        <structure:Concept id="VECTOR_ID" urn="urn:sdmx:org.sdmx.infomodel.conceptscheme.Concept=StatCan:CONCEPTS_17100005(1.0).VECTOR_ID">
          <common:Name xml:lang="en">Vector ID</common:Name>
        </structure:Concept>
        <structure:Concept id="NB_DECIMAL" urn="urn:sdmx:org.sdmx.infomodel.conceptscheme.Concept=StatCan:CONCEPTS_17100005(1.0).NB_DECIMAL">
          <common:Name xml:lang="en">Number of decimal</common:Name>
        </structure:Concept>
        <structure:Concept id="SYMBOL" urn="urn:sdmx:org.sdmx.infomodel.conceptscheme.Concept=StatCan:CONCEPTS_17100005(1.0).SYMBOL">
          <common:Name xml:lang="en">Symbol</common:Name>
        </structure:Concept>
        <structure:Concept id="STATUS_CAN" urn="urn:sdmx:org.sdmx.infomodel.conceptscheme.Concept=StatCan:CONCEPTS_17100005(1.0).STATUS_CAN">
          <common:Name xml:lang="en">Status</common:Name>
        </structure:Concept>
        <structure:Concept id="TERMINATED" urn="urn:sdmx:org.sdmx.infomodel.conceptscheme.Concept=StatCan:CONCEPTS_17100005(1.0).TERMINATED">
          <common:Name xml:lang="en">Terminated</common:Name>
        </structure:Concept>
        <structure:Concept id="SECURITY_LEVEL" urn="urn:sdmx:org.sdmx.infomodel.conceptscheme.Concept=StatCan:CONCEPTS_17100005(1.0).SECURITY_LEVEL">
          <common:Name xml:lang="en">Security Level</common:Name>
        </structure:Concept>
      </structure:ConceptScheme>
    </structure:Concepts>
    <structure:DataStructures>
      <structure:DataStructure id="Data_Structure_17100005" urn="urn:sdmx:org.sdmx.infomodel.datastructure.DataStructure=StatCan:Data_Structure_17100005(1.0)" agencyID="StatCan" version="1.0" isFinal="false">
        <common:Annotations>
          <common:Annotation>
            <common:AnnotationType>Footnote</common:AnnotationType>
            <common:AnnotationText xml:lang="en">Postcensal estimates are based on the 2016 Census counts adjusted for census net undercoverage (CNU) (including adjustment for incompletely enumerated Indian reserves (IEIR)) and the components of demographic growth that occurred since that census. Intercensal estimates are produced using counts from two consecutive censuses adjusted for CNU (including (IEIR) and postcensal estimates.</common:AnnotationText>
            <common:AnnotationText xml:lang="fr">Les estimations postcensitaires sont produites à partir des comptes du Recensement de 2016, rajustées pour le sous-dénombrement net du recensement (SDNR) (incluant le rajustement pour les réserves indiennes partiellement dénombrées (RIPD)) et des composantes de l'accroissement démographique survenu depuis ce recensement. Les estimations intercensitaires sont produites à l'aide des comptes de deux recensements consécutifs rajustés pour le SDNR (inlcuant les RIPD) et des estimations postcensitaires.</common:AnnotationText>
          </common:Annotation>
          <common:Annotation>
            <common:AnnotationType>Footnote</common:AnnotationType>
            <common:AnnotationText xml:lang="en">Estimates are final intercensal up to 2015, final postcensal for 2016, updated postcensal for 2017 and 2018 and preliminary postcensal for 2019.</common:AnnotationText>
            <common:AnnotationText xml:lang="fr">Les estimations sont intercensitaires définitives jusqu'en 2015, postcensitaires définitives pour 2016, postcensitaires mises à jour pour 2017 et 2018 et postcensitaires provisoires pour 2019.</common:AnnotationText>
          </common:Annotation>
          <common:Annotation>
            <common:AnnotationType>Footnote</common:AnnotationType>
            <common:AnnotationText xml:lang="en">Population estimates for Northwest Territories and Nunavut are presented separately from 1991.</common:AnnotationText>
            <common:AnnotationText xml:lang="fr">Les estimations de la population des Territoires du Nord-Ouest et du Nunavut sont présentées séparément à partir de 1991.</common:AnnotationText>
          </common:Annotation>
          <common:Annotation>
            <common:AnnotationType>Footnote</common:AnnotationType>
            <common:AnnotationText xml:lang="en">Prior to 1991, only estimates of population for Northwest Territories and Nunavut combined are available.</common:AnnotationText>
            <common:AnnotationText xml:lang="fr">Avant 1991, seules les estimations de la population des Territoires du Nord-Ouest et du Nunavut combinées sont disponibles.</common:AnnotationText>
          </common:Annotation>
          <common:Annotation>
            <common:AnnotationType>Footnote</common:AnnotationType>
            <common:AnnotationText xml:lang="en">Age at last birthday in years.</common:AnnotationText>
            <common:AnnotationText xml:lang="fr">Âge atteint au dernier anniversaire en années révolues.</common:AnnotationText>
          </common:Annotation>
          <common:Annotation>
            <common:AnnotationType>Footnote</common:AnnotationType>
            <common:AnnotationText xml:lang="en">Data for persons aged 90 to 100 years and over will be available from 2001.</common:AnnotationText>
            <common:AnnotationText xml:lang="fr">Les données des personnes âgées de 90 à 100 ans et plus sont disponibles à partir de 2001.</common:AnnotationText>
          </common:Annotation>
          <common:Annotation>
            <common:AnnotationType>Footnote</common:AnnotationType>
            <common:AnnotationText xml:lang="en">The population growth, which is used to calculate population estimates, is comprised of the natural growth (Tables 17100006 and 17100016), international migration (Table 17100014) and interprovincial migration (Table 17100015).</common:AnnotationText>
            <common:AnnotationText xml:lang="fr">L'accroissement démographique qui sert au calcul des estimations de la population, est composé de l'accroissement naturel (Tableaux 17100006 et 17100016), de la migration internationale (Tableau 17100014) et de la migration interprovinciale (Tableau 17100015).</common:AnnotationText>
          </common:Annotation>
          <common:Annotation>
            <common:AnnotationTitle>Cansim ID / Id Cansim</common:AnnotationTitle>
            <common:AnnotationType>CansimID</common:AnnotationType>
            <common:AnnotationText xml:lang="en">051-0001</common:AnnotationText>
            <common:AnnotationText xml:lang="fr">051-0001</common:AnnotationText>
          </common:Annotation>
          <common:Annotation>
            <common:AnnotationTitle>Frequency / Fréquence</common:AnnotationTitle>
            <common:AnnotationType>freq</common:AnnotationType>
            <common:AnnotationText xml:lang="en">Annual</common:AnnotationText>
            <common:AnnotationText xml:lang="fr">Annuelle</common:AnnotationText>
          </common:Annotation>
          <common:Annotation>
            <common:AnnotationTitle>Subject / Suject</common:AnnotationTitle>
            <common:AnnotationType>subject</common:AnnotationType>
            <common:AnnotationText xml:lang="en">Population and demography</common:AnnotationText>
            <common:AnnotationText xml:lang="fr">Population et démographie</common:AnnotationText>
          </common:Annotation>
          <common:Annotation>
            <common:AnnotationTitle>Variable List / Liste de variables</common:AnnotationTitle>
            <common:AnnotationType>variableList</common:AnnotationType>
            <common:AnnotationText xml:lang="en">CURRENT - a cube available to the public and that is current</common:AnnotationText>
            <common:AnnotationText xml:lang="fr">ACTIF - un cube qui est disponible au public et qui est toujours mise a jour</common:AnnotationText>
          </common:Annotation>
          <common:Annotation>
            <common:AnnotationTitle>URL</common:AnnotationTitle>
            <common:AnnotationType>URL</common:AnnotationType>
            <common:AnnotationText xml:lang="en">https://www150.statcan.gc.ca/t1/tbl1/en/tv.action?pid=1710000501</common:AnnotationText>
            <common:AnnotationText xml:lang="fr">https://www150.statcan.gc.ca/t1/tbl1/fr/tv.action?pid=1710000501</common:AnnotationText>
          </common:Annotation>
          <common:Annotation />
          <common:Annotation />
        </common:Annotations>
        <common:Name xml:lang="en">Data Structure of Population estimates on July 1st, by age and sex</common:Name>
        <structure:DataStructureComponents>
          <structure:DimensionList id="DimensionDescriptor" urn="urn:sdmx:org.sdmx.infomodel.datastructure.DimensionDescriptor=StatCan:Data_Structure_17100005(1.0).DimensionDescriptor">
            <structure:Dimension id="Geography" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dimension=StatCan:Data_Structure_17100005(1.0).Geography" position="1">
              <structure:ConceptIdentity>
                <Ref id="Geography" maintainableParentID="CONCEPTS_17100005" maintainableParentVersion="1.0" agencyID="StatCan" package="conceptscheme" class="Concept" />
              </structure:ConceptIdentity>
              <structure:LocalRepresentation>
                <structure:Enumeration>
                  <Ref id="CL_17100005_Geography" version="1.0" agencyID="StatCan" package="codelist" class="Codelist" />
                </structure:Enumeration>
              </structure:LocalRepresentation>
            </structure:Dimension>
            <structure:Dimension id="Sex" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dimension=StatCan:Data_Structure_17100005(1.0).Sex" position="2">
              <structure:ConceptIdentity>
                <Ref id="Sex" maintainableParentID="CONCEPTS_17100005" maintainableParentVersion="1.0" agencyID="StatCan" package="conceptscheme" class="Concept" />
              </structure:ConceptIdentity>
              <structure:LocalRepresentation>
                <structure:Enumeration>
                  <Ref id="CL_17100005_Sex" version="1.0" agencyID="StatCan" package="codelist" class="Codelist" />
                </structure:Enumeration>
              </structure:LocalRepresentation>
            </structure:Dimension>
            <structure:Dimension id="Age_group" urn="urn:sdmx:org.sdmx.infomodel.datastructure.Dimension=StatCan:Data_Structure_17100005(1.0).Age_group" position="3">
              <structure:ConceptIdentity>
                <Ref id="Age_group" maintainableParentID="CONCEPTS_17100005" maintainableParentVersion="1.0" agencyID="StatCan" package="conceptscheme" class="Concept" />
              </structure:ConceptIdentity>
              <structure:LocalRepresentation>
                <structure:Enumeration>
                  <Ref id="CL_17100005_Age_group" version="1.0" agencyID="StatCan" package="codelist" class="Codelist" />
                </structure:Enumeration>
              </structure:LocalRepresentation>
            </structure:Dimension>
            <structure:TimeDimension id="TIME_PERIOD" urn="urn:sdmx:org.sdmx.infomodel.datastructure.TimeDimension=StatCan:Data_Structure_17100005(1.0).TIME_PERIOD" position="4">
              <structure:ConceptIdentity>
                <Ref id="TIME_PERIOD" maintainableParentID="CONCEPTS_17100005" maintainableParentVersion="1.0" agencyID="StatCan" package="conceptscheme" class="Concept" />

              </structure:ConceptIdentity>
              <structure:LocalRepresentation>
                <structure:TextFormat textType="ObservationalTimePeriod" />
              </structure:LocalRepresentation>
            </structure:TimeDimension>
          </structure:DimensionList>
          <structure:AttributeList id="AttributeDescriptor" urn="urn:sdmx:org.sdmx.infomodel.datastructure.AttributeDescriptor=StatCan:Data_Structure_17100005(1.0).AttributeDescriptor">
            <structure:Attribute id="UOM" urn="urn:sdmx:org.sdmx.infomodel.datastructure.DataAttribute=StatCan:Data_Structure_17100005(1.0).UOM" assignmentStatus="Mandatory">
              <structure:ConceptIdentity>
                <Ref id="UOM" maintainableParentID="CONCEPTS_17100005" maintainableParentVersion="1.0" agencyID="StatCan" package="conceptscheme" class="Concept" />
              </structure:ConceptIdentity>
              <structure:LocalRepresentation>
                <structure:Enumeration>
                  <Ref id="CL_17100005_UOM" version="1.0" agencyID="StatCan" package="codelist" class="Codelist" />
                </structure:Enumeration>
              </structure:LocalRepresentation>
              <structure:AttributeRelationship>
                <structure:Dimension>
                  <Ref id="Geography" />
                </structure:Dimension>
                <structure:Dimension>
                  <Ref id="Sex" />
                </structure:Dimension>
                <structure:Dimension>
                  <Ref id="Age_group" />
                </structure:Dimension>
              </structure:AttributeRelationship>
            </structure:Attribute>
            <structure:Attribute id="DGUID" urn="urn:sdmx:org.sdmx.infomodel.datastructure.DataAttribute=StatCan:Data_Structure_17100005(1.0).DGUID" assignmentStatus="Conditional">
              <structure:ConceptIdentity>
                <Ref id="DGUID" maintainableParentID="CONCEPTS_17100005" maintainableParentVersion="1.0" agencyID="StatCan" package="conceptscheme" class="Concept" />
              </structure:ConceptIdentity>
              <structure:LocalRepresentation>
                <structure:Enumeration>
                  <Ref id="CL_17100005_DGUID" version="1.0" agencyID="StatCan" package="codelist" class="Codelist" />
                </structure:Enumeration>
              </structure:LocalRepresentation>
              <structure:AttributeRelationship>
                <structure:Dimension>
                  <Ref id="Geography" />
                </structure:Dimension>
                <structure:Dimension>
                  <Ref id="Sex" />
                </structure:Dimension>
                <structure:Dimension>
                  <Ref id="Age_group" />
                </structure:Dimension>
              </structure:AttributeRelationship>
            </structure:Attribute>
            <structure:Attribute id="SCALAR_FACTOR" urn="urn:sdmx:org.sdmx.infomodel.datastructure.DataAttribute=StatCan:Data_Structure_17100005(1.0).SCALAR_FACTOR" assignmentStatus="Mandatory">
              <structure:ConceptIdentity>
                <Ref id="SCALAR_FACTOR" maintainableParentID="CONCEPTS_17100005" maintainableParentVersion="1.0" agencyID="StatCan" package="conceptscheme" class="Concept" />
              </structure:ConceptIdentity>
              <structure:LocalRepresentation>
                <structure:Enumeration>
                  <Ref id="CL_17100005_SCALAR_FACTOR" version="1.0" agencyID="StatCan" package="codelist" class="Codelist" />
                </structure:Enumeration>
              </structure:LocalRepresentation>
              <structure:AttributeRelationship>
                <structure:Dimension>
                  <Ref id="Geography" />
                </structure:Dimension>
                <structure:Dimension>
                  <Ref id="Sex" />
                </structure:Dimension>
                <structure:Dimension>
                  <Ref id="Age_group" />
                </structure:Dimension>
              </structure:AttributeRelationship>
            </structure:Attribute>
            <structure:Attribute id="VECTOR_ID" urn="urn:sdmx:org.sdmx.infomodel.datastructure.DataAttribute=StatCan:Data_Structure_17100005(1.0).VECTOR_ID" assignmentStatus="Mandatory">
              <structure:ConceptIdentity>
                <Ref id="VECTOR_ID" maintainableParentID="CONCEPTS_17100005" maintainableParentVersion="1.0" agencyID="StatCan" package="conceptscheme" class="Concept" />
              </structure:ConceptIdentity>
              <structure:AttributeRelationship>
                <structure:Dimension>
                  <Ref id="Geography" />
                </structure:Dimension>
                <structure:Dimension>
                  <Ref id="Sex" />
                </structure:Dimension>
                <structure:Dimension>
                  <Ref id="Age_group" />
                </structure:Dimension>
              </structure:AttributeRelationship>
            </structure:Attribute>
            <structure:Attribute id="NB_DECIMAL" urn="urn:sdmx:org.sdmx.infomodel.datastructure.DataAttribute=StatCan:Data_Structure_17100005(1.0).NB_DECIMAL" assignmentStatus="Mandatory">
              <structure:ConceptIdentity>
                <Ref id="NB_DECIMAL" maintainableParentID="CONCEPTS_17100005" maintainableParentVersion="1.0" agencyID="StatCan" package="conceptscheme" class="Concept" />
              </structure:ConceptIdentity>
              <structure:AttributeRelationship>
                <structure:Dimension>
                  <Ref id="Geography" />
                </structure:Dimension>
                <structure:Dimension>
                  <Ref id="Sex" />
                </structure:Dimension>
                <structure:Dimension>
                  <Ref id="Age_group" />
                </structure:Dimension>
              </structure:AttributeRelationship>
            </structure:Attribute>
            <structure:Attribute id="SYMBOL" urn="urn:sdmx:org.sdmx.infomodel.datastructure.DataAttribute=StatCan:Data_Structure_17100005(1.0).SYMBOL" assignmentStatus="Conditional">
              <structure:ConceptIdentity>
                <Ref id="SYMBOL" maintainableParentID="CONCEPTS_17100005" maintainableParentVersion="1.0" agencyID="StatCan" package="conceptscheme" class="Concept" />
              </structure:ConceptIdentity>
              <structure:LocalRepresentation>
                <structure:Enumeration>
                  <Ref id="CL_17100005_SYMBOL" version="1.0" agencyID="StatCan" package="codelist" class="Codelist" />
                </structure:Enumeration>
              </structure:LocalRepresentation>
              <structure:AttributeRelationship>
                <structure:PrimaryMeasure>
                  <Ref id="OBS_VALUE" />
                </structure:PrimaryMeasure>
              </structure:AttributeRelationship>
            </structure:Attribute>
            <structure:Attribute id="STATUS_CAN" urn="urn:sdmx:org.sdmx.infomodel.datastructure.DataAttribute=StatCan:Data_Structure_17100005(1.0).STATUS_CAN" assignmentStatus="Conditional">
              <structure:ConceptIdentity>
                <Ref id="STATUS_CAN" maintainableParentID="CONCEPTS_17100005" maintainableParentVersion="1.0" agencyID="StatCan" package="conceptscheme" class="Concept" />

              </structure:ConceptIdentity>
              <structure:LocalRepresentation>
                <structure:Enumeration>
                  <Ref id="CL_17100005_STATUS_CAN" version="1.0" agencyID="StatCan" package="codelist" class="Codelist" />
                </structure:Enumeration>
              </structure:LocalRepresentation>
              <structure:AttributeRelationship>
                <structure:PrimaryMeasure>
                  <Ref id="OBS_VALUE" />
                </structure:PrimaryMeasure>
              </structure:AttributeRelationship>
            </structure:Attribute>
            <structure:Attribute id="TERMINATED" urn="urn:sdmx:org.sdmx.infomodel.datastructure.DataAttribute=StatCan:Data_Structure_17100005(1.0).TERMINATED" assignmentStatus="Conditional">
              <structure:ConceptIdentity>
                <Ref id="TERMINATED" maintainableParentID="CONCEPTS_17100005" maintainableParentVersion="1.0" agencyID="StatCan" package="conceptscheme" class="Concept" />
              </structure:ConceptIdentity>
              <structure:LocalRepresentation>
                <structure:Enumeration>
                  <Ref id="CL_17100005_TERMINATED" version="1.0" agencyID="StatCan" package="codelist" class="Codelist" />
                </structure:Enumeration>
              </structure:LocalRepresentation>
              <structure:AttributeRelationship>
                <structure:Dimension>
                  <Ref id="Geography" />
                </structure:Dimension>
                <structure:Dimension>
                  <Ref id="Sex" />
                </structure:Dimension>
                <structure:Dimension>
                  <Ref id="Age_group" />
                </structure:Dimension>
              </structure:AttributeRelationship>
            </structure:Attribute>
            <structure:Attribute id="SECURITY_LEVEL" urn="urn:sdmx:org.sdmx.infomodel.datastructure.DataAttribute=StatCan:Data_Structure_17100005(1.0).SECURITY_LEVEL" assignmentStatus="Conditional">
              <structure:ConceptIdentity>
                <Ref id="SECURITY_LEVEL" maintainableParentID="CONCEPTS_17100005" maintainableParentVersion="1.0" agencyID="StatCan" package="conceptscheme" class="Concept" />
              </structure:ConceptIdentity>
              <structure:LocalRepresentation>
                <structure:Enumeration>
                  <Ref id="CL_17100005_SECURITY_LEVEL" version="1.0" agencyID="StatCan" package="codelist" class="Codelist" />
                </structure:Enumeration>
              </structure:LocalRepresentation>
              <structure:AttributeRelationship>
                <structure:PrimaryMeasure>
                  <Ref id="OBS_VALUE" />
                </structure:PrimaryMeasure>
              </structure:AttributeRelationship>
            </structure:Attribute>
          </structure:AttributeList>
          <structure:MeasureList id="MeasureDescriptor" urn="urn:sdmx:org.sdmx.infomodel.datastructure.MeasureDescriptor=StatCan:Data_Structure_17100005(1.0).MeasureDescriptor">
            <structure:PrimaryMeasure id="OBS_VALUE" urn="urn:sdmx:org.sdmx.infomodel.datastructure.PrimaryMeasure=StatCan:Data_Structure_17100005(1.0).OBS_VALUE">
              <structure:ConceptIdentity>
                <Ref id="OBS_VALUE" maintainableParentID="CONCEPTS_17100005" maintainableParentVersion="1.0" agencyID="StatCan" package="conceptscheme" class="Concept" />
              </structure:ConceptIdentity>
            </structure:PrimaryMeasure>
          </structure:MeasureList>
        </structure:DataStructureComponents>
      </structure:DataStructure>
    </structure:DataStructures>
  </message:Structures>
</message:Structure>

Content negotiation

Using the HTTP content negotiation mechanism, you can select the representation to be returned and you can also instruct the service to compress the data to be returned.

Format selection

The following data formats are supported by the web service:

  • Data formats:
    • SDMX-ML 2.1 Generic Data format:
      application/vnd.sdmx.genericdata+xml;version=2.1. This is the default for data queries.
    • SDMX-ML 2.1 Structure Specific Data format:
      application/vnd.sdmx.structurespecificdata+xml;version=2.1
    • SDMX-JSON: application/vnd.sdmx.data+json;version=1.0.0-wd
    • CSV: text/csv
  • Metadata formats:
    • SDMX-ML Structure format: application/vnd.sdmx.structure+xml;version=2.1

For additional information about the various SDMX-ML formats, please refer to the SDMX documentation.

Generic mime types (application/json, application/xml) are also supported but they will always point to the most recent version of the SDMX formats supported by these web services. That version will change in the future, whenever new versions of the various SDMX formats are made available.

Is it therefore highly recommended that implementers use one of the specific mime types above rather than a generic one, to avoid issues when new versions of the formats are released.

Output compression

You can also enable data compression using the Accept-Encoding HTTP header field. Compressed messages are typically significantly smaller than uncompressed messages, which can lead to improvements when transferring large amount data over the network.

Status codes

The web service returns the following HTTP status codes.

HTTP status codes
Code Status Description
200 OK Your query could be successfully processed and the data have been returned.
304 No changes No changes since the timestamp supplied in the If-Modified-Since header.
400 Syntax error If there is a syntactic or semantic issue with the parameters you supplied, a 400 HTTP status code will be returned.
404 No results found A 404 HTTP status code will be returned if there are no results matching the query.
406 Not Acceptable If you ask for a resource representation that we don't support, a 406 HTTP status code will be returned. See the section about European Central Bank content negotiation, to view the supported representations.
500 Internal Server Error When there is an issue on our side, a 500 HTTP status code will be returned. Feel free to try again later or to contact our support hotline.
501 Not implemented This web service offers a subset of the functionality offered by the SDMX RESTful web service specification. When you use a feature that we have not yet implemented, a 501 HTTP status code will be returned.
503 Service unavailable If our web service is temporarily unavailable, a 503 HTTP status code will be returned.

Useful tips

The SDMX Technical Working Group publishes a list of tips and tricks for web service clients, which is well worth reading.

The SDMX Technical Working Group has also published a cheat sheet (PDF, 83 KB) which summarises, in 2 A4 pages, the main points of the SDMX 2.1 RESTful API.

If the documentation does not contain the information you require, or if you have any general comments or feedback regarding our web service, please contact us.

All sample queries in this tutorial can also be executed using command-line tools such as curl or wget:

wget -O data.xml \
--header="Accept:application/vnd.sdmx.structurespecificdata+xml;version=2.1" \
https://sdw-wsrest.ecb.europa.eu/service/data/EXR/M.NOK.EUR.SP00.A
curl -k -o data.xml \
--header "Accept:application/vnd.sdmx.structurespecificdata+xml;version=2.1" \
https://sdw-wsrest.ecb.europa.eu/service/data/EXR/M.NOK.EUR.SP00.A

Appendix 1

Table 17100005 - Population estimates on July 1st, by age and sex

Thumbnail - Table 17100005 - Population estimates on July 1st, by age and sex
1st Dimension - Geography
Codes for 1st Dimension - Geography
Code Name_en
1 Canada
2 Newfoundland and Labrador
3 Prince Edward Island
4 Nova Scotia
5 New Brunswick
6 Quebec
7 Ontario
8 Manitoba
9 Saskatchewan
10 Alberta
11 British Columbia
12 Yukon
13 Northwest Territories including Nunavut
14 Northwest Territories
15 Nunavut
2nd Dimension – Sex
Codes for 2nd Dimension – Sex
Code Name_en
1 Both sexes
2 Males
3 Females
3rd Dimension – Age group
Codes for 3rd Dimension – Age group
Code Name_en
1 All ages
2 0 years
3 1 year
4 2 years
5 3 years
6 4 years
7 0 to 4 years
8 5 years
9 6 years
10 7 years
11 8 years
12 9 years
13 5 to 9 years
14 10 years
15 11 years
16 12 years
17 13 years
18 14 years
19 10 to 14 years
20 15 years
21 16 years
22 17 years
23 18 years
24 19 years
25 15 to 19 years
26 20 years
27 21 years
28 22 years
29 23 years
30 24 years
31 20 to 24 years
32 25 years
33 26 years
34 27 years
35 28 years
36 29 years
37 25 to 29 years
38 30 years
39 31 years
40 32 years
41 33 years
42 34 years
43 30 to 34 years
44 35 years
45 36 years
46 37 years
47 38 years
48 39 years
49 35 to 39 years
50 40 years
51 41 years
52 42 years
53 43 years
54 44 years
55 40 to 44 years
56 45 years
57 46 years
58 47 years
59 48 years
60 49 years
61 45 to 49 years
62 50 years
63 51 years
64 52 years
65 53 years
66 54 years
67 50 to 54 years
68 55 years
69 56 years
70 57 years
71 58 years
72 59 years
73 55 to 59 years
74 60 years
75 61 years
76 62 years
77 63 years
78 64 years
79 60 to 64 years
80 65 years
81 66 years
82 67 years
83 68 years
84 69 years
85 65 to 69 years
86 70 to 74 years
87 75 to 79 years
88 80 to 84 years
89 85 to 89 years
90 90 years and over
91 0 to 14 years
92 0 to 15 years
93 0 to 16 years
94 0 to 17 years
95 15 to 49 years
96 15 to 64 years
97 16 to 64 years
98 17 to 64 years
99 18 to 24 years
100 18 to 64 years
101 18 years and over
102 25 to 44 years
103 45 to 64 years
104 65 years and over
105 Median age
106 70 years
107 71 years
108 72 years
109 73 years
110 74 years
111 75 years
112 76 years
113 77 years
114 78 years
115 79 years
116 80 years
117 81 years
118 82 years
119 83 years
120 84 years
121 85 years
122 86 years
123 87 years
124 88 years
125 89 years
126 90 to 94 years
127 90 years
128 91 years
129 92 years
130 93 years
131 94 years
132 95 to 99 years
133 95 years
134 96 years
135 97 years
136 98 years
137 99 years
138 100 years and over

Appendix 2: CURL Examples

SDMX structure sample URL:

curl -X GET -k -i 'https://www150.statcan.gc.ca/t1/wds/sdmx/statcan/rest/structure/Data_Structure_13100101'

curl -X GET -k -i 'https://www150.statcan.gc.ca/t1/wds/sdmx/statcan/rest/structure/Data_Structure_13100101'

pid=13100101

curl -X GET -k -H 'Accept: application/vnd.sdmx.structure+xml;version=2.1' -i 'https://www150.statcan.gc.ca/t1/wds/sdmx/statcan/rest/structure/Data_Structure_13100101'

curl -X GET -k -H 'Accept: application/vnd.sdmx.structure+xml;version=2.1' -i 'https://www150.statcan.gc.ca/t1/wds/sdmx/statcan/rest/structure/Data_Structure_13100101'

pid=13100101

Header:

Accept: application/vnd.sdmx.structure+xml;version=2.1

curl -X GET -k -H 'Accept: application/xml' -i 'https://www150.statcan.gc.ca/t1/wds/sdmx/statcan/rest/structure/Data_Structure_13100101'

curl -X GET -k -H 'Accept: application/xml' -i 'https://www150.statcan.gc.ca/t1/wds/sdmx/statcan/rest/structure/Data_Structure_13100101'

pid=13100101

Header:

Accept: application/xml

SDMX data sample URL:

curl -X GET -k -H 'Accept: application/vnd.sdmx.structurespecificdata+xml;version=2.1' -i 'https://www150.statcan.gc.ca/t1/wds/sdmx/statcan/rest/data/DF_13100101/1.1.1+2+3+4?startPeriod=2014&endPeriod=2015'

curl -X GET -k -H 'Accept: application/vnd.sdmx.structurespecificdata+xml;version=2.1' -i 'https://www150.statcan.gc.ca/t1/wds/sdmx/statcan/rest/data/DF_13100101/1.1.1+2+3+4?startPeriod=2014&endPeriod=2015'

pid = 13100101

Header:

Accept: application/vnd.sdmx.structurespecificdata+xml;version=2.1
dimensions are separated by "." and members are separated by "+". The date format should be "yyyy-mm-dd". if value of "day" is missing, the default value is "01"

curl -X GET -k -H 'Accept: application/vnd.sdmx.data+json;version=1.0.0-wd' -i 'https://www150.statcan.gc.ca/t1/wds/sdmx/statcan/rest/data/DF_18100002/1.1+2?startPeriod=2018-01&endPeriod=2018-05'

curl -X GET -k -H 'Accept: application/vnd.sdmx.data+json;version=1.0.0-wd' -i 'https://www150.statcan.gc.ca/t1/wds/sdmx/statcan/rest/data/DF_18100002/1.1+2?startPeriod=2018-01&endPeriod=2018-05'

pid = 18100102

Header:

Accept: application/vnd.sdmx.data+json;version=1.0.0-wd

curl -X GET -k -H 'Accept: application/vnd.sdmx.genericdata+xml;version=2.1' -i 'https://www150.statcan.gc.ca/t1/wds/sdmx/statcan/rest/data/DF_13100101/1.1.1+2+3+4?startPeriod=2014&endPeriod=2015'

curl -X GET -k -H 'Accept: application/vnd.sdmx.genericdata+xml;version=2.1' -i 'https://www150.statcan.gc.ca/t1/wds/sdmx/statcan/rest/data/DF_13100101/1.1.1+2+3+4?startPeriod=2014&endPeriod=2015'

pid = 13100101

Header:

Accept: application/vnd.sdmx.genericdata+xml;version=2.1

curl -X GET -k -H 'Accept: application/xml' -i 'https://www150.statcan.gc.ca/t1/wds/sdmx/statcan/rest/data/DF_13100101/1.1.1+2+3+4?startPeriod=2014&endPeriod=2015'

curl -X GET -k -H 'Accept: application/xml' -i 'https://www150.statcan.gc.ca/t1/wds/sdmx/statcan/rest/data/DF_13100101/1.1.1+2+3+4?startPeriod=2014&endPeriod=2015'

pid = 13100101

Header:

Accept: application/xml

curl -X GET -k -H 'Accept: application/json' -i 'https://www150.statcan.gc.ca/t1/wds/sdmx/statcan/rest/data/DF_13100101/1.1.1+2+3+4?startPeriod=2014&endPeriod=2015'

curl -X GET -k -H 'Accept: application/json' -i 'https://www150.statcan.gc.ca/t1/wds/sdmx/statcan/rest/data/DF_13100101/1.1.1+2+3+4?startPeriod=2014&endPeriod=2015'

pid = 13100101

Header:

Accept: application/xml

curl -X GET -k -H 'Accept: application/json' -i 'https://www150.statcan.gc.ca/t1/wds/sdmx/statcan/rest/data/DF_13100101/1.1.1+2+3+4?firstNObservations=1'

curl -X GET -k -H 'Accept: application/json' -i 'https://www150.statcan.gc.ca/t1/wds/sdmx/statcan/rest/data/DF_13100101/1.1.1+2+3+4?firstNObservations=1'

curl -X GET -k -H 'Accept: application/xml' -i 'https://www150.statcan.gc.ca/t1/wds/sdmx/statcan/rest/data/DF_13100101/1.1.1+2+3+4?lastNObservations=1'

curl -X GET -k -H 'Accept: application/xml' -i 'https://www150.statcan.gc.ca/t1/wds/sdmx/statcan/rest/data/DF_13100101/1.1.1+2+3+4?lastNObservations=1'

Vector examples

curl -X GET -k -H 'Accept: application/xml' -i 'https://www150.statcan.gc.ca/t1/wds/sdmx/statcan/rest/vector/v114809245?lastNObservations=1'

curl -X GET -k -H 'Accept: application/xml' -i 'https://www150.statcan.gc.ca/t1/wds/sdmx/statcan/rest/vector/v114809245?lastNObservations=1'

curl -X GET -k -H 'Accept: application/json' -i 'https://www150.statcan.gc.ca/t1/wds/sdmx/statcan/rest/vector/v114809245?firstNObservations=1'

curl -X GET -k -H 'Accept: application/json' -i 'https://www150.statcan.gc.ca/t1/wds/sdmx/statcan/rest/vector/v114809245?firstNObservations=1'

North American Industry Classification System (NAICS) Canada 2022 Version 1.0

Release date: January 27, 2022

Permanent consultation process for NAICS Canada 2027 and beyond
Invitation to participate in the revision of the North American Industry Classification System (NAICS) Canada August 25, 2023

Status

This standard was approved as a departmental standard on July 30, 2021.

NAICS Canada 2022 Version 1.0

NAICS Canada 2022 Version 1.0 is the biggest revision to NAICS since 2002. The overarching theme to the updates is the digital economy. The guiding principle of these changes is to classify economic activities based on digital platforms, and those offered on other forms over the Internet, in the same groupings as their non-digital equivalents.

The Generic Statistical Information Model (GSIM) has been used for this revision to identify the types of changes made to the classification: real changes and virtual changes. Real changes are those affecting the scope of the existing classification items or categories, whether or not accompanied by changes in the title, definition and/or the coding. Virtual changes are those made in coding, titles and/or definitions, while the meaning or scope of the classification item remains the same.

HTML format

PDF Format

CSV Format

Correspondence tables

Variants of NAICS Canada

The Importance of Data Quality (19220009)

Join us as Statistics Canada’s Quality Secretariat will give a presentation on the importance of data quality. We are living in an exciting time for data: sources are more abundant, they are being generated in innovative ways, and they are available quicker than ever. However, a data source is not only worthless if it does not meet basic quality standards – it can be misleading, and worse than having no data at all!

Statistics Canada's Quality Secretariat has a mandate to promote good quality practices within the agency, across the Government of Canada, and internationally. For quality to truly be present, it must be incorporated into each process (from design to analysis) and into the product itself – whether that product is a microdata file or estimates derived from it.

We will address why data quality is important and how one can evaluate it in practice. We will cover some basic concepts in data quality (quality assurance vs. control, metadata, etc.), and present data quality as a multidimensional concept. Finally, we will show data quality in action by evaluating a data source together. All data quality literacy levels are welcome. After all, everybody plays a part in quality!

English webinar

French webinar

Why do we conduct this survey?

This survey is conducted by Statistics Canada in order to collect the necessary information to support the Integrated Business Statistics Program (IBSP). This program combines various survey and administrative data to develop comprehensive measures of the Canadian economy.

The statistical information from the IBSP serves many purposes, including:

  • calculating each province and territory's fair share of federal-provincial transfer payments for health, education and social programs
  • establishing government programs to assist businesses
  • assisting the business community in negotiating contracts and collective agreements
  • supporting the government in making informed decisions about fiscal, monetary and foreign exchange policies
  • indexing social benefit programs and determining tax brackets
  • enabling academics and economists to analyze the economic performance of Canadian industries and to better understand rapidly evolving business environments.

Your information may also be used by Statistics Canada for other statistical and research purposes.

Your participation in this survey is required under the authority of the Statistics Act.

Other important information

Authorization to collect this information

Data are collected under the authority of the Statistics Act, Revised Statutes of Canada, 1985, Chapter S-19.

Confidentiality

By law, Statistics Canada is prohibited from releasing any information it collects that could identify any person, business, or organization, unless consent has been given by the respondent, or as permitted by the Statistics Act. Statistics Canada will use the information from this survey for statistical purposes only.

Record linkages

To enhance the data from this survey and to reduce the reporting burden, Statistics Canada may combine the acquired data with information from other surveys or from administrative sources.

Data-sharing agreements

To reduce respondent burden, Statistics Canada has entered into data-sharing agreements with provincial and territorial statistical agencies and other government organizations, which have agreed to keep the data confidential and use them only for statistical purposes. Statistics Canada will only share data from this survey with those organizations that have demonstrated a requirement to use the data.

Section 11 of the Statistics Act provides for the sharing of information with provincial and territorial statistical agencies that meet certain conditions. These agencies must have the legislative authority to collect the same information, on a mandatory basis, and the legislation must provide substantially the same provisions for confidentiality and penalties for disclosure of confidential information as the Statistics Act. Because these agencies have the legal authority to compel businesses to provide the same information, consent is not requested and businesses may not object to the sharing of the data.

For this survey, there are Section 11 agreements with the provincial and territorial statistical agencies of Newfoundland and Labrador, Nova Scotia, New Brunswick, Québec, Ontario, Manitoba, Saskatchewan, Alberta, British Columbia and the Yukon. The shared data will be limited to information pertaining to business establishments located within the jurisdiction of the respective province or territory.

Section 12 of the Statistics Act provides for the sharing of information with federal, provincial or territorial government organizations. Under Section 12, you may refuse to share your information with any of these organizations by writing a letter of objection to the Chief Statistician, specifying the organizations with which you do not want Statistics Canada to share your data and mailing it to the following address:

Chief Statistician of Canada
Statistics Canada
Attention of Director, Enterprise Statistics Division
150 Tunney's Pasture Driveway
Ottawa, Ontario
K1A 0T6

You may also contact us by email at statcan.esd-helpdesk-dse-bureaudedepannage.statcan@canada.ca or by fax at 613-951-6583.

For this survey, there are Section 12 agreements with the statistical agencies of Prince Edward Island, the Northwest Territories and Nunavut.

For agreements with provincial and territorial government organizations, the shared data will be limited to information pertaining to business establishments located within the jurisdiction of the respective province or territory.

Business or organization and contact information

1. Verify or provide the business or organization's legal and operating name and correct where needed.

Note: Legal name modifications should only be done to correct a spelling error or typo.

Legal Name

The legal name is one recognized by law, thus it is the name liable for pursuit or for debts incurred by the business or organization. In the case of a corporation, it is the legal name as fixed by its charter or the statute by which the corporation was created.

Modifications to the legal name should only be done to correct a spelling error or typo.

To indicate a legal name of another legal entity you should instead indicate it in question 3 by selecting 'Not currently operational' and then choosing the applicable reason and providing the legal name of this other entity along with any other requested information.

Operating Name

The operating name is a name the business or organization is commonly known as if different from its legal name. The operating name is synonymous with trade name.

Legal name:

Operating name (if applicable):

2. Verify or provide the contact information of the designated business or organization contact person for this questionnaire and correct where needed.

Note: The designated contact person is the person who should receive this questionnaire. The designated contact person may not always be the one who actually completes the questionnaire.

First name:

Last name:

Title:

Preferred language of communication:

  • English
  • French

Mailing address (number and street):

City:

Province, territory or state:

Country:

  • Canada
  • United States

Email address:

Telephone number (including area code):

Extension number (if applicable):
The maximum number of characters is 10.

Fax number (including area code):

3. Verify or provide the current operational status of the business or organization identified by the legal and operating name above.

  • Operational
  • Not currently operational
    • Why is this business or organization not currently operational?
      • Seasonal operations
        • When did this business or organization close for the season?
          • Date
        • When does this business or organization expect to resume operations?
          • Date
      • Ceased operations
        • When did this business or organization cease operations?
        • Date
        • Why did this business or organization cease operations?
          • Bankruptcy
          • Liquidation
          • Dissolution
          • Other - specify the other reasons for ceased operations
      • Sold operations
        • When was this business or organization sold?
          • Date
        • What is the legal name of the buyer?
      • Amalgamated with other businesses or organizations
        • When did this business or organization amalgamate?
          • Date
        • What is the legal name of the resulting or continuing business or organization?
        • What are the legal names of the other amalgamated businesses or organizations?
      • Temporarily inactive but will re-open
        • When did this business or organization become temporarily inactive?
          • Date
        • When does this business or organization expect to resume operations?
          • Date
        • Why is this business or organization temporarily inactive?
      • No longer operating due to other reasons
        • When did this business or organization cease operations?
          • Date
        • Why did this business or organization cease operations?

4. Verify or provide the current main activity of the business or organization identified by the legal and operating name above.

Note: The described activity was assigned using the North American Industry Classification System (NAICS).

This question verifies the business or organization's current main activity as classified by the North American Industry Classification System (NAICS). The North American Industry Classification System (NAICS) is an industry classification system developed by the statistical agencies of Canada, Mexico and the United States. Created against the background of the North American Free Trade Agreement, it is designed to provide common definitions of the industrial structure of the three countries and a common statistical framework to facilitate the analysis of the three economies. NAICS is based on supply-side or production-oriented principles, to ensure that industrial data, classified to NAICS, are suitable for the analysis of production-related issues such as industrial performance.

The target entity for which NAICS is designed are businesses and other organizations engaged in the production of goods and services. They include farms, incorporated and unincorporated businesses and government business enterprises. They also include government institutions and agencies engaged in the production of marketed and non-marketed services, as well as organizations such as professional associations and unions and charitable or non-profit organizations and the employees of households.

The associated NAICS should reflect those activities conducted by the business or organizational units targeted by this questionnaire only, as identified in the 'Answering this questionnaire' section and which can be identified by the specified legal and operating name. The main activity is the activity which most defines the targeted business or organization's main purpose or reason for existence. For a business or organization that is for-profit, it is normally the activity that generates the majority of the revenue for the entity.

The NAICS classification contains a limited number of activity classifications; the associated classification might be applicable for this business or organization even if it is not exactly how you would describe this business or organization's main activity.

Please note that any modifications to the main activity through your response to this question might not necessarily be reflected prior to the transmitting of subsequent questionnaires and as a result they may not contain this updated information.

The following is the detailed description including any applicable examples or exclusions for the classification currently associated with this business or organization.

Description and examples

  • This is the current main activity
  • This is not the current main activity
    Provide a brief but precise description of this business or organization's main activity:
    e.g., breakfast cereal manufacturing, shoe store, software development

Main activity

5. You indicated that is not the current main activity.

Was this business or organization's main activity ever classified as: ?

  • Yes
    When did the main activity change?
    Date:
  • No

6. Search and select the industry classification code that best corresponds to this business or organization's main activity.

Select this business or organization's activity sector (optional)

  • Farming or logging operation
  • Construction company or general contractor
  • Manufacturer
  • Wholesaler
  • Retailer
  • Provider of passenger or freight transportation
  • Provider of investment, savings or insurance products
  • Real estate agency, real estate brokerage or leasing company
  • Provider of professional, scientific or technical services
  • Provider of health care or social services
  • Restaurant, bar, hotel, motel or other lodging establishment
  • Other sector

7. You have indicated that the current main activity of this business or organization is:

Main activity

Are there any other activities that contribute significantly (at least 10%) to this business or organization's revenue?

  • Yes, there are other activities
    Provide a brief but precise description of this business or organization's secondary activity:
    e.g., breakfast cereal manufacturing, shoe store, software development
  • No, that is the only significant activity

8. Approximately what percentage of this business or organization's revenue is generated by each of the following activities?

When precise figures are not available, provide your best estimates.

 
  Percentage of revenue
Main activity  
Secondary activity  
All other activities  
Total percentage  

Reporting period information

1. What are the start and end dates of this business's or organization's most recently completed fiscal year?

For this survey, the end date should fall between April 1, 2021 and March 31, 2022.

Here are twelve common fiscal periods that fall within the targeted dates:

  • May 1, 2020 to April 30, 2021
  • June 1, 2020 to May 31, 2021
  • July 1, 2020 to June 30, 2021
  • August 1, 2020 to July 31, 2021
  • September 1, 2020 to August 31, 2021
  • October 1, 2020 to September 30, 2021
  • November 1, 2020 to October 31, 2021
  • December 1, 2020 to November 30, 2021
  • January 1, 2021 to December 31, 2021
  • February 1, 2021 to January 31, 2022
  • March 1, 2021 to February 28, 2022
  • April 1, 2021 to March 31, 2022.

Here are other examples of fiscal periods that fall within the required dates:

  • September 18, 2020 to September 15, 2021 (e.g., floating year-end)
  • June 1, 2021 to December 31, 2021 (e.g., a newly opened business).

Fiscal year start date:

Fiscal year-end date:

2. What is the reason the reporting period does not cover a full year?

Select all that apply.

  • Seasonal operations
  • New business
  • Change of ownership
  • Temporarily inactive
  • Change of fiscal year
  • Ceased operations
  • Other - specify reason the reporting period does not cover a full year:

Additional reporting instructions

1. Throughout this questionnaire, please report financial information in thousands of Canadian dollars.

For example, an amount of $763,880.25 should be reported as:

CAN$ '000: $764,000

I will report in the format above

Revenue

1. For the reporting period of YYYY-MM-DD to YYYY-MM-DD, what was this business's revenue from each of the following sources?

Notes:

  • a detailed breakdown may be requested in other sections
  • these questions are asked of many different industries. Some questions may not apply to this business.

Report dollar amounts in thousands of Canadian dollars.

Revenue

a. Sales of goods and services (e.g., fees, commissions, services revenue)

Report net of returns and allowances.

Sales of goods and services are defined as amounts derived from the sale of goods and services (cash or credit), falling within a business's ordinary activities. Sales should be reported net of trade discount, value added tax and other taxes based on sales.

Include:

  • sales from Canadian locations (domestic and export sales)
  • transfers to other business units or a head office of your firm.

Exclude:

  • transfers into inventory and consignment sales
  • federal, provincial and territorial sales taxes and excise duties and taxes
  • intercompany sales in consolidated financial statements.

b. Rental and leasing

Include rental or leasing of apartments, commercial buildings, land, office space, residential housing, investments in co-tenancies and co-ownerships, hotel or motel rooms, long and short term vehicle leasing, machinery or equipment, storage lockers, etc.

c. Commissions

Include commissions earned on the sale of products or services by businesses such as advertising agencies, brokers, insurance agents, lottery ticket sales, sales representatives and travel agencies - compensation could also be reported under this item (for example, compensation for collecting sales tax).

d. Subsidies (including grants, donations, fundraising and sponsorships)

Include:

  • non-repayable grants, contributions and subsidies from all levels of government
  • revenue from private sector (corporate and individual) sponsorships, donations and fundraising.

e. Royalties, rights, licensing and franchise fees

A royalty is defined as a payment received by the holder of a copyright, trademark or patent.

Include revenue received from the sale or use of all intellectual property rights of copyrighted materials such as musical, literary, artistic or dramatic works, sound recordings or the broadcasting of communication signals.

f. Dividends

Include:

  • dividend income
  • dividends from Canadian sources
  • dividends from foreign sources
  • patronage dividends.

Exclude equity income from investments in subsidiaries or affiliates.

g. Interest

Include:

  • investment revenue
  • interest from foreign sources
  • interest from Canadian bonds and debentures
  • interest from Canadian mortgage loans
  • interest from other Canadian sources.

Exclude equity income from investments in subsidiaries or affiliates.

h. All other revenue (Include intracompany transfers)

Include amounts not included in questions a. to g.

Total revenue

The sum of sub-questions a. to h.

 
  CAN$ '000
a. Sales of goods and services
Include sales, commissions, rental and leasing revenue if they are this business's primary revenue source.
 
b. Rental and leasing
Report only if this is a secondary revenue source. If rental and leasing are your primary revenue source, report at question a.
 
c. Commissions
Report only if this is a secondary revenue source. If commissions are your primary revenue source, report at question a.
 
d. Subsidies
Include grants, donations, fundraising and sponsorships.
 
e. Royalties, rights, licensing and franchise fees  
f. Dividends  
g. Interest  
h. Other
Include intracompany transfers.
Specify all other revenue:
 
Total revenue  

E-commerce

1. For the reporting period of YYYY-MM-DD to YYYY-MM-DD, what was this business's total revenue?

Include:

  • sales of goods and services
  • rental, leasing and property management
  • commissions
  • subsidies, grants, donations, fundraising and sponsorships
  • royalties
  • rights
  • licensing and franchise fees
  • dividends, interest and other revenue.

Report dollar amounts in thousands of Canadian dollars.

Total revenue in CAN$ '000:

2. For the reporting period of YYYY-MM-DD to YYYY-MM-DD, did this business have any e-commerce revenue?

E-commerce revenue: Sales of goods and services conducted over the Internet with or without online payment.

Include all revenue for which an order is received and commitment to purchase is made via the Internet, although payment can be made by other means, such as orders made on web pages, an extranet, mobile devices or Electronic Data Interchange (EDI).

Exclude orders made by telephone, facsimile or e-mail.

  • Yes
  • No

3. Of the [amount] amount reported in total revenue, what was the total e-commerce revenue?

When precise figures are not available, provide your best estimates.

Total e-commerce revenue in CAN$ '000:

4. For the reporting period of YYYY-MM-DD to YYYY-MM-DD, did this business make sales over the Internet through any of the following methods?

Select all that apply.

Mobile app

Include sales through any app, or application, that is downloaded and designed to run on a handheld device such as a smartphone or tablet (for example, places where a user may download these apps, including Apple's App Store, Google Play or Blackberry App World).

Company website Include sales through a browser-based website where your organization maintains control of the content.

Third-party website Include sales through a browser-based website where a third-party maintains the structure of the website and control of the look and feel while your company only provides the product to be sold (for example, Amazon, Expedia or Etsy).

Electronic Data Interchange (EDI)

A standard format for exchanging business data. EDI is based on the use of message standards, ensuring that all participants use a common language.

  • Via a mobile app
  • Via your company website
  • Via a third-party website
  • Via Electronic Data Interchange (EDI)
  • Other - specify the other methods:

5. Does this business have any full-time staff dedicated solely to activities related to e-commerce?

  • Yes
  • No

6. Why did this business not make sales over the Internet?

Select all that apply.

  • Goods and services do not lend themselves to online sales
  • Prefer to maintain current business model
  • Lack of skilled workers to implement and maintain e-commerce infrastructure
  • Cost of development is too high
  • Security concerns
  • Other - specify the other reasons:

Expenses

1. For the reporting period of YYYY-MM-DD to YYYY-MM-DD, what were this business's expenses for the following items?

Notes:

  • a detailed breakdown may be requested in other sections
  • these questions are asked of many different industries. Some questions may not apply to this business.

Report dollar amounts in thousands of Canadian dollars.

Expenses

a. Cost of goods sold

Many business units distinguish their costs of materials from their other business expenses (selling, general and administrative). This item is included to allow you to easily record your costs/expenses according to your normal accounting practices.

Include:

  • cost of raw materials and/or goods purchased for resale - net of discounts earned on purchases
  • freight in and duty.

Exclude all costs associated with salaries, wages, benefits, commissions and subcontracts (report at Employment costs and expenses, and Subcontracts).

b. Employment costs and expenses

b1. Salaries, wages and commissions

Please report all salaries and wages (including taxable allowances and employment commissions as defined on the T4 - Statement of Remuneration Paid) before deductions for this reporting period.

Include:

  • vacation pay
  • bonuses (including profit sharing)
  • employee commissions
  • taxable allowances (e.g., room and board, vehicle allowances, gifts such as airline tickets for holidays)
  • severance pay.

Exclude all payments and expenses associated with casual labour and outside contract workers (report at Subcontracts).

b2. Employee benefits

Include contributions to:

  • health plans
  • insurance plans
  • employment insurance
  • pension plans
  • workers' compensation
  • association dues
  • contributions to any other employee benefits such as child care and supplementary unemployment benefit (SUB) plans
  • contributions to provincial and territorial health and education payroll taxes.

c. Subcontracts

Subcontract expense refers to the purchasing of services from outside of the company rather than providing them in-house.

Include:

  • hired casual labour and outside contract workers
  • custom work and contract work
  • subcontract and outside labour
  • hired labour.

d. Research and development fees

Expenses from activities conducted with the intention of making a discovery that could either lead to the development of new products or procedures, or to the improvement of existing products or procedures.

e. Professional and business fees

Include:

  • legal services
  • accounting and auditing fees
  • consulting fees
  • education and training fees
  • appraisal fees
  • management and administration fees
  • property management fees
  • information technology (IT) consulting and service fees (purchased)
  • architectural fees
  • engineering fees
  • scientific and technical service fees
  • other consulting fees (management, technical and scientific)
  • veterinary fees
  • fees for human health services
  • payroll preparation fees
  • all other professional and business service fees.

Exclude service fees paid to Head Office (report at All other costs and expenses).

f. Utilities

Utility expenses related to operating your business unit such as water, electricity, gas, heating and hydro.

Include:

  • diesel, fuel wood, natural gas, oil and propane
  • sewage.

Exclude:

  • energy expenses covered in your rental and leasing contracts
  • telephone, Internet and other telecommunications
  • vehicle fuel (report at All other costs and expenses).

g. Office and computer related expenses

Include:

  • office stationery and supplies, paper and other supplies for photocopiers, printers and fax machines
  • postage and courier (used in the day to day office business activity)
  • computer and peripherals upgrade expenses
  • data processing.

Exclude telephone, Internet and other telecommunication expenses (report at Telephone, Internet and other telecommunication).

h. Telephone, Internet and other telecommunication

Include:

  • internet
  • telephone and telecommunications
  • cellular telephone
  • fax machine
  • pager.

i. Business taxes, licenses and permits

Include:

  • property taxes paid directly and property transfer taxes
  • vehicle license fees
  • beverage taxes and business taxes
  • trade license fees
  • membership fees and professional license fees
  • provincial capital tax.

j. Royalties, franchise fees and memberships

Include:

  • amounts paid to holders of patents, copyrights, performing rights and trademarks
  • gross overriding royalty expenses and direct royalty costs
  • resident and non-resident royalty expenses
  • franchise fees.

Exclude Crown royalties

k. Crown charges

Federal or Provincial royalty, tax, lease or rental payments made in relation to the acquisition, development or ownership of Canadian resource properties.

Include:

  • Crown royalties
  • Crown leases and rentals
  • oil sand leases
  • stumpage fees.

l. Rental and leasing

Include:

  • lease rental expenses, real estate rental expenses, condominium fees and equipment rental expenses
  • motor vehicle rental and leasing expenses
  • studio lighting and scaffolding
  • machinery and equipment rental expenses
  • storage expenses
  • road and construction equipment rental
  • fuel and other utility costs covered in your rental and leasing contracts.

m. Repair and maintenance

Include:

  • buildings and structures
  • machinery and equipment
  • security equipment
  • vehicles
  • costs related to materials, parts and external labour associated with these expenses
  • janitorial and cleaning services and garbage removal.

n. Amortization and depreciation

Include:

  • direct cost depreciation of tangible assets and amortization of leasehold improvements
  • amortization of intangible assets e.g., amortization of goodwill, patents, franchises, copyrights, trademarks, deferred charges, organizational costs).

o. Insurance

Insurance recovery income should be deducted from insurance expenses.

Include:

  • professional and other liability insurance
  • motor vehicle and property insurance
  • executive life insurance
  • bonding, business interruption insurance and fire insurance.

p. Advertising, marketing, promotion, meals and entertainment

Include:

  • newspaper advertising and media expenses
  • catalogues, presentations and displays
  • tickets for theatre, concerts and sporting events for business promotion
  • fundraising expenses
  • meals, entertainment and hospitality purchases for clients.

q. Travel, meetings and conventions

Include:

  • travel expenses
  • meeting and convention expenses, seminars
  • passenger transportation (e.g., airfare, bus, train)
  • accommodations
  • travel allowance and meals while travelling
  • other travel expenses.

r. Financial services

Include:

  • explicit service charges for financial services
  • credit and debit card commissions and charges
  • collection expenses and transfer fees
  • registrar and transfer agent fees
  • security and exchange commission fees
  • other financial service fees.

Exclude interest expenses (report at Interest expense).

s. Interest expense

Report the cost of servicing your company's debt.

Include:

  • interest
  • bank charges
  • finance charges
  • interest payments on capital leases
  • amortization of bond discounts
  • interest on short-term and long-term debt, mortgages, bonds and debentures.

t. Other non-production-related costs and expenses

Include:

  • charitable donations and political contributions
  • bad debt expense
  • loan losses
  • provisions for loan losses (minus bad debt recoveries)
  • inventory adjustments.

u. All other costs and expenses (including intracompany expenses)

Include:

  • production costs
  • pipeline operations, drilling, site restoration
  • gross overriding royalty
  • other producing property rentals
  • well operating, fuel and equipment
  • other lease rentals
  • other direct costs
  • equipment hire and operation
  • log yard expense, forestry costs, logging road costs
  • freight in and duty
  • overhead expenses allocated to cost of sales
  • other expenses
  • cash over/short (negative expense)
  • reimbursement of parent company expense
  • warranty expense
  • recruiting expenses
  • general and administrative expenses
  • interdivisional expenses
  • interfund transfer (minus expense recoveries)
  • exploration and development (including prospect/geological, well abandonment and dry holes, exploration expenses, development expenses)
  • amounts not included in sub-questions a. to t. above.

Total expenses

The sum of sub-questions a. to u.

 
  CAN$ '000
a. Cost of goods sold  
a1. Opening inventories  
a2. Purchases
Include raw materials, goods purchased for resale and non-returnable containers.
Exclude change in inventories.
 
a3. Closing inventories  
a4. Cost of goods sold
Opening inventories plus purchases minus closing inventories.
 
b. Employment costs and expenses
Include all employees who were issued a T4.
Exclude commissions to be paid to non-employees, report at sub-question c.
 
b1. Salaries, wages and commissions  
b2. Employee benefits  
c. Subcontracts
Include commissions to non-employees.
Exclude research and development.
 
d. Research and development fees.
Exclude in-house research and development.
 
e. Professional and business fees
e.g., legal, accounting, consulting, scientific and property management fees
 
f. Utilities
e.g., electricity, water, gas
 
g. Office and computer related expenses
e.g., office supplies, postage, computer upgrades
 
h. Telephone, Internet and other telecommunication  
i. Business taxes, licenses and permits
e.g., beverage tax, business tax, license fees, property taxes
 
j. Royalties, franchise fees and memberships
Exclude Crown royalties.
 
k. Crown charges
(for logging, mining and energy industries only)
 
l. Rental and leasing
Include land buildings, equipment, vehicles.
 
m. Repair and maintenance
Include buildings, equipment, vehicles.
 
n. Amortization and depreciation  
o. Insurance  
p. Advertising, marketing, promotion, meals and entertainment  
q. Travel, meetings and conventions  
r. Financial services
e.g., bank charges, transaction fees
 
s. Interest expense  
t. Other non-production-related costs and expenses
Include bad debts, loan losses, donations, political contributions and inventory write-down.
 
u. All other costs and expenses
Include intracompany expenses.
Specify all other costs and expenses:
 
Total expenses  

Industry Characteristics

1. What were this business's sales for each of the following goods and services?

Report all amounts in thousands of Canadian dollars.

a. Travel Arrangement Services

a1. Packaged tours

Packaged tours including arranging, assembling, and marketing tour packages for travel agents, tour wholesalers, and/or individuals.

a2. Customized tours

Assembling, organizing, and reserving custom tour packages for travel agents and/or individuals.

a3. Group tours

Assembling, organizing, and reserving packages for groups of people with a common interest (e.g., sports, culture, adventure, religion, education, conferences and conventions).

Total packaged product sales
Sum of questions a1. to a3.

a4. Cruises

Reservation services including commissions and fees from the sale of cruise vacations.

a5. Airline seats

Reservation services including commissions and fees from the sale of passenger airline transportation

a6. Transportation

Reservation services including commissions and fees from the sale of transportation (e.g., bus, airport shuttles, rail, vehicle rental and ferry)

Please exclude airline seats which are included in a5.

a7. Lodging

Reservation services including commissions and fees from the sale of lodging services.

Total individual product sales
Sum of questions a4. to a7.

b. Service charges for trip planning (including assembling travel information, advice and plans)

Travellers pay directly for travel assistance such as assembling travel information, advice and travel plans.

Include:

  • ticket issuing fees
  • other fees paid directly to travel agents by travellers.

c. Travel insurance products (e.g., health, baggage and cancellation insurance)

Businesses are paid for their services by commissions, fees or a combination thereof. This includes such products as health, baggage and cancellation insurance.

d. Other sales of goods and services

Amounts not included in questions a. to c.

(e.g., travellers cheques, travel related merchandise, foreign exchange services, wire transfers, sightseeing tour services, automobile club memberships and condominium time-share services)

Total sales of goods and services

Sum of questions a. to d.

 
  CAN$ '000
a. Travel Arrangement Services
Report sales of travel arrangement goods and services including arranging, assembling, and marketing of tours or other goods.
To be reported in gross amounts including the entire transaction value.
 
a1. Packaged tours  
a2. Customized tours  
a3. Group tours  
Total packaged product sales  
a4. Cruises  
a5. Airline seats  
a6. Transportation
e.g., bus, airport shuttles, rail, vehicle rental and ferry
 
a7. Lodging  
Total individual product sales  
b. Service charges for trip planning
Include assembling travel information, advice and plans.
 
c. Travel insurance products
e.g., health, baggage and cancellation insurance
 
d. Other sales of goods and services
e.g., travellers cheques, travel related merchandise, foreign exchange services and wire transfers
Specify all other sales of goods and services:
 
Total sales of goods and services
Sum of questions a. to d.
 

2. Please provide a percentage breakdown of your total operating revenue from travel to:

Sales by destination

Please provide a breakdown of your total operating revenue by destination. This includes a breakdown of revenues received for destinations within Canada, United States and all other destinations.

 
  Percentage
Canadian destinations:  
a. Tour and cruise packages  
b. Other  
USA destinations:  
c. Tour and cruise packages  
d. Other  
Other destinations:  
e. Tour and cruise packages  
f. Other  
Total  

Sales by type of client

1. What was this business's breakdown of sales by the following types of client?

Sales by type of client

This section is designed to measure which sector of the economy purchases your services.

Please provide a percentage breakdown of your sales by type of client.

Please ensure that the sum of percentages reported in this section equals 100%.

a. to c. Clients in Canada

a. Individuals and households

Please report the percentage of sales to individuals and households who do not represent the business or government sector.

b. Businesses

Percentage of sales sold to the business sector should be reported here.

Include sales to Crown corporations.

c. Governments, not-for-profit organizations and public institutions e.g., hospitals, schools)

Percentage of sales to federal, provincial, territorial and municipal governments should be reported here.

Include: sales to hospitals, schools, universities and public utilities.

d. Clients outside Canada

Please report the percentage of total sales to customers or clients located outside Canada including foreign businesses, foreign individuals, foreign institutions and/or governments.

Include sales to foreign subsidiaries and affiliates.

 
  Percentage
a. Clients in Canada - individuals and households  
b. Clients in Canada - businesses  
c. Clients in Canada - governments, not-for-profit organizations and public institutions
e.g., hospitals and schools
 
d. Clients outside Canada  
Total percentage  

COVID-19

1. In response to the COVID-19 pandemic, did this business experience additional expenses in 2021 to comply with public health and safety guidelines or corporate guidelines to be allowed to operate?

Additional expenses could include: purchases of cleaning supplies, sanitation measures, protective equipment for employees or customers and costs to retrofit business operations (e.g., Plexiglass barriers, new equipment that facilitates physical distancing, additional labour costs).
Public health and safety guidelines refer to guidelines from a federal, provincial or municipal health agency.

Yes

What were the total additional expenses in fiscal year 2021?
Report in thousands of dollars. For expenses less than $500, enter "0".
When precise figures are not available, please provide your best estimate.

Additional labour costs, if applicable (CAN$ '000)
$ ,000
Other additional expenses (CAN$ '000)
$ ,000

As a result of the additional expenses or business conditions, did this business delay plans to expand operating capacity or undertake investments?

No

2. In response to the COVID-19 pandemic, in 2021 which of the following ways did this business change operating methods? 

Include both temporary and ongoing changes.

Select all that apply.

  • Adopt or expand upon a contact-less business model (e.g., e-commerce sales, drive-through, delivery, curbside pickup, offer virtual services )
  • Retrofit the workspace
  • Invest in e-commerce platforms
  • Use business intelligence technologies (e.g., cloud-based computing systems and big data analytic tools)
  • Develop new supply chains
  • Ask some or all employees to work from home
  • Introduce or accelerate the introduction of new goods and services
  • Increase prices charged to customers of certain goods and services as a result of the COVID-19 pandemic
  • Decrease prices charged to customers of certain goods and services as a result of the COVID-19 pandemic
  • Change marketing strategy (Include re-allocating marketing budget)
  • Increase marketing budget
  • Decrease marketing budget
  • Expand to new markets
  • Substitute capital for labour (e.g., automation, robots for use in producing goods and services)
  • Provided extra staff training (e.g., job specific training, managerial training, training in new technology, training in new business practices, digital skills training, data literacy skills, other training and development)
  • Downsize business activities (e.g., reduce goods and services offered)
  • Reduce labour costs (e.g., lay off employees, furlough employees, request employees take vacation, reduce hours of employees, offer early retirement package, outsource work)
  • Reduce costs other than labour costs
  • Take other actions
  • Specify the additional actions taken

    OR

  • No changes to operating methods in response to the COVID-19 pandemic

3. Due to COVID-19, did this business receive public financial relief to avoid layoffs through the Canada Emergency Wage Subsidy or Temporary 10% Wage Subsidy programs?

Yes
How much did your business obtain through these means?
Financial relief received (CAN$ '000)
$ ,000

No

Notification of intent to extract web data

1. Does this business have a website?

Statistics Canada is piloting a web data extraction initiative, also known as web scraping, which uses software to search and compile publicly available data from business websites. As a result, we may visit the website for this business to search for, and compile, additional information. This initiative should allow us to reduce the reporting burden on businesses, as well as produce additional statistical indicators to ensure that our data remain accurate and relevant.

We will do our utmost to ensure the data are collected in a manner that will not affect the functionality of the website. Any data collected will be used by Statistics Canada for statistical and research purposes only, in accordance with the agency's mandate.

Please visit Statistics Canada's web scraping initiative page for more information.

Please visit Statistics Canada's transparency and accountability page to learn more.

If you have any questions or concerns, please contact Statistics Canada Client Services, toll-free at 1-877-949-9492 (TTY: 1-800-363-7629) or by email at infostats@canada.ca.

Changes or events

1. Indicate any changes or events that affected the reported values for this business or organization, compared with the last reporting period.

Select all that apply.

  • Strike or lock-out
  • Exchange rate impact
  • Price changes in goods or services sold
  • Contracting out
  • Organizational change
  • Price changes in labour or raw materials
  • Natural disaster
  • Recession
  • Change in product line
  • Sold business or business units
  • Expansion
  • New or lost contract
  • Plant closures
  • Acquisition of business or business units
  • Other - specify the other changes or events:
  • No changes or events

Contact person

2. Statistics Canada may need to contact the person who completed this questionnaire for further information.

Is [Provided Given Names], [Provided Family Name] the best person to contact?

  • Yes
  • No

Who is the best person to contact about this questionnaire?

First name:

Last name:

Title:

Email address:

Telephone number (including area code):

Extension number (if applicable):
The maximum number of characters is 5.

Fax number (including area code):

Feedback

3. How long did it take to complete this questionnaire?

Include the time spent gathering the necessary information.

Hours:

Minutes:

4. Do you have any comments about this questionnaire?

Monthly Survey of Food Services and Drinking Places: CVs for Total Sales by Geography - November 2021

Monthly Survey of Food Services and Drinking Places: CVs for Total Sales by Geography – November 2021
Table summary
This table displays the results of CVs for Total sales by Geography. The information is grouped by Geography (appearing as row headers), Month and percentage (appearing as column headers).
Geography Month
202011 202012 202101 202102 202103 202104 202105 202106 202107 202108 202109 202110 202111
percentage
Canada 0.20 0.25 0.20 0.19 0.47 1.44 1.59 1.32 3.40 0.43 0.18 0.21 0.30
Newfoundland and Labrador 0.30 0.48 1.08 0.48 2.16 2.05 2.53 0.46 0.60 0.54 0.57 0.92 1.00
Prince Edward Island 1.08 1.81 1.63 1.04 1.29 16.69 1.05 0.92 0.96 0.83 2.81 7.21 6.82
Nova Scotia 0.36 1.03 0.91 0.40 0.87 2.76 3.16 0.96 0.47 0.39 0.38 0.62 0.81
New Brunswick 0.39 0.49 0.98 0.50 0.39 1.08 1.75 0.46 0.57 0.47 0.59 0.83 0.87
Quebec 0.55 0.79 0.68 0.67 1.11 5.08 4.52 4.28 16.06 0.66 0.60 0.61 1.13
Ontario 0.28 0.45 0.34 0.24 0.99 2.56 2.99 2.64 1.24 0.88 0.24 0.32 0.40
Manitoba 0.93 0.78 0.89 0.46 0.45 1.21 2.59 0.67 0.81 0.43 0.44 0.86 1.68
Saskatchewan 1.04 0.75 0.91 0.52 0.46 1.22 0.88 0.61 10.59 0.96 0.81 1.63 1.61
Alberta 0.36 0.54 0.52 0.33 0.81 3.06 4.31 0.45 2.28 0.66 0.39 0.50 0.53
British Columbia 0.68 0.39 0.33 0.56 0.99 1.88 2.78 0.79 1.62 0.34 0.37 0.47 0.45
Yukon Territory 1.71 4.34 5.07 1.96 3.01 65.36 2.72 1.85 2.87 4.89 2.17 3.60 17.63
Northwest Territories 2.04 1.97 6.05 1.83 2.93 74.26 3.73 1.86 3.13 5.75 2.31 4.03 23.84
Nunavut 67.48 2.75 2.54 2.39 2.67 3.88 4.83 1.27 84.13 2.88 3.60 5.75 4.00

Why are we conducting this survey?

This survey is conducted by Statistics Canada in order to collect the necessary information to support the Integrated Business Statistics Program (IBSP). This program combines various survey and administrative data to develop comprehensive measures of the Canadian economy.

The statistical information from the IBSP serves many purposes, including:

  • calculating each province and territory's fair share of federal-provincial transfer payments for health, education and social programs
  • establishing government programs to assist businesses
  • assisting the business community in negotiating contracts and collective agreements
  • supporting the government in making informed decisions about fiscal, monetary and foreign exchange policies
  • indexing social benefit programs and determining tax brackets
  • enabling academics and economists to analyze the economic performance of Canadian industries and to better understand rapidly evolving business environments.

Your information may also be used by Statistics Canada for other statistical and research purposes.

Your participation in this survey is required under the authority of the Statistics Act.

Other important information

Authorization to collect this information

Data are collected under the authority of the Statistics Act, Revised Statutes of Canada, 1985, Chapter S-19.

Confidentiality

By law, Statistics Canada is prohibited from releasing any information it collects that could identify any person, business, or organization, unless consent has been given by the respondent, or as permitted by the Statistics Act. Statistics Canada will use the information from this survey for statistical purposes only.

Record linkages

To enhance the data from this survey and to reduce the reporting burden, Statistics Canada may combine the acquired data with information from other surveys or from administrative sources.

Data-sharing agreements

To reduce respondent burden, Statistics Canada has entered into data-sharing agreements with provincial and territorial statistical agencies and other government organizations, which have agreed to keep the data confidential and use them only for statistical purposes. Statistics Canada will only share data from this survey with those organizations that have demonstrated a requirement to use the data.

Section 11 of the Statistics Act provides for the sharing of information with provincial and territorial statistical agencies that meet certain conditions. These agencies must have the legislative authority to collect the same information, on a mandatory basis, and the legislation must provide substantially the same provisions for confidentiality and penalties for disclosure of confidential information as the Statistics Act. Because these agencies have the legal authority to compel businesses to provide the same information, consent is not requested and businesses may not object to the sharing of the data.

For this survey, there are Section 11 agreements with the provincial and territorial statistical agencies of Newfoundland and Labrador, Nova Scotia, New Brunswick, Québec, Ontario, Manitoba, Saskatchewan, Alberta, British Columbia and the Yukon. The shared data will be limited to information pertaining to business establishments located within the jurisdiction of the respective province or territory.

Section 12 of the Statistics Act provides for the sharing of information with federal, provincial or territorial government organizations.
Under Section 12, you may refuse to share your information with any of these organizations by writing a letter of objection to the Chief Statistician, specifying the organizations with which you do not want Statistics Canada to share your data and mailing it to the following address:

Chief Statistician of Canada
Statistics Canada
Attention of Director, Enterprise Statistics Division
150 Tunney's Pasture Driveway
Ottawa, Ontario
K1A 0T6

You may also contact us by email at statcan.esd-helpdesk-dse-bureaudedepannage.statcan@canada.ca or by fax at 613-951-6583.

For this survey, there are Section 12 agreements with the statistical agencies of Prince Edward Island, the Northwest Territories and Nunavut.

For agreements with provincial and territorial government organizations, the shared data will be limited to information pertaining to business establishments located within the jurisdiction of the respective province or territory.

Business or organization and contact information

1. Verify or provide the business or organization's legal and operating name and correct where needed.

Note: Legal name modifications should only be done to correct a spelling error or typo.

Legal Name

The legal name is one recognized by law, thus it is the name liable for pursuit or for debts incurred by the business or organization. In the case of a corporation, it is the legal name as fixed by its charter or the statute by which the corporation was created.

Modifications to the legal name should only be done to correct a spelling error or typo.

To indicate a legal name of another legal entity you should instead indicate it in question 3 by selecting 'Not currently operational' and then choosing the applicable reason and providing the legal name of this other entity along with any other requested information.

Operating Name

The operating name is a name the business or organization is commonly known as if different from its legal name. The operating name is synonymous with trade name.

  • Legal name
  • Operating name (if applicable)

2. Verify or provide the contact information of the designated business or organization contact person for this questionnaire and correct where needed.

Note: The designated contact person is the person who should receive this questionnaire. The designated contact person may not always be the one who actually completes the questionnaire.

  • First name
  • Last name
  • Title
  • Preferred language of communication
    • English
    • French
  • Mailing address (number and street)
  • City
  • Province, territory or state
  • Postal code or ZIP code
  • Country
    • Canada
    • United States
  • Email address
  • Telephone number (including area code)
  • Extension number (if applicable)
    The maximum number of characters is 10.
  • Fax number (including area code)

3. Please verify or provide the current operational status of the business or organization identified by the legal and operating name above.

  • Operational
  • Not currently operational
    Why is this business or organization not currently operational?
    • Seasonal operations
      • When did this business or organization close for the season?
        • Date
      • When does this business or organization expect to resume operations?
        • Date
    • Ceased operations
      • When did this business or organization cease operations?
        • Date
      • Why did this business or organization cease operations?
        • Bankruptcy
        • Liquidation
        • Dissolution
        • Other - Specify the other reasons for ceased operations
    • Sold operations
      • When was this business or organization sold?
        • Date
      • What is the legal name of the buyer?
    • Amalgamated with other businesses or organizations
      • When did this business or organization amalgamate?
        • Date
      • What is the legal name of the resulting or continuing business or organization?
      • What are the legal names of the other amalgamated businesses or organizations?
    • Temporarily inactive but will re-open
      • When did this business or organization become temporarily inactive?
        • Date
      • When does this business or organization expect to resume operations?
        • Date
      • Why is this business or organization temporarily inactive?
    • No longer operating due to other reasons
      • When did this business or organization cease operations?
        • Date
      • Why did this business or organization cease operations?

4. Verify or provide the current main activity of the business or organization identified by the legal and operating name above.

Note: The described activity was assigned using the North American Industry Classification System (NAICS).

This question verifies the business or organization's current main activity as classified by the North American Industry Classification System (NAICS). The North American Industry Classification System (NAICS) is an industry classification system developed by the statistical agencies of Canada, Mexico and the United States. Created against the background of the North American Free Trade Agreement, it is designed to provide common definitions of the industrial structure of the three countries and a common statistical framework to facilitate the analysis of the three economies. NAICS is based on supply-side or production-oriented principles, to ensure that industrial data, classified to NAICS, are suitable for the analysis of production-related issues such as industrial performance.

The target entity for which NAICS is designed are businesses and other organizations engaged in the production of goods and services. They include farms, incorporated and unincorporated businesses and government business enterprises. They also include government institutions and agencies engaged in the production of marketed and non-marketed services, as well as organizations such as professional associations and unions and charitable or non-profit organizations and the employees of households.

The associated NAICS should reflect those activities conducted by the business or organizational units targeted by this questionnaire only, as identified in the 'Answering this questionnaire' section and which can be identified by the specified legal and operating name. The main activity is the activity which most defines the targeted business or organization's main purpose or reason for existence. For a business or organization that is for-profit, it is normally the activity that generates the majority of the revenue for the entity.

The NAICS classification contains a limited number of activity classifications; the associated classification might be applicable for this business or organization even if it is not exactly how you would describe this business or organization's main activity.

Please note that any modifications to the main activity through your response to this question might not necessarily be reflected prior to the transmitting of subsequent questionnaires and as a result they may not contain this updated information.

The following is the detailed description including any applicable examples or exclusions for the classification currently associated with this business or organization.

Description and examples

  • This is the current main activity
    Provide a brief but precise description of this business or organization's main activity
    e.g., breakfast cereal manufacturing, shoe store, software development
  • This is not the current main activity

Main activity

5. You indicated that is not the current main activity. Was this business or organization's main activity ever classified as: ?

  • Yes
    When did the main activity change?
    Date
  • No

6. Search and select the industry classification code that best corresponds to this business or organization's main activity.

Select this business or organization's activity sector (optional)

  • Farming or logging operation
  • Construction company or general contractor
  • Manufacturer
  • Wholesaler
  • Retailer
  • Provider of passenger or freight transportation
  • Provider of investment, savings or insurance products
  • Real estate agency, real estate brokerage or leasing company
  • Provider of professional, scientific or technical services
  • Provider of health care or social services
  • Restaurant, bar, hotel, motel or other lodging establishment
  • Other sector

7. You have indicated that the current main activity of this business or organization is: Main activity. Are there any other activities that contribute significantly (at least 10%) to this business or organization's revenue?

  • Yes, there are other activities
    Provide a brief but precise description of this business or organization's secondary activity
    e.g., breakfast cereal manufacturing, shoe store, software development
  • No, that is the only significant activity

8. Approximately what percentage of this business or organization's revenue is generated by each of the following activities?

When precise figures are not available, provide your best estimates.

Approximately what percentage of this business or organization's revenue is generated by each of the following activities?
Table summary
This table contains no data. It is an example of an empty data table used by respondents to provide data to Statistics Canada.
  Percentage of revenue
Main activity  
Secondary activity  
All other activities  
Total percentage  

Reporting period information

1. What are the start and end dates of this business's or organization's most recently completed fiscal year?

For this survey, the end date should fall between April 1, 2021 and March 31, 2022.

Here are twelve common fiscal periods that fall within the targeted dates:

  • May 1, 2020 to April 30, 2021
  • June 1, 2020 to May 31, 2021
  • July 1, 2020 to June 30, 2021
  • August 1, 2020 to July 31, 2021
  • September 1, 2020 to August 31, 2021
  • October 1, 2020 to September 30, 2021
  • November 1, 2020 to October 31, 2021
  • December 1, 2020 to November 30, 2021
  • January 1, 2021 to December 31, 2021
  • February 1, 2021 to January 31, 2022
  • March 1, 2021 to February 28, 2022
  • April 1, 2021 to March 31, 2022.

Here are other examples of fiscal periods that fall within the required dates:

  • September 18, 2020 to September 15, 2021 (e.g., floating year-end)
  • June 1, 2021 to December 31, 2021 (e.g., a newly opened business).

Fiscal year start date

Fiscal year-end date

2. What is the reason the reporting period does not cover a full year?

Select all that apply.

  • Seasonal operations
  • New business
  • Change of ownership
  • Temporarily inactive
  • Change of fiscal year
  • Ceased operations
  • Other
    Specify reason the reporting period does not cover a full year

Additional reporting instructions

1. Throughout this questionnaire, please report financial information in thousands of Canadian dollars.

For example, an amount of $763,880.25 should be reported as:

CAN$ '000 : $764,000.

I will report in the format above

Revenue

1. For the reporting period of YYYY-MM-DD to YYYY-MM-DDYYYY, what was this business's revenue from each of the following sources?

Notes:

  • a detailed breakdown may be requested in other sections
  • these questions are asked of many different industries. Some questions may not apply to this business

Report dollar amounts in thousands of Canadian dollars.

Revenue

a. Sales of goods and services (e.g., fees, commissions, services revenue)

Report net of returns and allowances.

Sales of goods and services are defined as amounts derived from the sale of goods and services (cash or credit), falling within a business's ordinary activities. Sales should be reported net of trade discount, value added tax and other taxes based on sales.

Include:

  • sales from Canadian locations (domestic and export sales)
  • transfers to other business units or a head office of your firm.

Exclude:

  • transfers into inventory and consignment sales
  • federal, provincial and territorial sales taxes and excise duties and taxes
  • intercompany sales in consolidated financial statements.

b. Rental and leasing

Include rental or leasing of apartments, commercial buildings, land, office space, residential housing, investments in co-tenancies and co-ownerships, hotel or motel rooms, long and short term vehicle leasing, machinery or equipment, storage lockers, etc.

c. Commissions

Include commissions earned on the sale of products or services by businesses such as advertising agencies, brokers, insurance agents, lottery ticket sales, sales representatives and travel agencies - compensation could also be reported under this item (for example, compensation for collecting sales tax).

d. Subsidies (including grants, donations, fundraising and sponsorships)

Include:

  • non-repayable grants, contributions and subsidies from all levels of government
  • revenue from private sector (corporate and individual) sponsorships, donations and fundraising.

e. Royalties, rights, licensing and franchise fees

A royalty is defined as a payment received by the holder of a copyright, trademark or patent.

Include revenue received from the sale or use of all intellectual property rights of copyrighted materials such as musical, literary, artistic or dramatic works, sound recordings or the broadcasting of communication signals.

f. Dividends

Include:

  • dividend income
  • dividends from Canadian sources
  • dividends from foreign sources
  • patronage dividends.

Exclude equity income from investments in subsidiaries or affiliates.

g. Interest

Include:

  • investment revenue
  • interest from foreign sources
  • interest from Canadian bonds and debentures
  • interest from Canadian mortgage loans
  • interest from other Canadian sources.

Exclude equity income from investments in subsidiaries or affiliates.

h. All other revenue (Include intracompany transfers)

Include amounts not included in questions a. to g.

Total revenue

The sum of sub-questions a. to h.

For the reporting period of YYYY-MM-DD to YYYY-MM-DDYYYY, what was this business's revenue from each of the following sources?
Table summary
This table contains no data. It is an example of an empty data table used by respondents to provide data to Statistics Canada.
  CAN$ '000
a. Sales of goods and services
Include sales, commissions, rental and leasing revenue if they are this business's primary revenue source.
 
b. Rental and leasing
Report only if this is a secondary revenue source. If rental and leasing are your primary revenue source, report at question a.
 
c. Commissions
Report only if this is a secondary revenue source. If commissions are your primary revenue source, report at question a.
 
d. Subsidies
Include grants, donations, fundraising and sponsorships
 
e. Royalties, rights, licensing and franchise fees  
f. Dividends  
g. Interest  
h. Other
Include intracompany transfers. Specify all other revenue:
 
Total revenue  

Expenses

1. For the reporting period of YYYY-MM-DD to YYYY-MM-DDYYYY, what were this business's expenses for the following items?

Notes:

  • a detailed breakdown may be requested in other sections
  • these questions are asked of many different industries. Some questions may not apply to this business
    Report dollar amounts in thousands of Canadian dollars.

Expenses

a. Cost of goods sold

Many business units distinguish their costs of materials from their other business expenses (selling, general and administrative). This item is included to allow you to easily record your costs/expenses according to your normal accounting practices.

Include:

  • cost of raw materials and/or goods purchased for resale - net of discounts earned on purchases
  • freight in and duty.

Exclude all costs associated with salaries, wages, benefits, commissions and subcontracts (report at Employment costs and expenses, and Subcontracts).

b. Employment costs and expenses

b1. Salaries, wages and commissions

Please report all salaries and wages (including taxable allowances and employment commissions as defined on the T4 - Statement of Remuneration Paid) before deductions for this reporting period.

Include:

  • vacation pay
  • bonuses (including profit sharing)
  • employee commissions
  • taxable allowances (e.g., room and board, vehicle allowances, gifts such as airline tickets for holidays)
  • severance pay.

Exclude all payments and expenses associated with casual labour and outside contract workers (report at Subcontracts).

b2. Employee benefits

Include contributions to:

  • health plans
  • insurance plans
  • employment insurance
  • pension plans
  • workers' compensation
  • association dues
  • contributions to any other employee benefits such as child care and supplementary unemployment benefit (SUB) plans
  • contributions to provincial and territorial health and education payroll taxes.

c. Subcontracts

Subcontract expense refers to the purchasing of services from outside of the company rather than providing them in-house.

Include:

  • hired casual labour and outside contract workers
  • custom work and contract work
  • subcontract and outside labour
  • hired labour.

d. Research and development fees

Expenses from activities conducted with the intention of making a discovery that could either lead to the development of new products or procedures, or to the improvement of existing products or procedures.

e. Professional and business fees

Include:

  • legal services
  • accounting and auditing fees
  • consulting fees
  • education and training fees
  • appraisal fees
  • management and administration fees
  • property management fees
  • information technology (IT) consulting and service fees (purchased)
  • architectural fees
  • engineering fees
  • scientific and technical service fees
  • other consulting fees (management, technical and scientific)
  • veterinary fees
  • fees for human health services
  • payroll preparation fees
  • all other professional and business service fees.

Exclude service fees paid to Head Office (report at All other costs and expenses).

f. Utilities

Utility expenses related to operating your business unit such as water, electricity, gas and heating.

Include:

  • diesel, fuel wood, natural gas, oil and propane
  • sewage.

Exclude:

  • energy expenses covered in your rental and leasing contracts
  • telephone, Internet and other telecommunications
  • vehicle fuel (report at All other costs and expenses).

g. Office and computer related expenses

Include:

  • office stationery and supplies, paper and other supplies for photocopiers, printers and fax machines
  • postage and courier (used in the day to day office business activity)
  • computer and peripherals upgrade expenses
  • data processing.

Exclude telephone, Internet and other telecommunication expenses (report at Telephone, Internet and other telecommunication).

h. Telephone, Internet and other telecommunication

Include:

  • internet
  • telephone and telecommunications
  • cellular telephone
  • fax machine
  • pager.

i. Business taxes, licenses and permits

Include:

  • property taxes paid directly and property transfer taxes
  • vehicle license fees
  • beverage taxes and business taxes
  • trade license fees
  • membership fees and professional license fees
  • provincial capital tax.

j. Royalties, franchise fees and memberships

Include:

  • amounts paid to holders of patents, copyrights, performing rights and trademarks
  • gross overriding royalty expenses and direct royalty costs
  • resident and non-resident royalty expenses
  • franchise fees.

Exclude Crown royalties

k. Crown charges

Federal or Provincial royalty, tax, lease or rental payments made in relation to the acquisition, development or ownership of Canadian resource properties.

Include:

  • Crown royalties
  • Crown leases and rentals
  • oil sand leases
  • stumpage fees.

l. Rental and leasing

Include:

  • lease rental expenses, real estate rental expenses, condominium fees and equipment rental expenses
  • motor vehicle rental and leasing expenses
  • studio lighting and scaffolding
  • machinery and equipment rental expenses
  • storage expenses
  • road and construction equipment rental
  • fuel and other utility costs covered in your rental and leasing contracts.

m. Repair and maintenance

Include:

  • buildings and structures
  • machinery and equipment
  • security equipment
  • vehicles
  • costs related to materials, parts and external labour associated with these expenses
  • janitorial and cleaning services and garbage removal.

n. Amortization and depreciation

Include:

  • direct cost depreciation of tangible assets and amortization of leasehold improvements
  • amortization of intangible assets (e.g., amortization of goodwill, patents, franchises, copyrights, trademarks, deferred charges, organizational costs).

o. Insurance

Insurance recovery income should be deducted from insurance expenses.

Include:

  • professional and other liability insurance
  • motor vehicle and property insurance
  • executive life insurance
  • bonding, business interruption insurance and fire insurance.

p. Advertising, marketing, promotion, meals and entertainment

Include:

  • newspaper advertising and media expenses
  • catalogues, presentations and displays
  • tickets for theatre, concerts and sporting events for business promotion
  • fundraising expenses
  • meals, entertainment and hospitality purchases for clients.

q. Travel, meetings and conventions

Include:

  • travel expenses
  • meeting and convention expenses, seminars
  • passenger transportation (e.g., airfare, bus, train)
  • accommodations
  • travel allowance and meals while travelling
  • other travel expenses.

r. Financial services

Include:

  • explicit service charges for financial services
  • credit and debit card commissions and charges
  • collection expenses and transfer fees
  • registrar and transfer agent fees
  • security and exchange commission fees
  • other financial service fees.

Exclude interest expenses (report at Interest expense).

s. Interest expense

Report the cost of servicing your company's debt.

Include:

  • interest
  • bank charges
  • finance charges
  • interest payments on capital leases
  • amortization of bond discounts
  • interest on short-term and long-term debt, mortgages, bonds and debentures.

t. Other non-production-related costs and expenses

Include:

  • charitable donations and political contributions
  • bad debt expense
  • loan losses
  • provisions for loan losses (minus bad debt recoveries)
  • inventory adjustments.

u. All other costs and expenses (including intracompany expenses)

Include:

  • production costs
  • pipeline operations, drilling, site restoration
  • gross overriding royalty
  • other producing property rentals
  • well operating, fuel and equipment
  • other lease rentals
  • other direct costs
  • equipment hire and operation
  • log yard expense, forestry costs, logging road costs
  • freight in and duty
  • overhead expenses allocated to cost of sales
  • other expenses
  • cash over/short (negative expense)
  • reimbursement of parent company expense
  • warranty expense
  • recruiting expenses
  • general and administrative expenses
  • interdivisional expenses
  • interfund transfer (minus expense recoveries)
  • exploration and development (including prospect/geological, well abandonment and dry holes, exploration expenses, development expenses)
  • amounts not included in sub-questions a. to t. above.

Total expenses

The sum of sub-questions a. to u.

For the reporting period of YYYY-MM-DD to YYYY-MM-DDYYYY, what were this business's expenses for the following items?
Table summary
This table contains no data. It is an example of an empty data table used by respondents to provide data to Statistics Canada.
  CAN$ '000
a. Cost of goods sold  
a1. Opening inventories  
a2. Purchases
Include raw materials, goods purchased for resale and non-returnable containers. Exclude change in inventories.
 
a3. Closing inventories  
a4. Cost of goods sold
Opening inventories plus purchases minus closing inventories.
 
b. Employment costs and expenses
Include all employees who were issued a T4. Exclude commissions to be paid to non-employees, report at sub-question c.
 
b1. Salaries, wages and commissions  
b2. Employee benefits  
c. Subcontracts
Include commissions to non-employees. Exclude research and development.
 
d. Research and development fees
Exclude in-house research and development.
 
e. Professional and business fees
e.g., legal, accounting, consulting, scientific and property management fees
 
f. Utilities
e.g., electricity, water, gas
 
g. Office and computer related expenses e.g., office supplies, postage, computer upgrades  
h. Telephone, Internet and other telecommunication  
i. Business taxes, licenses and permits
e.g., beverage tax, business tax, license fees, property taxes
 
j. Royalties, franchise fees and memberships
Exclude Crown royalties.
 
k. Crown charges (for logging, mining and energy industries only)  
l. Rental and leasing
Include land buildings, equipment, vehicles.
 
m. Repair and maintenance
Include buildings, equipment, vehicles.
 
n. Amortization and depreciation  
o. Insurance  
p. Advertising, marketing, promotion, meals and entertainment  
q. Travel, meetings and conventions  
r. Financial services
e.g., bank charges, transaction fees
 
s. Interest expense  
t. Other non-production-related costs and expenses
Include bad debts, loan losses, donations, political contributions and inventory write-down.
 
u. All other costs and expenses
Include intracompany expenses. Specify all other costs and expenses:
 
Total expenses   

Industry characteristics

1. What were this business's sales for each of the following goods and services?

Exclude royalties and license fees.

Report in thousands of Canadian dollars.

What were this business's sales for each of the following goods and services?
Table summary
This table contains no data. It is an example of an empty data table used by respondents to provide data to Statistics Canada.
  CAN$ '000
a. Motion picture film laboratory services  
b. Editing services for audiovisual works  
c. Transfer services  
d. Colour correction and digital restoration services  
e. Virtual Reality and augmented reality services  
f. 3D visual effects and animation services for audiovisual works  
g. Visual effects and animation services for audiovisual works  
h. Subtitling, titling and captioning services  
i. DVD and Blu-ray authoring services  
j. Format conversion services, digital encoding and conversion  
k. Duplication and copying services, except large run, for audiovisual works, digital and video  
l. Sound editing and design services for sound elements of audiovisual works  
Total post-production sales  
m. Contract production of audiovisual works  
n. All other sales  
Total sales of goods and services  

Industry characteristics

2. Of the total sales of goods and services reported in question 1, provide a breakdown for the domestic and foreign total sales.

Exclude royalties and license fees.

Report in thousands of Canadian dollars.

Of the total sales of goods and services reported in question 1, provide a breakdown for the domestic and foreign total sales.
Table summary
This table contains no data. It is an example of an empty data table used by respondents to provide data to Statistics Canada.
  CAN$ '000
Total sales domestic  
Total sales foreign  
Total sales domestic and foreign  

3. Of the total post-production sales reported in question 1, provide a breakdown of the total post-production sales by type of client (first point of sale).

Exclude royalties and license fees

Report in thousands of Canadian dollars.

Of the total post-production sales reported in question 1, provide a breakdown of the total post-production sales by type of client (first point of sale).
Table summary
This table contains no data. It is an example of an empty data table used by respondents to provide data to Statistics Canada.
  CAN$ '000
a. Advertising agencies and public relations firms  
b. Production companies  
c. Broadcasters  
d. Distributors and wholesalers  
e. All other post-production sales  
Total post-production sales  

Sales by type of client

1. What was this business's breakdown of sales by the following types of client?

Sales by type of client

This section is designed to measure which sector of the economy purchases your services.

Please provide a percentage breakdown of your sales by type of client.

Please ensure that the sum of percentages reported in this section equals 100%.

a. to c. Clients in Canada

a. Individuals and households

Please report the percentage of sales to individuals and households who do not represent the business or government sector.

b. Businesses

Percentage of sales sold to the business sector should be reported here.

Include sales to Crown corporations.

c. Governments, not-for-profit organizations and public institutions (e.g., hospitals, schools)

Percentage of sales to federal, provincial, territorial and municipal governments should be reported here.

Include: sales to hospitals, schools, universities and public utilities.

d. Clients outside Canada

Please report the percentage of total sales to customers or clients located outside Canada including foreign businesses, foreign individuals, foreign institutions and/or governments.

Include sales to foreign subsidiaries and affiliates.

What was this business's breakdown of sales by the following types of client?
Table summary
This table contains no data. It is an example of an empty data table used by respondents to provide data to Statistics Canada.
  Percentage
a. Clients in Canada - individuals and households  
b. Clients in Canada - businesses  
c. Clients in Canada - governments, not-for-profit organizations and public institutions e.g., hospitals and schools  
d. Clients outside Canada  
Total percentage  

Sales by consumer location

1. What was the percentage breakdown of this business's sales by consumer location?

Consumer location is the location where the goods or services will ultimately be used.

If ultimate consumer location is not known, the following are acceptable substitutes:

  • shipping destination
  • client's billing address
  • location of this business's retail customers
  • location of this business's warehouse/distribution centres.
What was the percentage breakdown of this business's sales by consumer location?
Table summary
This table contains no data. It is an example of an empty data table used by respondents to provide data to Statistics Canada.
  Percentage
Newfoundland and Labrador  
Prince Edward Island  
Nova Scotia  
New Brunswick  
Quebec  
Ontario  
Manitoba  
Saskatchewan  
Alberta  
British Columbia  
Yukon  
Northwest Territories  
Nunavut  
United States  
All other countries  
Total percentage  

Sales by consumer location

International transactions - revenue received from exports

1. During the reporting period of YYYY-MM-DD to YYYY-MM-DDYYYY, did this business receive revenue from clients outside Canada for the sale of products, services, royalties, rights, licensing or franchise fees?

This section is intended to measure the value of international transactions on goods, services, royalties and licensing fees. It covers imported services and goods purchased outside Canada as well as the value of exported services and goods to clients/customers outside Canada. Please report also royalties, rights, licensing and franchise fees paid to and/or received from outside Canada. Services cover a variety of industrial, professional, trade and business services.

  • Yes
  • No

2. What was the revenue received from clients outside Canada?

This section is intended to measure the value of international transactions on goods, services, royalties and licensing fees. It covers imported services and goods purchased outside Canada as well as the value of exported services and goods to clients/customers outside Canada. Please report also royalties, rights, licensing and franchise fees paid to and/or received from outside Canada. Services cover a variety of industrial, professional, trade and business services.

Revenue received (CAN$ '000)

3. What was the percentage breakdown of revenue received from clients outside Canada by goods, services and royalties?

This section is intended to measure the value of international transactions on goods, services, royalties and licensing fees. It covers imported services and goods purchased outside Canada as well as the value of exported services and goods to clients/customers outside Canada. Please report also royalties, rights, licensing and franchise fees paid to and/or received from outside Canada. Services cover a variety of industrial, professional, trade and business services.

What was the percentage breakdown of revenue received from clients outside Canada by goods, services and royalties?
Table summary
This table contains no data. It is an example of an empty data table used by respondents to provide data to Statistics Canada.
  Percentage
Goods  
Services  
Royalties, rights, licensing and franchise fees  
Total percentage  

4. What was the percentage breakdown of revenue received from clients outside Canada by country?

This section is intended to measure the value of international transactions on goods, services, royalties and licensing fees. It covers imported services and goods purchased outside Canada as well as the value of exported services and goods to clients/customers outside Canada. Please report also royalties, rights, licensing and franchise fees paid to and/or received from outside Canada. Services cover a variety of industrial, professional, trade and business services.

What was the percentage breakdown of revenue received from clients outside Canada by country?
Table summary
This table contains no data. It is an example of an empty data table used by respondents to provide data to Statistics Canada.
  Percentage
United States  
Mexico  
Provide the percentage of revenue received from any other countries - top 4 clients only  
Other country 1  
Other country 2  
Other country 3  
Other country 4  
Total percentage  

International transactions - purchases from outside Canada (imports)

5. During the reporting period of YYYY-MM-DD to YYYY-MM-DDYYYY, did this business make payments to suppliers outside Canada for the purchase of products, services, royalties, rights, licensing or franchise fees?

This section is intended to measure the value of international transactions on goods, services, royalties and licensing fees. It covers imported services and goods purchased outside Canada as well as the value of exported services and goods to clients/customers outside Canada. Please report also royalties, rights, licensing and franchise fees paid to and/or received from outside Canada. Services cover a variety of industrial, professional, trade and business services.

  • Yes
  • No

6. What were the payments made to suppliers outside Canada?

This section is intended to measure the value of international transactions on goods, services, royalties and licensing fees. It covers imported services and goods purchased outside Canada as well as the value of exported services and goods to clients/customers outside Canada. Please report also royalties, rights, licensing and franchise fees paid to and/or received from outside Canada. Services cover a variety of industrial, professional, trade and business services.

Payments made (CAN$ '000)

7. What was the percentage breakdown of payments made to suppliers outside Canada by goods, services and royalties?

This section is intended to measure the value of international transactions on goods, services, royalties and licensing fees. It covers imported services and goods purchased outside Canada as well as the value of exported services and goods to clients/customers outside Canada. Please report also royalties, rights, licensing and franchise fees paid to and/or received from outside Canada. Services cover a variety of industrial, professional, trade and business services.

What was the percentage breakdown of payments made to suppliers outside Canada by goods, services and royalties?
Table summary
This table contains no data. It is an example of an empty data table used by respondents to provide data to Statistics Canada.
  Percentage
Goods  
Services  
Royalties, rights, licensing and franchise fees  
Total percentage  

8. What was the percentage breakdown of payments made to suppliers outside Canada by country?

This section is intended to measure the value of international transactions on goods, services, royalties and licensing fees. It covers imported services and goods purchased outside Canada as well as the value of exported services and goods to clients/customers outside Canada. Please report also royalties, rights, licensing and franchise fees paid to and/or received from outside Canada. Services cover a variety of industrial, professional, trade and business services.

What was the percentage breakdown of payments made to suppliers outside Canada by country?
Table summary
This table contains no data. It is an example of an empty data table used by respondents to provide data to Statistics Canada.
  Percentage
United States  
Mexico  
Provide the percentage of payments made to any other countries - top 4 suppliers only  
Other 1 - specify  
Other 2 - specify  
Other 3 - specify  
Other 4 - specify  
Total percentage  

COVID-19

1. In response to the COVID-19 pandemic, in 2021 did this business experience additional expenses to comply with public health and safety guidelines or corporate guidelines to be allowed to operate?

Additional expenses could include: purchases of cleaning supplies, sanitation measures, protective equipment for employees or customers and costs to retrofit business operations (e.g., Plexiglass barriers, new equipment that facilitates physical distancing, additional labour costs).
Public health and safety guidelines refer to guidelines from a federal, provincial or municipal health agency.

Yes

What were the total additional expenses in fiscal year 2021?
Report in thousands of dollars. For expenses less than $500, enter "0".
When precise figures are not available, please provide your best estimate.

Additional labour costs, if applicable (CAN$ '000)
$ ,000
Other additional expenses (CAN$ '000)
$ ,000

As a result of the additional expenses or business conditions, did this business delay plans to expand operating capacity or undertake investments?

No

2. In response to the COVID-19 pandemic, in 2021 which of the following ways did this business change operating methods? 

Include both temporary and ongoing changes.

Select all that apply.

  • Adopt or expand upon a contact-less business model (e.g., e-commerce sales, drive-through, delivery, curbside pickup, offer virtual services )
  • Retrofit the workspace
  • Invest in e-commerce platforms
  • Use business intelligence technologies (e.g., cloud-based computing systems and big data analytic tools)
  • Develop new supply chains
  • Ask some or all employees to work from home
  • Introduce or accelerate the introduction of new goods and services
  • Increase prices charged to customers of certain goods and services as a result of the COVID-19 pandemic
  • Decrease prices charged to customers of certain goods and services as a result of the COVID-19 pandemic
  • Change marketing strategy (Include re-allocating marketing budget)
  • Increase marketing budget
  • Decrease marketing budget
  • Expand to new markets
  • Substitute capital for labour (e.g., automation, robots for use in producing goods and services)
  • Provided extra staff training (e.g., job specific training, managerial training, training in new technology, training in new business practices, digital skills training, data literacy skills, other training and development)
  • Downsize business activities (e.g., reduce goods and services offered)
  • Reduce labour costs (e.g., lay off employees, furlough employees, request employees take vacation, reduce hours of employees, offer early retirement package, outsource work)
  • Reduce costs other than labour costs
  • Take other actions
  • Specify the additional actions taken

    OR

  • No changes to operating methods in response to the COVID-19 pandemic

3. Due to COVID-19, did this business receive public financial relief to avoid layoffs through the Canada Emergency Wage Subsidy or Temporary 10% Wage Subsidy programs?

Yes
How much did your business obtain through these means?
Financial relief received (CAN$ '000)
$ ,000

No

Notification of intent to extract web data

1. Does this business have a website?

Statistics Canada is piloting a web data extraction initiative, also known as web scraping, which uses software to search and compile publicly available data from business websites. As a result, we may visit the website for this business to search for, and compile, additional information. This initiative should allow us to reduce the reporting burden on businesses, as well as produce additional statistical indicators to ensure that our data remain accurate and relevant.

We will do our utmost to ensure the data are collected in a manner that will not affect the functionality of the website. Any data collected will be used by Statistics Canada for statistical and research purposes only, in accordance with the agency's mandate.

Please visit Statistics Canada's web scraping initiative page for more information.

Please visit Statistics Canada's transparency and accountability page to learn more.

If you have any questions or concerns, please contact Statistics Canada Client Services, toll-free at 1-877-949-9492 (TTY: 1-800-363-7629) or by email at infostats@canada.ca.

Changes or events

1. Indicate any changes or events that affected the reported values for this business or organization, compared with the last reporting period.

Select all that apply.

  • Strike or lock-out
  • Exchange rate impact
  • Price changes in goods or services sold
  • Contracting out
  • Organizational change
  • Price changes in labour or raw materials
  • Natural disaster
  • Recession
  • Change in product line
  • Sold business or business units
  • Expansion
  • New or lost contract
  • Plant closures
  • Acquisition of business or business units
  • Other
    Specify the other changes or events:
  • No changes or events

Contact person

2. Statistics Canada may need to contact the person who completed this questionnaire for further information. Is the provided given names and the provided family name the best person to contact?

  • Yes
  • No

Who is the best person to contact about this questionnaire?

  • First name:
  • Last name:
  • Title:
  • Email address:
  • Telephone number (including area code):
  • Extension number (if applicable):
    The maximum number of characters is 5.
  • Fax number (including area code):

Feedback

3. How long did it take to complete this questionnaire?

Include the time spent gathering the necessary information.

  • Hours:
  • Minutes:

4. Do you have any comments about this questionnaire?

Why do we conduct this survey?

This survey is conducted by Statistics Canada in order to collect the necessary information to support the Integrated Business Statistics Program (IBSP). This program combines various survey and administrative data to develop comprehensive measures of the Canadian economy.

The statistical information from the IBSP serves many purposes, including:

  • calculating each province and territory's fair share of federal-provincial transfer payments for health, education and social programs
  • establishing government programs to assist businesses
  • assisting the business community in negotiating contracts and collective agreements
  • supporting the government in making informed decisions about fiscal, monetary and foreign exchange policies
  • indexing social benefit programs and determining tax brackets
  • enabling academics and economists to analyze the economic performance of Canadian industries and to better understand rapidly evolving business environments.

Your information may also be used by Statistics Canada for other statistical and research purposes.

Your participation in this survey is required under the authority of the Statistics Act.

Other important information

Authorization to collect this information

Data are collected under the authority of the Statistics Act, Revised Statutes of Canada, 1985, Chapter S-19.

Confidentiality

By law, Statistics Canada is prohibited from releasing any information it collects that could identify any person, business, or organization, unless consent has been given by the respondent, or as permitted by the Statistics Act. Statistics Canada will use the information from this survey for statistical purposes only.

Record linkages

To enhance the data from this survey and to reduce the reporting burden, Statistics Canada may combine the acquired data with information from other surveys or from administrative sources.

Data-sharing agreements

To reduce respondent burden, Statistics Canada has entered into data-sharing agreements with provincial and territorial statistical agencies and other government organizations, which have agreed to keep the data confidential and use them only for statistical purposes. Statistics Canada will only share data from this survey with those organizations that have demonstrated a requirement to use the data.

Section 11 of the Statistics Act provides for the sharing of information with provincial and territorial statistical agencies that meet certain conditions. These agencies must have the legislative authority to collect the same information, on a mandatory basis, and the legislation must provide substantially the same provisions for confidentiality and penalties for disclosure of confidential information as the Statistics Act. Because these agencies have the legal authority to compel businesses to provide the same information, consent is not requested and businesses may not object to the sharing of the data.

For this survey, there are Section 11 agreements with the provincial and territorial statistical agencies of Newfoundland and Labrador, Nova Scotia, New Brunswick, Québec, Ontario, Manitoba, Saskatchewan, Alberta, British Columbia and the Yukon. The shared data will be limited to information pertaining to business establishments located within the jurisdiction of the respective province or territory.

Section 12 of the Statistics Act provides for the sharing of information with federal, provincial or territorial government organizations. Under Section 12, you may refuse to share your information with any of these organizations by writing a letter of objection to the Chief Statistician, specifying the organizations with which you do not want Statistics Canada to share your data and mailing it to the following address:

Chief Statistician of Canada
Statistics Canada
Attention of Director, Enterprise Statistics Division
150 Tunney's Pasture Driveway
Ottawa, Ontario
K1A 0T6

You may also contact us by email at statcan.esd-helpdesk-dse-bureaudedepannage.statcan@canada.ca or by fax at 613-951-6583.

For this survey, there are Section 12 agreements with the statistical agencies of Prince Edward Island, the Northwest Territories and Nunavut.

For agreements with provincial and territorial government organizations, the shared data will be limited to information pertaining to business establishments located within the jurisdiction of the respective province or territory.

Business or organization and contact information

1. Verify or provide the business or organization's legal and operating name and correct where needed.

Note: Legal name modifications should only be done to correct a spelling error or typo.

Legal Name

The legal name is one recognized by law, thus it is the name liable for pursuit or for debts incurred by the business or organization. In the case of a corporation, it is the legal name as fixed by its charter or the statute by which the corporation was created.

Modifications to the legal name should only be done to correct a spelling error or typo.

To indicate a legal name of another legal entity you should instead indicate it in question 3 by selecting 'Not currently operational' and then choosing the applicable reason and providing the legal name of this other entity along with any other requested information.

Operating Name

The operating name is a name the business or organization is commonly known as if different from its legal name. The operating name is synonymous with trade name.

  • Legal name
  • Operating name (if applicable)

2. Verify or provide the contact information of the designated business or organization contact person for this questionnaire and correct where needed.

Note: The designated contact person is the person who should receive this questionnaire. The designated contact person may not always be the one who actually completes the questionnaire.

  • First name
  • Last name
  • Title
  • Preferred language of communication
    • English
    • French
  • Mailing address (number and street)
  • City
  • Province, territory or state
  • Postal code or ZIP code
  • Country
    • Canada
    • United States
  • Email address
  • Telephone number (including area code)
  • Extension number (if applicable)
    The maximum number of characters is 10.
  • Fax number (including area code)

3. Verify or provide the current operational status of the business or organization identified by the legal and operating name above.

  • Operational
  • Not currently operational
    Why is this business or organization not currently operational?
    • Seasonal operations
      • When did this business or organization close for the season?
        • Date
      • When does this business or organization expect to resume operations?
        • Date
    • Ceased operations
      • When did this business or organization cease operations?
        • Date
      • Why did this business or organization cease operations?
        • Bankruptcy
        • Liquidation
        • Dissolution
        • Other - Specify the other reasons for ceased operations
    • Sold operations
      • When was this business or organization sold?
        • Date
      • What is the legal name of the buyer?
    • Amalgamated with other businesses or organizations
      • When did this business or organization amalgamate?
        • Date
      • What is the legal name of the resulting or continuing business or organization?
      • What are the legal names of the other amalgamated businesses or organizations?
    • Temporarily inactive but will re-open
      • When did this business or organization become temporarily inactive?
        • Date
      • When does this business or organization expect to resume operations?
        • Date
      • Why is this business or organization temporarily inactive?
    • No longer operating due to other reasons
      • When did this business or organization cease operations?
        • Date
      • Why did this business or organization cease operations?

4. Verify or provide the current main activity of the business or organization identified by the legal and operating name above.

Note: The described activity was assigned using the North American Industry Classification System (NAICS).

This question verifies the business or organization's current main activity as classified by the North American Industry Classification System (NAICS). The North American Industry Classification System (NAICS) is an industry classification system developed by the statistical agencies of Canada, Mexico and the United States. Created against the background of the North American Free Trade Agreement, it is designed to provide common definitions of the industrial structure of the three countries and a common statistical framework to facilitate the analysis of the three economies. NAICS is based on supply-side or production-oriented principles, to ensure that industrial data, classified to NAICS , are suitable for the analysis of production-related issues such as industrial performance.

The target entity for which NAICS is designed are businesses and other organizations engaged in the production of goods and services. They include farms, incorporated and unincorporated businesses and government business enterprises. They also include government institutions and agencies engaged in the production of marketed and non-marketed services, as well as organizations such as professional associations and unions and charitable or non-profit organizations and the employees of households.

The associated NAICS should reflect those activities conducted by the business or organizational units targeted by this questionnaire only, as identified in the 'Answering this questionnaire' section and which can be identified by the specified legal and operating name. The main activity is the activity which most defines the targeted business or organization's main purpose or reason for existence. For a business or organization that is for-profit, it is normally the activity that generates the majority of the revenue for the entity.

The NAICS classification contains a limited number of activity classifications; the associated classification might be applicable for this business or organization even if it is not exactly how you would describe this business or organization's main activity.

Please note that any modifications to the main activity through your response to this question might not necessarily be reflected prior to the transmitting of subsequent questionnaires and as a result they may not contain this updated information.

The following is the detailed description including any applicable examples or exclusions for the classification currently associated with this business or organization.

Description and examples

  • This is the current main activity
  • This is not the current main activity
    Provide a brief but precise description of this business or organization's main activity
    • e.g., breakfast cereal manufacturing, shoe store, software development

Main activity

5. You indicated that is not the current main activity.

Was this business or organization's main activity ever classified as: ?

  • Yes
    When did the main activity change?
    • Date
  • No

6. Search and select the industry classification code that best corresponds to this business or organization's main activity.

Select this business or organization's activity sector (optional)

  • Farming or logging operation
  • Construction company or general contractor
  • Manufacturer
  • Wholesaler
  • Retailer
  • Provider of passenger or freight transportation
  • Provider of investment, savings or insurance products
  • Real estate agency, real estate brokerage or leasing company
  • Provider of professional, scientific or technical services
  • Provider of health care or social services
  • Restaurant, bar, hotel, motel or other lodging establishment
  • Other sector

7. You have indicated that the current main activity of this business or organization is:

Main activity

Are there any other activities that contribute significantly (at least 10%) to this business or organization's revenue?

  • Yes, there are other activities
  • No, that is the only significant activity
    Provide a brief but precise description of this business or organization's secondary activity
    • e.g., breakfast cereal manufacturing, shoe store, software development

8. Approximately what percentage of this business or organization's revenue is generated by each of the following activities?

When precise figures are not available, provide your best estimates.

Approximately what percentage of this business or organization's revenue is generated by each of the following activities?
Table summary
This table contains no data. It is an example of an empty data table used by respondents to provide data to Statistics Canada.
  Percentage of revenue
Main activity  
Secondary activity  
All other activities  
Total percentage  

Reporting period information

1. What are the start and end dates of this business's or organization's most recently completed fiscal year?

For this survey, the end date should fall between April 1, 2021 and March 31, 2022.

Here are twelve common fiscal periods that fall within the targeted dates:

  • May 1, 2020 to April 30, 2021
  • June 1, 2020 to May 31, 2021
  • July 1, 2020 to June 30, 2021
  • August 1, 2020 to July 31, 2021
  • September 1, 2020 to August 31, 2021
  • October 1, 2020 to September 30, 2021
  • November 1, 2020 to October 31, 2021
  • December 1, 2020 to November 30, 2021
  • January 1, 2021 to December 31, 2021
  • February 1, 2021 to January 31, 2022
  • March 1, 2021 to February 28, 2022
  • April 1, 2021 to March 31, 2022.

Here are other examples of fiscal periods that fall within the required dates:

  • September 18, 2020 to September 15, 2021 ( e.g., floating year-end)
  • June 1, 2021 to December 31, 2021 ( e.g., a newly opened business).
  • Fiscal year start date
  • Fiscal year-end date

2. What is the reason the reporting period does not cover a full year?

Select all that apply.

  • Seasonal operations
  • New business
  • Change of ownership
  • Temporarily inactive
  • Change of fiscal year
  • Ceased operations
  • Other
    Specify reason the reporting period does not cover a full year

Additional reporting instructions

1. Throughout this questionnaire, please report financial information in thousands of Canadian dollars.

For example, an amount of $763,880.25 should be reported as:

CAN$ '000 : $764,000

I will report in the format above

Revenue

1. For the reporting period of YYYY-MM-DD to YYYY-MM-DD, what was this business's revenue from each of the following sources?

Notes:

  • a detailed breakdown may be requested in other sections
  • these questions are asked of many different industries. Some questions may not apply to this business

Report dollar amounts in thousands of Canadian dollars.

Revenue

a. Sales of goods and services ( e.g., fees, commissions, services revenue)

Report net of returns and allowances.

Sales of goods and services are defined as amounts derived from the sale of goods and services (cash or credit), falling within a business's ordinary activities. Sales should be reported net of trade discount, value added tax and other taxes based on sales.

Include:

  • sales from Canadian locations (domestic and export sales)
  • transfers to other business units or a head office of your firm.

Exclude:

  • transfers into inventory and consignment sales
  • federal, provincial and territorial sales taxes and excise duties and taxes
  • intercompany sales in consolidated financial statements.

b. Rental and leasing

Include rental or leasing of apartments, commercial buildings, land, office space, residential housing, investments in co-tenancies and co-ownerships, hotel or motel rooms, long and short term vehicle leasing, machinery or equipment, storage lockers, etc.

c. Commissions

Include commissions earned on the sale of products or services by businesses such as advertising agencies, brokers, insurance agents, lottery ticket sales, sales representatives and travel agencies - compensation could also be reported under this item (for example, compensation for collecting sales tax).

d. Subsidies (including grants, donations, fundraising and sponsorships)

Include:

  • non-repayable grants, contributions and subsidies from all levels of government
  • revenue from private sector (corporate and individual) sponsorships, donations and fundraising.

e. Royalties, rights, licensing and franchise fees

A royalty is defined as a payment received by the holder of a copyright, trademark or patent.

Include revenue received from the sale or use of all intellectual property rights of copyrighted materials such as musical, literary, artistic or dramatic works, sound recordings or the broadcasting of communication signals.

f. Dividends

Include:

  • dividend income
  • dividends from Canadian sources
  • dividends from foreign sources
  • patronage dividends.

Exclude equity income from investments in subsidiaries or affiliates.

g. Interest

Include:

  • investment revenue
  • interest from foreign sources
  • interest from Canadian bonds and debentures
  • interest from Canadian mortgage loans
  • interest from other Canadian sources.

Exclude equity income from investments in subsidiaries or affiliates.

h. All other revenue (Include intracompany transfers)

Include amounts not included in questions a. to g.

Total revenue

The sum of sub-questions a. to h.

For the reporting period of YYYY-MM-DD to YYYY-MM-DD, what was this business's revenue from each of the following sources?
Table summary
This table contains no data. It is an example of an empty data table used by respondents to provide data to Statistics Canada.
  CAN$ '000
a. Sales of goods and services
Include sales, commissions, rental and leasing revenue if they are this business's primary revenue source.
 
b. Rental and leasing
Report only if this is a secondary revenue source. If rental and leasing are your primary revenue source, report at question a.
 
c. Commissions
Report only if this is a secondary revenue source. If commissions are your primary revenue source, report at question a.
 
d. Subsidies
Include grants, donations, fundraising and sponsorships.
 
e. Royalties, rights, licensing and franchise fees  
f. Dividends  
g. Interest  
h. Other
Include intracompany transfers.
Specify all other revenue:
 
Total revenue  

E-commerce

1. For the reporting period of YYYY-MM-DD to YYYY-MM-DD, what was this business's total revenue?

Include:

  • sales of goods and services
  • rental, leasing and property management
  • commissions
  • subsidies, grants, donations, fundraising and sponsorships
  • royalties
  • rights
  • licensing and franchise fees
  • dividends, interest and other revenue.

Report dollar amounts in thousands of Canadian dollars.

Total revenue in CAN$ '000

2. For the reporting period of YYYY-MM-DD to YYYY-MM-DD, did this business have any e-commerce revenue?

E-commerce revenue: Sales of goods and services conducted over the Internet with or without online payment.

Include all revenue for which an order is received and commitment to purchase is made via the Internet, although payment can be made by other means, such as orders made on web pages, an extranet, mobile devices or Electronic Data Interchange (EDI).

Exclude orders made by telephone, facsimile or e-mail.

  • Yes
  • No

3. Of the [amount] amount reported in total revenue, what was the total e-commerce revenue?

When precise figures are not available, provide your best estimates.

Total e-commerce revenue in CAN$ '000

4. For the reporting period of YYYY-MM-DD to YYYY-MM-DD, did this business make sales over the Internet through any of the following methods?

Select all that apply.

Mobile app

Include sales through any app, or application, that is downloaded and designed to run on a handheld device such as a smartphone or tablet (for example, places where a user may download these apps, including Apple's App Store, Google Play or Blackberry App World).

Company website Include sales through a browser-based website where your organization maintains control of the content.

Third-party website Include sales through a browser-based website where a third-party maintains the structure of the website and control of the look and feel while your company only provides the product to be sold (for example, Amazon, Expedia or Etsy).

Electronic Data Interchange (EDI)

A standard format for exchanging business data. EDI is based on the use of message standards, ensuring that all participants use a common language.

  • Via a mobile app
  • Via your company website
  • Via a third-party website
  • Via Electronic Data Interchange (EDI)
  • Other
    Specify the other methods

5. Does this business have any full-time staff dedicated solely to activities related to e-commerce?

  • Yes
  • No

6. Why did this business not make sales over the Internet?

Select all that apply.

  • Goods and services do not lend themselves to online sales
  • Prefer to maintain current business model
  • Lack of skilled workers to implement and maintain e-commerce infrastructure
  • Cost of development is too high
  • Security concerns
  • Other
    Specify the other reasons

Expenses

1. For the reporting period of YYYY-MM-DD to YYYY-MM-DD, what were this business's expenses for the following items?

Notes:

  • a detailed breakdown may be requested in other sections
  • these questions are asked of many different industries. Some questions may not apply to this business

Report dollar amounts in thousands of Canadian dollars.

Expenses

a. Cost of goods sold

Many business units distinguish their costs of materials from their other business expenses (selling, general and administrative). This item is included to allow you to easily record your costs/expenses according to your normal accounting practices.

Include:

  • cost of raw materials and/or goods purchased for resale - net of discounts earned on purchases
  • freight in and duty.

Exclude all costs associated with salaries, wages, benefits, commissions and subcontracts (report at Employment costs and expenses, and Subcontracts).

b. Employment costs and expenses

b1. Salaries, wages and commissions

Please report all salaries and wages (including taxable allowances and employment commissions as defined on the T4 - Statement of Remuneration Paid) before deductions for this reporting period.

Include:

  • vacation pay
  • bonuses (including profit sharing)
  • employee commissions
  • taxable allowances ( e.g., room and board, vehicle allowances, gifts such as airline tickets for holidays)
  • severance pay.

Exclude all payments and expenses associated with casual labour and outside contract workers (report at Subcontracts).

b2. Employee benefits

Include contributions to:

  • health plans
  • insurance plans
  • employment insurance
  • pension plans
  • workers' compensation
  • association dues
  • contributions to any other employee benefits such as child care and supplementary unemployment benefit (SUB) plans
  • contributions to provincial and territorial health and education payroll taxes.

c. Subcontracts

Subcontract expense refers to the purchasing of services from outside of the company rather than providing them in-house.

Include:

  • hired casual labour and outside contract workers
  • custom work and contract work
  • subcontract and outside labour
  • hired labour.

d. Research and development fees

Expenses from activities conducted with the intention of making a discovery that could either lead to the development of new products or procedures, or to the improvement of existing products or procedures.

e. Professional and business fees

Include:

  • legal services
  • accounting and auditing fees
  • consulting fees
  • education and training fees
  • appraisal fees
  • management and administration fees
  • property management fees
  • information technology (IT) consulting and service fees (purchased)
  • architectural fees
  • engineering fees
  • scientific and technical service fees
  • other consulting fees (management, technical and scientific)
  • veterinary fees
  • fees for human health services
  • payroll preparation fees
  • all other professional and business service fees.

Exclude service fees paid to Head Office (report at All other costs and expenses).

f. Utilities

Utility expenses related to operating your business unit such as water, electricity, gas, heating and hydro.

Include:

  • diesel, fuel wood, natural gas, oil and propane
  • sewage.

Exclude:

  • energy expenses covered in your rental and leasing contracts
  • telephone, Internet and other telecommunications
  • vehicle fuel (report at All other costs and expenses).

g. Office and computer related expenses

Include:

  • office stationery and supplies, paper and other supplies for photocopiers, printers and fax machines
  • postage and courier (used in the day to day office business activity)
  • computer and peripherals upgrade expenses
  • data processing.

Exclude telephone, Internet and other telecommunication expenses (report at Telephone, Internet and other telecommunication).

h. Telephone, Internet and other telecommunication

Include:

  • internet
  • telephone and telecommunications
  • cellular telephone
  • fax machine
  • pager.

i. Business taxes, licenses and permits

Include:

  • property taxes paid directly and property transfer taxes
  • vehicle license fees
  • beverage taxes and business taxes
  • trade license fees
  • membership fees and professional license fees
  • provincial capital tax.

j. Royalties, franchise fees and memberships

Include:

  • amounts paid to holders of patents, copyrights, performing rights and trademarks
  • gross overriding royalty expenses and direct royalty costs
  • resident and non-resident royalty expenses
  • franchise fees.

Exclude Crown royalties

k. Crown charges

Federal or Provincial royalty, tax, lease or rental payments made in relation to the acquisition, development or ownership of Canadian resource properties.

Include:

  • Crown royalties
  • Crown leases and rentals
  • oil sand leases
  • stumpage fees.

l. Rental and leasing

Include:

  • lease rental expenses, real estate rental expenses, condominium fees and equipment rental expenses
  • motor vehicle rental and leasing expenses
  • studio lighting and scaffolding
  • machinery and equipment rental expenses
  • storage expenses
  • road and construction equipment rental
  • fuel and other utility costs covered in your rental and leasing contracts.

m. Repair and maintenance

Include:

  • buildings and structures
  • machinery and equipment
  • security equipment
  • vehicles
  • costs related to materials, parts and external labour associated with these expenses
  • janitorial and cleaning services and garbage removal.

n. Amortization and depreciation

Include:

  • direct cost depreciation of tangible assets and amortization of leasehold improvements
  • amortization of intangible assets ( e.g., amortization of goodwill, patents, franchises, copyrights, trademarks, deferred charges, organizational costs).

o. Insurance

Insurance recovery income should be deducted from insurance expenses.

Include:

  • professional and other liability insurance
  • motor vehicle and property insurance
  • executive life insurance
  • bonding, business interruption insurance and fire insurance.

p. Advertising, marketing, promotion, meals and entertainment

Include:

  • newspaper advertising and media expenses
  • catalogues, presentations and displays
  • tickets for theatre, concerts and sporting events for business promotion
  • fundraising expenses
  • meals, entertainment and hospitality purchases for clients.

q. Travel, meetings and conventions

Include:

  • travel expenses
  • meeting and convention expenses, seminars
  • passenger transportation ( e.g., airfare, bus, train)
  • accommodations
  • travel allowance and meals while travelling
  • other travel expenses.

r. Financial services

Include:

  • explicit service charges for financial services
  • credit and debit card commissions and charges
  • collection expenses and transfer fees
  • registrar and transfer agent fees
  • security and exchange commission fees
  • other financial service fees.

Exclude interest expenses (report at Interest expense).

s. Interest expense

Report the cost of servicing your company's debt.

Include:

  • interest
  • bank charges
  • finance charges
  • interest payments on capital leases
  • amortization of bond discounts
  • interest on short-term and long-term debt, mortgages, bonds and debentures.

t. Other non-production-related costs and expenses

Include:

  • charitable donations and political contributions
  • bad debt expense
  • loan losses
  • provisions for loan losses (minus bad debt recoveries)
  • inventory adjustments.

u. All other costs and expenses (including intracompany expenses)

Include:

  • production costs
  • pipeline operations, drilling, site restoration
  • gross overriding royalty
  • other producing property rentals
  • well operating, fuel and equipment
  • other lease rentals
  • other direct costs
  • equipment hire and operation
  • log yard expense, forestry costs, logging road costs
  • freight in and duty
  • overhead expenses allocated to cost of sales
  • other expenses
  • cash over/short (negative expense)
  • reimbursement of parent company expense
  • warranty expense
  • recruiting expenses
  • general and administrative expenses
  • interdivisional expenses
  • interfund transfer (minus expense recoveries)
  • exploration and development (including prospect/geological, well abandonment and dry holes, exploration expenses, development expenses)
  • amounts not included in sub-questions a. to t. above.

Total expenses

The sum of sub-questions a. to u.

For the reporting period of YYYY-MM-DD to YYYY-MM-DD, what were this business's expenses for the following items?
Table summary
This table contains no data. It is an example of an empty data table used by respondents to provide data to Statistics Canada.
  CAN$ '000
a. Cost of goods sold  
a1. Opening inventories  
a2. Purchases
Include raw materials, goods purchased for resale and non-returnable containers.
Exclude change in inventories.
 
a3. Closing inventories  
a4. Cost of goods sold
Opening inventories plus purchases minus closing inventories.
 
b. Employment costs and expenses
Include all employees who were issued a T4.
Exclude commissions to be paid to non-employees, report at sub-question c.
 
b1. Salaries, wages and commissions  
b2. Employee benefits  
c. Subcontracts
Include commissions to non-employees.
Exclude research and development.
 
d. Research and development fees.
Exclude in-house research and development.
 
e. Professional and business fees
e.g., legal, accounting, consulting, scientific and property management fees
 
f. Utilities
e.g., electricity, water, gas
 
g. Office and computer related expenses
e.g., office supplies, postage, computer upgrades
 
h. Telephone, Internet and other telecommunication  
i. Business taxes, licenses and permits
e.g., beverage tax, business tax, license fees, property taxes
 
j. Royalties, franchise fees and memberships
Exclude Crown royalties.
 
k. Crown charges
(for logging, mining and energy industries only)
 
l. Rental and leasing
Include land buildings, equipment, vehicles.
 
m. Repair and maintenance
Include buildings, equipment, vehicles.
 
n. Amortization and depreciation  
o. Insurance  
p. Advertising, marketing, promotion, meals and entertainment  
q. Travel, meetings and conventions  
r. Financial services
e.g., bank charges, transaction fees
 
s. Interest expense  
t. Other non-production-related costs and expenses
Include bad debts, loan losses, donations, political contributions and inventory write-down.
 
u. All other costs and expenses
Include intracompany expenses.
Specify all other costs and expenses:
 
Total expenses   

Industry characteristics

1. What were this business's sales for each of the following goods and services?

Please report all amounts in thousands of Canadian dollars.

Engineering services

a. Residential building engineering projects

All engineering services related to new and existing homes, row housing, apartments, etc. , and mixed-use buildings that are predominantly used for residential housing.

Include:

  • The provision of designs, plans and studies related to residential building projects
  • Engineering advisory services that are related to a specific residential building project
  • Engineering design services for residential building design-build projects that are provided on a subcontract basis.

Exclude:

  • Engineering advisory services that are not related to a specific project (report at question 1l)
  • Design-build contracts, in which the contracts cover both the engineering design and construction elements (report at question 1o).

b. Commercial, public and institutional building engineering projects

All engineering services related to new and existing commercial, public, and institutional buildings, including mixed-use buildings that are predominantly used for commercial, public, or institutional purposes.

Include:

  • Office buildings, shopping centers, hotels, restaurants, service stations, warehouses, bus and truck terminals, hospitals, schools, churches, prisons, stadiums and arenas, libraries and museums
  • The provision of designs, plans and studies related to commercial, public and institutional building projects
  • Engineering advisory services that are related to a specific commercial, public or institutional building project
  • Engineering design services for commercial, public or institutional building design-build projects that are provided on a subcontract basis.

Exclude:

  • Engineering advisory services that are not related to a specific project (report at question 1l)
  • Design-build contracts, in which the contracts cover both the engineering design and construction elements (report at question 1o).

Industrial and manufacturing engineering projects

c. Mining and metallurgical plant and process engineering projects

All engineering services related to mining and metallurgical facilities and processes.

Include:

  • Integrated facility and process engineering projects
  • All engineering services related to mining and metallurgical processes, such as mineral extraction, smelting, refining and metal forming.

d. Petroleum and petrochemical plant and process engineering projects

All engineering services related to petroleum and petrochemical facilities and processes, such as oil and gas platforms, refineries, pipelines and petrochemical plants

Include:

  • Integrated facility and process engineering projects
  • All engineering services related to processes for the production of petroleum and petrochemicals, such as extraction, refining, formulation and mixing.

e. Industrial machinery engineering design projects

All engineering services related to the design of industrial machinery.

Include machinery design for industries such as:

  • agriculture
  • construction
  • mining
  • metalworking
  • commercial and service industries
  • heating, ventilating and air-conditioning
  • power transmission machinery.

f. Other industrial and manufacturing engineering projects

All engineering services related to the design of industrial and manufactured products not elsewhere classified.

Other engineering services

g. Transportation engineering projects ( e.g., road, rail, air, marine)

All engineering services related to highways, roads, streets, bridges, tunnels, railways, subways, airports, harbours, canals and locks and other transportation infrastructure.

Include:

  • The provision of designs, plans and studies related to transportation projects
  • Engineering advisory services that are related to a specific transportation project
  • Engineering design services for a transportation design-build project that are provided on a subcontract basis.

Exclude:

  • Engineering advisory services not related to a specific project (report at question 1l)
  • Design-build contracts in which the contracts cover both the engineering design and construction elements (report at question 1o).

h. Municipal utility engineering projects

All engineering services related to municipal utilities.

Include:

  • The provision of designs, plans and studies related to municipal utility projects
  • Engineering advisory services that are related to a specific municipal utility project
  • Engineering design services for a municipal utility design-build project that are provided on a subcontract basis.

Exclude:

  • Engineering advisory services that are not related to a specific project (report at question 1l)
  • Design-build contracts, in which the contracts cover both the engineering design and construction elements (report at question 1o).

i. Power generation, transmission and distribution engineering projects

All engineering services related to power generating units, power transmission, distribution lines and related infrastructure.

Include:

  • The provision of designs, plans and studies related to power projects
  • Engineering advisory services that are related to a specific power project
  • Engineering design services for a power design-build project that are provided on a subcontract basis.

Exclude:

  • Engineering advisory services that are not related to a specific project (report at question 1l)
  • Design-build contracts, in which the contracts cover both the engineering design and construction elements (report at question 1o)

j. Telecommunications and broadcasting engineering projects

All engineering services related to systems for the transmission or distribution of voice, data and programming.

Include:

  • The provision of designs, plans and studies related to telecommunications and broadcasting projects
  • Engineering advisory services that are related to a specific telecommunications or broadcasting project
  • Engineering design services for a telecommunications or broadcasting design-build project that are provided on a subcontract basis.

Exclude:

  • Engineering advisory services that are not related to a specific project (report at question 1l)
  • Design-build contracts, in which the contracts cover both the engineering design and construction elements (report at question 1o).

k. Hazardous and industrial waste engineering projects

All engineering services related to systems for the collection, treatment and disposal of hazardous and industrial waste and the control of pollution.

Include:

  • The provision of designs, plans and studies related to hazardous and industrial waste projects
  • Engineering advisory services that are related to a specific hazardous or industrial waste project
  • Engineering design services for a hazardous or industrial waste design-build project that are provided on a subcontract basis.

Exclude:

  • Engineering advisory services that are not related to a specific project (report at question 1l)
  • Design-build contracts, in which the contracts cover both the engineering design and construction elements (report at question 1o).

l. Engineering advisory services ( e.g., expert witness, forensic investigation, etc. )

The provision of advice, studies and reports on engineering matters, except when the advice relates to a specific project. Advice, studies and reports provided in conjunction with a project are classified based on the project type.

Include:

  • policy analysis
  • regulatory studies
  • audits
  • forensic investigations
  • expert witness services.

m. Other engineering projects or services

Other projects or services provided by engineering firms that are not classified elsewhere.

Secondary activities

n. Project management services

Planning, supervising and co-ordinating the activities involved in carrying out a project, with regard to time, cost, performance requirements and other constraints. May also include the arrangement of finances for a project, procurement of equipment and subcontractors. Project management services refer only to situations in which project management is offered as a stand-alone service.

o. Construction services (include design-build contracts)

Constructing, repairing, renovating buildings and engineering works, as well as subdividing and developing land, through prime contracts or sub contracts.

Include:

  • construction of buildings
  • heavy and civil engineering construction
  • specialty trade contractors.

Exclude:

  • manufacturing and installing building equipment such as power boilers and manufacturing pre-fabricated buildings
  • operating highways, streets and bridges
  • house moving (transportation only)
  • project management services, when it is a primary activity
  • maintenance of rights of way for power, communication and pipe lines
  • cleaning building exteriors after construction.

p. Environmental consulting services

The provision of objective information, advice and guidance to clients concerning the preservation of air, water and soil quality, natural resource development, waste management, pollution control and other environmental issues.

Include the sale or transfer of technology to a client, which often extends to assisting the client with the organization and monitoring of solution implementation.

Exclude services that involve stand-alone implementation.

q. Other sales of goods and services

All other engineering services not defined above.

Total sales of goods and services

The sum of questions 1a. to 1q. above.

What were this business's sales for each of the following goods and services?
Table summary
This table contains no data. It is an example of an empty data table used by respondents to provide data to Statistics Canada.
  CAN$ '000
Engineering services  
a. Residential building engineering projects  
b. Commercial, public and institutional building engineering projects  
Industrial and manufacturing engineering projects  
c. Mining and metallurgical plant and process engineering projects  
d. Petroleum and petrochemical plant and process engineering projects  
e. Industrial machinery engineering design projects  
f. Other industrial and manufacturing engineering projects  
Other engineering services  
g. Transportation engineering projects
e.g., road, rail, air, marine
 
h. Municipal utility engineering projects  
i. Power generation, transmission and distribution engineering projects  
j. Telecommunications and broadcasting engineering projects  
k. Hazardous and industrial waste engineering projects  
l. Engineering advisory services
e.g., expert witness, forensic investigation
 
m. Other engineering projects or services  
Secondary activities  
n. Project management services  
o. Construction services
Include design-build contracts.
 
p. Environmental consulting services  
q. Other
Specify all other sales of goods and services:
 
Total sales of goods and services  

Industry characteristics

2. What were this business's sales by each of the following types of revenue?

Sales by type of revenue

a. Fee income

Revenues collected by the company for professional service fees rendered.

Exclude:

  • reimbursable expenses
  • subcontract fees awarded to other companies.

b. Subcontracts

Please report the value of subcontracts awarded by you to other firms or consultants.

c. Reimbursables

Include the cost of all contract-related materials used in a project that are billed to the client.

Exclude subcontract fees.

d. Other income

Revenues not elsewhere classified.

Total sales

The sum of questions a. to d. above.

What were this business's sales by each of the following types of revenue?
Table summary
This table contains no data. It is an example of an empty data table used by respondents to provide data to Statistics Canada.
  CAN$ '000
a. Fee income
Exclude reimbursable expenses, subcontract fees awarded to other companies.
 
b. Subcontracts
Report the value of jobs you subcontracted out to other companies.
 
b1. Engineering consulting  
b2. Other consulting
e.g., architects and contractors
 
c. Reimbursables
i.e., revenue received from clients to cover the cost of contract related materials
 
d. Other
Specify other income:
 
Total sales  

3. Please report sales of engineering services related to:

Environment-related projects

This section collects data on sales of selected environmental engineering services.

Include sales of related machinery, equipment and products sold as part of a service delivered.

a. Facilities that generate electrical power from the following renewable energy sources: sun, wind, water, biomass or the earth's heat

All engineering services related to facilities that generate electrical power from the following sources of renewable energy: sun, wind, water, biomass or earth's heat.

b. Municipal waste water treatment

All engineering services related to systems for the treatment of municipal waste water.

c. Municipal garbage collection and disposal

All engineering services related to municipal garbage collection and disposal systems, including recycling facilities, composting facilities, transfer stations, resource recovery facilities and landfill sites.

d. Site remediation

All engineering services related to remediation of contaminated site, including remediation of the air, soil, ground and/or surface water (fresh or salt).

e. Industrial air, water and solid waste collection, treatment and disposal projects

All engineering services related to programs for the collection, treatment, recycling and disposal of industrial air, water and solid wastes, generally to a level such that the remaining waste stream can be safely released to the natural environment or ordinary municipal systems.

Please report sales of engineering services related to:
Table summary
This table contains no data. It is an example of an empty data table used by respondents to provide data to Statistics Canada.
  CAN$ '000
a. Facilities that generate electrical power from the following renewable energy sources: sun, wind, water, biomass or the earth's heat  
b. Municipal waste water treatment  
c. Municipal garbage collection and disposal  
d. Site remediation  
e. Industrial air, water and solid waste collection, treatment and disposal projects  

Industry characteristics

4. During the reporting period of YYYY-MM-DD to YYYY-MM-DD, how many non-salaried partners and proprietors did this business have?

For unincorporated businesses, please report the number of partners and proprietors for whom earnings will be the net income of the partnership or proprietorship.

Number

Sales by type of client

1. What was this business's breakdown of sales by the following types of client?

Sales by type of client

This section is designed to measure which sector of the economy purchases your services.

Please provide a percentage breakdown of your sales by type of client.

Please ensure that the sum of percentages reported in this section equals 100%.

a. to c. Clients in Canada

a. Individuals and households

Please report the percentage of sales to individuals and households who do not represent the business or government sector.

b. Businesses

Percentage of sales sold to the business sector should be reported here.

Include sales to Crown corporations.

c. Governments, not-for-profit organizations and public institutions ( e.g., hospitals, schools)

Percentage of sales to federal, provincial, territorial and municipal governments should be reported here.

Include: sales to hospitals, schools, universities and public utilities.

d. Clients outside Canada

Please report the percentage of total sales to customers or clients located outside Canada including foreign businesses, foreign individuals, foreign institutions and/or governments.

Include sales to foreign subsidiaries and affiliates.

What was this business's breakdown of sales by the following types of client?
Table summary
This table contains no data. It is an example of an empty data table used by respondents to provide data to Statistics Canada.
  Percentage
a. Clients in Canada - individuals and households  
b. Clients in Canada - businesses  
c. Clients in Canada - governments, not-for-profit organizations and public institutions
e.g., hospitals and schools
 
d. Clients outside Canada  
Total percentage  

Sales by consumer location

1. What was the percentage breakdown of this business's sales by consumer location?

Consumer location is the location where the goods or services will ultimately be used.

If ultimate consumer location is not known, the following are acceptable substitutes:

  • shipping destination
  • client's billing address
  • location of this business's retail customers
  • location of this business's warehouses/distribution centres.
What was the percentage breakdown of this business's sales by consumer location?
Table summary
This table contains no data. It is an example of an empty data table used by respondents to provide data to Statistics Canada.
  Percentage
Newfoundland and Labrador  
Prince Edward Island  
Nova Scotia  
New Brunswick  
Quebec  
Ontario  
Manitoba  
Saskatchewan  
Alberta  
British Columbia  
Yukon  
Northwest Territories  
Nunavut  
United States  
All other countries  
Total percentage  

Sales by consumer location

International transactions - revenue received from exports

1. During the reporting period of YYYY-MM-DD to YYYY-MM-DD, did this business receive revenue from clients outside Canada for the sale of products, services, royalties, rights, licensing or franchise fees?

This section is intended to measure the value of international transactions on goods, services, royalties and licenses fees. It covers imported services and goods purchased outside Canada as well as the value of exported services and goods to clients/customers outside Canada. Please report also royalties, rights, licensing and franchise fees paid to and/or received from outside Canada. Services cover a variety of industrial, professional, trade and business services.

  • Yes
  • No

International transactions - revenue received from exports

2. What was the revenue received from clients outside Canada?

This section is intended to measure the value of international transactions on goods, services, royalties and licenses fees. It covers imported services and goods purchased outside Canada as well as the value of exported services and goods to clients/customers outside Canada. Please report also royalties, rights, licensing and franchise fees paid to and/or received from outside Canada. Services cover a variety of industrial, professional, trade and business services.

Revenue received ( CAN$ '000 )

3. What was the percentage breakdown of revenue received from clients outside Canada by goods, services and royalties?

This section is intended to measure the value of international transactions on goods, services, royalties and licenses fees. It covers imported services and goods purchased outside Canada as well as the value of exported services and goods to clients/customers outside Canada. Please report also royalties, rights, licensing and franchise fees paid to and/or received from outside Canada. Services cover a variety of industrial, professional, trade and business services.

What was the percentage breakdown of revenue received from clients outside Canada by goods, services and royalties?
Table summary
This table contains no data. It is an example of an empty data table used by respondents to provide data to Statistics Canada.
  Percentage
Goods  
Services  
Royalties, rights, licensing and franchise fees  
Total percentage  

4. What was the percentage breakdown of revenue received from clients outside Canada by country?

This section is intended to measure the value of international transactions on goods, services, royalties and licenses fees. It covers imported services and goods purchased outside Canada as well as the value of exported services and goods to clients/customers outside Canada. Please report also royalties, rights, licensing and franchise fees paid to and/or received from outside Canada. Services cover a variety of industrial, professional, trade and business services.

What was the percentage breakdown of revenue received from clients outside Canada by country?
Table summary
This table contains no data. It is an example of an empty data table used by respondents to provide data to Statistics Canada.
  Percentage
a. United States  
b. Mexico  
c. Provide the percentage of revenue received from any other countries - top 4 clients only  
c1. Other country 1
Begin entering the name of the other country by typing the first few letters to narrow down
the choices or enter your own answer
Specify other country 1:
 
c2. Other country 2
Begin entering the name of the other country by typing the first few letters to narrow down
the choices or enter your own answer
Specify other country 2:
 
c3. Other country 3
Begin entering the name of the other country by typing the first few letters to narrow down
the choices or enter your own answer
Specify other country 3:
 
c4. Other country 4
Begin entering the name of the other country by typing the first few letters to narrow down
the choices or enter your own answer
Specify other country 4:
 
Total percentage  

International transactions - purchases from outside Canada (imports)

5. During the reporting period of YYYY-MM-DD to YYYY-MM-DD, did this business make payments to suppliers outside Canada for the purchase of products, services, royalties, rights, licensing or franchise fees?

This section is intended to measure the value of international transactions on goods, services, royalties and licenses fees. It covers imported services and goods purchased outside Canada as well as the value of exported services and goods to clients/customers outside Canada. Please report also royalties, rights, licensing and franchise fees paid to and/or received from outside Canada. Services cover a variety of industrial, professional, trade and business services.

  • Yes
  • No

6. What were the payments made to suppliers outside Canada?

This section is intended to measure the value of international transactions on goods, services, royalties and licenses fees. It covers imported services and goods purchased outside Canada as well as the value of exported services and goods to clients/customers outside Canada. Please report also royalties, rights, licensing and franchise fees paid to and/or received from outside Canada. Services cover a variety of industrial, professional, trade and business services.

Payments made ( CAN$ '000 )

7. What was the percentage breakdown of payments made to suppliers outside Canada by goods, services and royalties?

This section is intended to measure the value of international transactions on goods, services, royalties and licenses fees. It covers imported services and goods purchased outside Canada as well as the value of exported services and goods to clients/customers outside Canada. Please report also royalties, rights, licensing and franchise fees paid to and/or received from outside Canada. Services cover a variety of industrial, professional, trade and business services.

What was the percentage breakdown of payments made to suppliers outside Canada by goods, services and royalties?
Table summary
This table contains no data. It is an example of an empty data table used by respondents to provide data to Statistics Canada.
  Percentage
Goods  
Services  
Royalties, rights, licensing and franchise fees  
Total percentage  

8. What was the percentage breakdown of payments made to suppliers outside Canada by country?

This section is intended to measure the value of international transactions on goods, services, royalties and licenses fees. It covers imported services and goods purchased outside Canada as well as the value of exported services and goods to clients/customers outside Canada. Please report also royalties, rights, licensing and franchise fees paid to and/or received from outside Canada. Services cover a variety of industrial, professional, trade and business services.

What was the percentage breakdown of revenue received from clients outside Canada by country?
Table summary
This table contains no data. It is an example of an empty data table used by respondents to provide data to Statistics Canada.
  Percentage
a. United States  
b. Mexico  
c. Provide the percentage of revenue received from any other countries - top 4 clients only  
c1. Other country 1
Begin entering the name of the other country by typing the first few letters to narrow down
the choices or enter your own answer
Specify other country 1:
 
c2. Other country 2
Begin entering the name of the other country by typing the first few letters to narrow down
the choices or enter your own answer
Specify other country 2:
 
c3. Other country 3
Begin entering the name of the other country by typing the first few letters to narrow down
the choices or enter your own answer
Specify other country 3:
 
c4. Other country 4
Begin entering the name of the other country by typing the first few letters to narrow down
the choices or enter your own answer
Specify other country 4:
 
Total percentage  

COVID-19

1. In response to the COVID-19 pandemic, did this business experience additional expenses in 2021 to comply with public health and safety guidelines or corporate guidelines to be allowed to operate?

Additional expenses could include: purchases of cleaning supplies, sanitation measures, protective equipment for employees or customers and costs to retrofit business operations (e.g., Plexiglass barriers, new equipment that facilitates physical distancing, additional labour costs).
Public health and safety guidelines refer to guidelines from a federal, provincial or municipal health agency.

Yes

What were the total additional expenses in fiscal year 2021?
Report in thousands of dollars. For expenses less than $500, enter "0".
When precise figures are not available, please provide your best estimate.

Additional labour costs, if applicable (CAN$ '000)
$ ,000
Other additional expenses (CAN$ '000)
$ ,000

As a result of the additional expenses or business conditions, did this business delay plans to expand operating capacity or undertake investments?

No

2. In response to the COVID-19 pandemic, in 2021 which of the following ways did this business change operating methods? 

Include both temporary and ongoing changes.

Select all that apply.

  • Adopt or expand upon a contact-less business model (e.g., e-commerce sales, drive-through, delivery, curbside pickup, offer virtual services )
  • Retrofit the workspace
  • Invest in e-commerce platforms
  • Use business intelligence technologies (e.g., cloud-based computing systems and big data analytic tools)
  • Develop new supply chains
  • Ask some or all employees to work from home
  • Introduce or accelerate the introduction of new goods and services
  • Increase prices charged to customers of certain goods and services as a result of the COVID-19 pandemic
  • Decrease prices charged to customers of certain goods and services as a result of the COVID-19 pandemic
  • Change marketing strategy (Include re-allocating marketing budget)
  • Increase marketing budget
  • Decrease marketing budget
  • Expand to new markets
  • Substitute capital for labour (e.g., automation, robots for use in producing goods and services)
  • Provided extra staff training (e.g., job specific training, managerial training, training in new technology, training in new business practices, digital skills training, data literacy skills, other training and development)
  • Downsize business activities (e.g., reduce goods and services offered)
  • Reduce labour costs (e.g., lay off employees, furlough employees, request employees take vacation, reduce hours of employees, offer early retirement package, outsource work)
  • Reduce costs other than labour costs
  • Take other actions
  • Specify the additional actions taken

    OR

  • No changes to operating methods in response to the COVID-19 pandemic

3. Due to COVID-19, did this business receive public financial relief to avoid layoffs through the Canada Emergency Wage Subsidy or Temporary 10% Wage Subsidy programs?

Yes
How much did your business obtain through these means?
Financial relief received (CAN$ '000)
$ ,000

No

Notification of intent to extract web data

1. Does this business have a website?

Statistics Canada is piloting a web data extraction initiative, also known as web scraping, which uses software to search and compile publicly available data from business websites. As a result, we may visit the website for this business to search for, and compile, additional information. This initiative should allow us to reduce the reporting burden on businesses, as well as produce additional statistical indicators to ensure that our data remain accurate and relevant.

We will do our utmost to ensure the data are collected in a manner that will not affect the functionality of the website. Any data collected will be used by Statistics Canada for statistical and research purposes only, in accordance with the agency's mandate.

Please visit Statistics Canada's web scraping initiative page for more information.

Please visit Statistics Canada's transparency and accountability page to learn more.

If you have any questions or concerns, please contact Statistics Canada Client Services, toll-free at 1-877-949-9492 (TTY: 1-800-363-7629) or by email at infostats@canada.ca.

Changes or events

1. Indicate any changes or events that affected the reported values for this business or organization, compared with the last reporting period.

Select all that apply.

  • Strike or lock-out
  • Exchange rate impact
  • Price changes in goods or services sold
  • Contracting out
  • Organizational change
  • Price changes in labour or raw materials
  • Natural disaster
  • Recession
  • Change in product line
  • Sold business or business units
  • Expansion
  • New or lost contract
  • Plant closures
  • Acquisition of business or business units
  • Other
    Specify the other changes or events:
  • No changes or events

Contact person

2. Statistics Canada may need to contact the person who completed this questionnaire for further information.

Is Provided Given Names, Provided Family Name the best person to contact?

  • Yes
  • No

Who is the best person to contact about this questionnaire?

  • First name:
  • Last name:
  • Title:
  • Email address:
  • Telephone number (including area code):
  • Extension number (if applicable):
    The maximum number of characters is 5.
  • Fax number (including area code):

Feedback

3. How long did it take to complete this questionnaire?

Include the time spent gathering the necessary information.

  • Hours:
  • Minutes:

4. Do you have any comments about this questionnaire?

Building and demolition permits - Self coding guide

The following list of codes relates to the “Type of Building Code” and the “Type of Work Code”.

Type of building codes

Indicate the code corresponding to the type of building for which the permit is issued. Generally, the intended use or uses of the structure would indicate the type of building.

Residential building codes

110 Single House, single detached home, bungalow, linked home (linked at the foundation), single family dwelling
115 Single House - Condominium
130 Mobile home
150 Seasonal Dwelling (unsuitable for year-round occupancy); cottage, summer home, house boat
210 Semi-Detached or Double (side by side), single-attached home
215 Semi-Detached or Double (side by side) - Condominium
310 Apartment, apartment building, duplex, triplex, quadruple
315 Apartment - Condominium
330 Row House, garden home, town house, carriage home, quadrex
335 Row House - Condominium

Non-residential building codes

410 Primary industry building; farm building, hunting and fishing camp, forestry service, experimental farm, community farm, animal hospital, greenhouse, fish hatchery
420 Mining building
430 Plant for manufacturing, processing and assembling goods; factory, plant, mill, bakery, cannery,  printing plant
440 Transportation terminal; bus and truck terminal, airport, railway station
450 Maintenance building; hangar, repair shop, accessory building, railway shed, aircraft hangars
460 Storage building; warehouse (for storage purposes only), industrial mall, grain elevator, locker rental, silo, quonset, refrigerated storage terminal
470 Communication building; post office, mail sorting plant, radio station, broadcasting studio, telephone exchange building, motion picture studio
480 Utility building; hydro control building, oil refinery building, water filtration building, sewage treatment building, natural gas processing plants, pollution abatement and control building, waste disposal facilities, incinerator, sorting factory
490 Engineering; parking garage, tunnel, dock
510 Retail and wholesale outlets; retail outlet, department store, photographic studio, rental service, beauty salon, hairdressing salon, lumber yard, dry cleaner, laundromat
512 Retail complex; plaza, mall, shopping center, store/office building
520 Office building; consultant’s office, doctor’s office, insurance company, bank, taxi stand, office/cafeteria, office/smoke shop
522 Office complex; office/store, office/apartment
530 Hotel, hotel/motel, motor hotel
532 Motel, cabin
534 Other accommodation; student’s residence, boarding house, religious residence, hostel, dormitory
536  Convention center, exhibition building
540 Restaurant, bar, tavern, night club, diner, donut shop
550 Theatre and performing art center; movie theatre, concert hall, opera house, cultural center
560 Indoor recreational building; sports complex, tennis court and squash, community center, arena, curling club, swimming pool
562 Outdoor recreational building; country club, golf club campground facilities, outdoor skating rink, outdoor swimming pool
570 Motor vehicle show room (new and used); car dealership, used car, motorcycle and tractor sale
572 Service station, repair garage and specialty shop; gasoline station, service station/car wash, muffler shop, transmission shop, service station/garage
580 Laboratory and research center; medical research center, industrial laboratory, observatory
590 Special building use; funeral director, crematorium, mausoleum
610 Government legislative and administration building other than office building; city hall, court of justice, embassy, parliament and senate building
612 Other government building; police station, prison, fire station, military building
620 Elementary school, kindergarten
622 Secondary school, high school, junior high school
624 Post-secondary institution; technical institute, trade school
626 University
630 Library, museum, art gallery, aquarium, botanical garden, archive building, scientific center
640 Hospital; general, military, specialized
642 Clinic, health unit; out-patient clinic, first aid station
650 Day care, nursing home, rest home, home for the blind, charitable home, detoxification center
660 Religious building; church, cathedral, temple, citadel, synagogue

Type of work codes

Indicate the code corresponding to the type of work for which the permit is issued. For definitions of the most frequent types of work see the Building and demolition permits Reporting Guide.

Notes: 
1-  Codes 07, 08, 09, 14 and 15 must always be used with residential building codes
2-  Dwellings are created by conversion of existing structure (codes 07, 08, 09) while dwelling units are lost (codes 10 and 11) by deconversion

01 New construction
02 Addition to existing building (structural extension) for non-residential only
03 Alteration and improvements
04 Foundation
05 Superstructure or part of new building
06 Mechanical
07 Conversion from single to multiple dwelling
08 Conversion from multiple to multiple dwelling
09 Conversion from non-residential to residential building
10 Deconversion from single to non-residential building
11 Deconversion from multiple to multiple or single dwelling or non-residential building
12 Installation of a pre-fabricated building
13 Additional value to previous permit(s)
14 Swimming pool
15 Garage and carport
16 Demolition

Building and demolition permits - Reporting guide

Confidentiality

Statistics Canada is prohibited by law from releasing any information it collects which could identify any person, business, or organization, unless consent has been given by the respondent or as permitted by the Statistics Act. The confidentiality provisions of the Statistics Act are not affected by either the Access to Information Act or any other legislation. Therefore, for example, the Canada Revenue Agency cannot access identifiable survey records from Statistics Canada.

Information from this survey will be used for statistical purposes only and will be published in aggregate form only.

How to submit

An email invitation is sent to respondents to complete an electronic questionnaire. Please click on the link that you would have received in your email invitation and complete questions 1-3. Data can be entered into the electronic questionnaire or can be attached in a file. There is a link available in the electronic questionnaire to download an Excel spreadsheet based questionnaire to complete. Once complete, return to the electronic questionnaire and attach in question 4.

Please refer to the self-coding guide when completing your report.

Please submit your completed report no later than 10 days after the end of the month.

Correspondence

Do you have questions regarding the survey?

Do you need help in completing the form?

Contact us

Telephone
1-877-949-9492 (TTY: 1-800-363-7629)
Monday to Friday (except holidays), from 8:00 a.m. to 7:00 p.m. (Eastern Time)
If you use an operator-assisted relay service, you can call us during regular business hours. You do not need to authorize the operator to contact us.

Email
infostats@statcan.gc.ca

If you choose to transmit the questionnaire or information to Statistics Canada by facsimile or e-mail communication, please be advised that there could be a risk of disclosure during the communication process. However, upon receipt of your communication, Statistics Canada will provide the guaranteed level of protection afforded to all information collected under the authority of the Statistics Act.

Instructions

Nil report

If no construction or demolition activity took place during the month, simply select no in question 1 in the electronic questionnaire.

Permit number

Please enter the permit number and not the folder number. If there is no permit number, please use the following format YYYYMM_N where YYYY is the reference year, MM is the reference month and N is the sequential numbering (e.g., 1, 2, 3 etc.).

Issue date of permit

The date the building permit was issued. If no specific date is on record, please use the 1st of the month.

Construction or demolition location (site address)

Please indicate the civic address of the structure. If it is not available, provide the legal address.

Type of building code

Please select the intended use of the structure to indicate the type of building. If there are multiple uses for the building (contains more than one building type), please code to the main building type based on building area and provide additional details in the description box for this permit. If you are unsure of the type of building, please code to the best of your knowledge and provide a comment in the permit description or additional permit comments box located on the next page at question 9.

Type of work code

Please select the type of work for which the permit is issued. See reporting guide for detailed descriptions. If you are unsure of the type of work, please code to the best of your knowledge and provide a comment in the permit description or additional permit comments box located on the next page at question 9.

  • New construction
    • If only one permit is issued for the construction of a new building, the term is "New Construction".
    • If more than one permit is issued for the construction of a new building, report the stage of construction for which the permit is issued.

    Examples: foundation, installation of pre-fabricated buildings, installation of equipment, etc.

  • Conversion of dwelling

    This term refers to any modification to an existing building involving the gain of dwelling units.

  • Deconversion of dwelling

    This term refers to any modification to an existing building involving the loss of dwelling units.

  • Addition to existing building (structural extension) for non-residential only

    This term describes a non-residential structural extension to an existing building.

  • Alteration and improvements
    • Any construction work undertaken for the purpose of improving or modifying an existing structure.
    • Permits issued for the replacement of built-in equipment (elevator, heating and plumbing system, etc.) should also be included.
  • Additional value to previous permits

    Please indicate any additional value to an already issued permit.

Secondary suite

Please indicate if this permit is for, or includes, a secondary suite or accessory dwelling unit. e.g. A self-contained dwelling unit that has been created within a larger principal dwelling, or on the same property in a separate structure.

Value of construction

Please round to the nearest dollar or thousand based on your response to question 2 as decimals cannot be entered.

Dwelling units created

Please indicate the number of dwelling units created by the construction of new residential structures or the conversion of existing buildings. e.g. A permit issued for a new duplex would have 2 units created, as there are two separate dwellings. A conversion could be adding additional dwellings units to a residential building, or a change of use from non-residential to residential.

Dwelling units lost

Please indicate the number of dwelling units lost through renovations to existing buildings, usually referred to as a deconversion. e.g. A permit issued to merge two apartment units into one unit would enter 1 in this field. Dwelling units lost can also be the result of a permit issued for the change of use from residential to non-residential.

Units demolished

  • Residential buildings

    Please indicate the number of dwelling units to be demolished and not the number of buildings. e.g. A permit issued for the demolition of a 10 unit apartment building would enter 10 in this field.

  • Non-residential buildings

    Please indicate the number of buildings to be demolished.

Gross area

Please round to the nearest square foot or square metre as decimals cannot be entered.

  • Residential buildings

    Please report the total enclosed living area of all floors in terms of the number of square feet or square metres. Exclude unfinished basement and garage areas.

  • Non-residential buildings

    Please report the size of all floors in terms of the number of square feet or square metres. Include basement areas.

Start date of construction (if known)

Please provide the intended start date of construction, if available. Please leave blank if unknown.

Number of storeys

Please report the number of floors that are above ground.

Non-residential Building Types

Building categories are defined as follows:

  • Industrial Buildings

    Buildings used in the transformation of goods or related to transportation and communication.

  • Commercial Buildings

    Buildings used in the trade or distribution of goods and services, including office buildings.

  • Institutional and Government Buildings

    Buildings used to house public and semi-public services such as those related to health and welfare, education, or public administration, as well as buildings used for religious services.

Residential Building Types

Single-detached – This type of dwelling is commonly called a "single house". It comprises a one-dwelling unit completely separated on all sides from any other dwelling or structure and includes homes linked below ground.

Semi-detached – This type includes each of two dwellings separated by a common wall or by a garage, but not attached to any other building and surrounded on all other sides by open space.

Row house – One of three or more dwellings joined side by side but not having any other dwellings either above or below.

Apartments – This category includes dwelling units found in a wide range of structures such as duplexes, triplexes, row-duplexes, apartments proper and dwelling units over or at the rear of a store or other non-residential structure.

Mobile home – A dwelling designed and constructed to be transported on its own chassis and capable of being moved on short notice.

Cottage – Refers to a dwelling which is unsuitable for year-round occupancy, since the structure does not have sufficient facilities to provide comfortable accommodation throughout the year.

Architectural services and landscape architectural services: CVs for operating revenue - 2020

Architectural services and landscape architectural services: CVs for operating revenue - 2020
Geography CVs for operating revenue
percent
Canada 0.01
Newfoundland and Labrador 0.03
Prince Edward Island 0.00
Nova Scotia 0.02
New Brunswick 0.00
Quebec 0.01
Ontario 0.02
Manitoba 0.01
Saskatchewan 0.01
Alberta 0.01
British Columbia 0.02
Yukon 0.00
Northwest Territories 0.00
Nunavut 0.00