Compare commits

...

2 Commits

Author SHA1 Message Date
85cfac2493
3.2.0 2025-01-20 12:44:19 -05:00
b2b9d318cc
Add amountSats to expense items 2025-01-20 12:44:04 -05:00
4 changed files with 13 additions and 3 deletions

View File

@ -3,6 +3,7 @@
"description": "Dedicated server: andromeda.kosmos.org, April 2020",
"currency": "EUR",
"amount": 39.00,
"amountSats": 422966,
"date": "2020-05-06",
"url": "https://wiki.kosmos.org/Infrastructure#Hetzner",
"tags": ["infrastructure", "server", "hetzner"]

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "@kosmos/schemas",
"version": "3.1.0",
"version": "3.2.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@kosmos/schemas",
"version": "3.1.0",
"version": "3.2.0",
"license": "MIT"
}
}

View File

@ -1,6 +1,6 @@
{
"name": "@kosmos/schemas",
"version": "3.1.0",
"version": "3.2.0",
"description": "JSON-LD schemas for Kosmos data formats",
"main": "index.js",
"scripts": {

View File

@ -60,6 +60,15 @@ module.exports = {
42.0
]
},
"amountSats": {
"type": "number",
"title": "Amount in sats",
"description": "Amount in BTC satoshis",
"default": 0,
"examples": [
21000
]
},
"date": {
"type": "string",
"format": "date",