bitcoin_price_timeseries / datapackage.json
Farmaanaa's picture
Create datapackage.json
2faf6e7 verified
{
"name": "bitcoin_price_timeseries",
"title": "Bitcoin Price Time Series Data",
"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.",
"keywords": ["bitcoin", "cryptocurrency", "btc", "timeseries", "financial_data", "trading", "volume", "price_data"],
"licenses": [
{
"name": "cc-by-4.0",
"title": "Creative Commons Attribution 4.0 International",
"path": "https://creativecommons.org/licenses/by/4.0/"
}
],
"sources": [
{
"title": "Cryptocurrency Exchange",
"path": "https://www.exampleexchange.com"
}
],
"resources": [
{
"path": "bitcoin_price_timeseries.csv",
"name": "bitcoin_price_data",
"profile": "tabular-data-resource",
"format": "csv",
"schema": {
"fields": [
{
"name": "Timestamp",
"type": "datetime",
"description": "The exact date and time of the data point."
},
{
"name": "Open",
"type": "number",
"description": "The price at the beginning of the time interval."
},
{
"name": "High",
"type": "number",
"description": "The highest price reached during the interval."
},
{
"name": "Low",
"type": "number",
"description": "The lowest price reached during the interval."
},
{
"name": "Close",
"type": "number",
"description": "The price at the end of the time interval."
},
{
"name": "Volume",
"type": "number",
"description": "The total trading volume during the interval."
}
]
}
}
],
"created": "2025-07-03"
}