Change in Unemployment Level
Dataset schema
JSON Schema
The following JSON object is a standardized description of your dataset's schema. More about JSON schema.
- "title":"unemployed-persons",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/unemployed-persons"
}
] - "definitions":{
- "unemployed-persons":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/unemployed-persons_records"
}
}
} - "records":
} - "properties":
- "unemployed-persons_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "year":,{
- "type":"string",
- "format":"date",
- "title":"Year",
- "description":""
} - "month":,{
- "type":"string",
- "title":"Month",
- "description":""
} - "date":,{
- "type":"string",
- "format":"date",
- "title":"Date",
- "description":""
} - "value":{
- "type":"number",
- "title":"Unemployment Level in thousands",
- "description":""
}
} - "year":
}
} - "fields":
} - "properties":
} - "unemployed-persons":