mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
Add MarkovJunior 16D shim receipt schema
This commit is contained in:
parent
a75babda47
commit
3bba601074
1 changed files with 43 additions and 0 deletions
|
|
@ -0,0 +1,43 @@
|
|||
{
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"title": "FAMM MarkovJunior 16D Shim Receipt",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"receipt_type",
|
||||
"schema_version",
|
||||
"source",
|
||||
"rules",
|
||||
"anchors",
|
||||
"nuvmap",
|
||||
"receipt_hash"
|
||||
],
|
||||
"properties": {
|
||||
"receipt_type": {
|
||||
"const": "famm_markovjunior_16d_shim_receipt"
|
||||
},
|
||||
"schema_version": {
|
||||
"type": "string"
|
||||
},
|
||||
"source": {
|
||||
"type": "object"
|
||||
},
|
||||
"rules": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object"
|
||||
}
|
||||
},
|
||||
"anchors": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object"
|
||||
}
|
||||
},
|
||||
"nuvmap": {
|
||||
"type": "object"
|
||||
},
|
||||
"receipt_hash": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue