-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdatapackage.json
75 lines (75 loc) · 1.72 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
68
69
70
71
72
73
74
75
{
"name": "ummalqura-calendar",
"title": "Umm al-Qura Comparative Calendar",
"description": "A dataset of Umm al-Qura comparative calendar including the Hijri years 1343-1500 AH.",
"keywords": [
"hijri",
"gregorian",
"date",
"ummalqura",
"saudi",
"calendar"
],
"homepage": "https://github.com/dralshehri/ummalqura-calendar",
"licenses": [
{
"name": "CC0-1.0",
"path": "https://github.com/dralshehri/ummalqura-calendar/blob/main/LICENSE",
"title": "Creative Commons Zero v1.0 Universal"
}
],
"resources": [
{
"path": "data/ummalqura-calendar.csv",
"name": "ummalqura-calendar",
"format": "csv",
"mediatype": "text/csv",
"encoding": "utf-8",
"schema": {
"fields": [
{
"name": "rjd",
"type": "integer",
"title": "Reduced Julian Day",
"constraints": {
"unique": true
}
},
{
"name": "hy",
"type": "integer",
"title": "Hijri year"
},
{
"name": "hm",
"type": "integer",
"title": "Hijri month"
},
{
"name": "hd",
"type": "integer",
"title": "Hijri day"
},
{
"name": "gy",
"type": "integer",
"title": "Gregorian year"
},
{
"name": "gm",
"type": "integer",
"title": "Gregorian month"
},
{
"name": "gd",
"type": "integer",
"title": "Gregorian day"
}
],
"missingValues": [
""
]
}
}
]
}