Skip to content

Commit 9b0c161

Browse files
FliegendeWurstwadoon
authored andcommitted
Change DB schema
1 parent 3f95131 commit 9b0c161

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

docs/devel/ProofCaching.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,15 @@ Schema: ([schema playground](https://dashjoin.github.io/#/schema))
5656
"cachedSequents": {
5757
"type": "array",
5858
"items": {
59-
"type": "string"
59+
"type": "object",
60+
"properties": {
61+
"stepIndex": {
62+
"type": "number"
63+
},
64+
"sequent": {
65+
"type": "string"
66+
}
67+
}
6068
}
6169
},
6270
"cachedGraph": {
@@ -136,7 +144,10 @@ Example:
136144
"java123456.java"
137145
],
138146
"cachedSequents": [
139-
"a==>b"
147+
{
148+
"stepIndex": 15,
149+
"sequent": "a==>b"
150+
}
140151
],
141152
"cachedGraph": {
142153
"nodes": [

0 commit comments

Comments
 (0)