This commit is contained in:
Hayden 2022-12-05 12:32:54 -09:00
parent 386885b115
commit 6f36d703e7
No known key found for this signature in database
GPG key ID: 17CF79474E257545
4 changed files with 9 additions and 0 deletions

View file

@ -1925,6 +1925,9 @@ const docTemplate = `{
"date": {
"type": "string"
},
"name": {
"type": "string"
},
"value": {
"type": "number"
}

View file

@ -1917,6 +1917,9 @@
"date": {
"type": "string"
},
"name": {
"type": "string"
},
"value": {
"type": "number"
}

View file

@ -448,6 +448,8 @@ definitions:
properties:
date:
type: string
name:
type: string
value:
type: number
type: object

View file

@ -279,6 +279,7 @@ export interface ValueOverTime {
export interface ValueOverTimeEntry {
date: string;
name: string;
value: number;
}