Farmaanaa commited on
Commit
2faf6e7
·
verified ·
1 Parent(s): 02d6597

Create datapackage.json

Browse files
Files changed (1) hide show
  1. datapackage.json +62 -0
datapackage.json ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "bitcoin_price_timeseries",
3
+ "title": "Bitcoin Price Time Series Data",
4
+ "description": "Minute-by-minute price and volume data for Bitcoin, providing valuable insights into market trends and volatility. Data cleaned and prepared by farmaanaa.ir.",
5
+ "keywords": ["bitcoin", "cryptocurrency", "btc", "timeseries", "financial_data", "trading", "volume", "price_data"],
6
+ "licenses": [
7
+ {
8
+ "name": "cc-by-4.0",
9
+ "title": "Creative Commons Attribution 4.0 International",
10
+ "path": "https://creativecommons.org/licenses/by/4.0/"
11
+ }
12
+ ],
13
+ "sources": [
14
+ {
15
+ "title": "Cryptocurrency Exchange",
16
+ "path": "https://www.exampleexchange.com"
17
+ }
18
+ ],
19
+ "resources": [
20
+ {
21
+ "path": "bitcoin_price_timeseries.csv",
22
+ "name": "bitcoin_price_data",
23
+ "profile": "tabular-data-resource",
24
+ "format": "csv",
25
+ "schema": {
26
+ "fields": [
27
+ {
28
+ "name": "Timestamp",
29
+ "type": "datetime",
30
+ "description": "The exact date and time of the data point."
31
+ },
32
+ {
33
+ "name": "Open",
34
+ "type": "number",
35
+ "description": "The price at the beginning of the time interval."
36
+ },
37
+ {
38
+ "name": "High",
39
+ "type": "number",
40
+ "description": "The highest price reached during the interval."
41
+ },
42
+ {
43
+ "name": "Low",
44
+ "type": "number",
45
+ "description": "The lowest price reached during the interval."
46
+ },
47
+ {
48
+ "name": "Close",
49
+ "type": "number",
50
+ "description": "The price at the end of the time interval."
51
+ },
52
+ {
53
+ "name": "Volume",
54
+ "type": "number",
55
+ "description": "The total trading volume during the interval."
56
+ }
57
+ ]
58
+ }
59
+ }
60
+ ],
61
+ "created": "2025-07-03"
62
+ }