mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
Add logogram chirality witness schema
This commit is contained in:
parent
02471b9dde
commit
aec95d2a82
1 changed files with 68 additions and 0 deletions
|
|
@ -0,0 +1,68 @@
|
|||
{
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"title": "FAMM Logogram Chirality Witness",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"receipt_type",
|
||||
"schema_version",
|
||||
"symbol_id",
|
||||
"payload_hash",
|
||||
"chirality_witness",
|
||||
"residual_policy",
|
||||
"benefit_gate",
|
||||
"receipt_hash"
|
||||
],
|
||||
"properties": {
|
||||
"receipt_type": {
|
||||
"const": "famm_logogram_chirality_witness"
|
||||
},
|
||||
"schema_version": {
|
||||
"type": "string"
|
||||
},
|
||||
"symbol_id": {
|
||||
"type": "string"
|
||||
},
|
||||
"payload_hash": {
|
||||
"type": "string"
|
||||
},
|
||||
"chirality_witness": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
"direction",
|
||||
"handedness",
|
||||
"phase",
|
||||
"placement",
|
||||
"mode"
|
||||
],
|
||||
"properties": {
|
||||
"direction": {
|
||||
"type": "string"
|
||||
},
|
||||
"handedness": {
|
||||
"type": "string"
|
||||
},
|
||||
"phase": {
|
||||
"type": "number"
|
||||
},
|
||||
"placement": {
|
||||
"type": "string"
|
||||
},
|
||||
"mode": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"compatibility": {
|
||||
"type": "object"
|
||||
},
|
||||
"residual_policy": {
|
||||
"type": "string"
|
||||
},
|
||||
"benefit_gate": {
|
||||
"type": "object"
|
||||
},
|
||||
"receipt_hash": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue