forked from mikehiggins/hk-govt-land-sales
-
Notifications
You must be signed in to change notification settings - Fork 1
/
datapackage.json
67 lines (67 loc) · 1.86 KB
/
datapackage.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name" : "hk-govt-land-sales",
"title" : "Hong Kong Government Land Sales",
"description" : "A dataset of Hong Kong Government land sales",
"licenses" : [],
"sources" : [
{
"name" : "Lands Department - The Government of the Hong Kong SAR",
"web" : "http://www.landsd.gov.hk/"
}
],
"resources": [
{
"url" : "https://raw.github.com/mikehiggins/hk-govt-land-sales/master/data/land-sales.json",
"path" : "data/land-sales.json",
"format" : "json",
"contributors":[ {
"name": "Mike Higgins",
"email": "mike<at>higgins.hk"
}],
"schema": {
"fields": [
{
"name": "date",
"description": "The date of the land sale",
"type": "date"
},
{
"name": "disposal_type",
"description": "The method of disposal",
"type": "string"
},
{
"name": "lot_no",
"description": "The lot number of the subject property or land parcel",
"type": "string"
},
{
"name": "address",
"description": "Address or lot location description",
"type": "string"
},
{
"name": "user",
"description": "The allowed or permitted land use",
"type": "string"
},
{
"name": "area_sqm",
"description": "The land area in square metres (sqm)",
"type": "number"
},
{
"name": "premium",
"description": "The premium paid in Hong Kong Dollars (HKD)",
"type": "number"
},
{
"name": "purchaser",
"description": "The purchaser of the land after the land sale or auction",
"type": "string"
}
]
}
}
]
}