mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
Add Semantic Mass Z receipt schema
This commit is contained in:
parent
ac0f959cf6
commit
f7283be9c1
1 changed files with 59 additions and 0 deletions
59
shared-data/schemas/famm_semantic_mass_z_receipt.schema.json
Normal file
59
shared-data/schemas/famm_semantic_mass_z_receipt.schema.json
Normal file
|
|
@ -0,0 +1,59 @@
|
|||
{
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"title": "FAMM Semantic Mass Z Receipt",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"receipt_type",
|
||||
"schema_version",
|
||||
"basis_layer",
|
||||
"ar_order",
|
||||
"coefficients",
|
||||
"poles",
|
||||
"residual",
|
||||
"route_decision",
|
||||
"receipt_sha256"
|
||||
],
|
||||
"properties": {
|
||||
"receipt_type": {
|
||||
"const": "famm_semantic_mass_z_receipt"
|
||||
},
|
||||
"schema_version": {
|
||||
"type": "string"
|
||||
},
|
||||
"basis_layer": {
|
||||
"const": "MASS_Z_ACCEL"
|
||||
},
|
||||
"ar_order": {
|
||||
"type": "integer",
|
||||
"minimum": 1
|
||||
},
|
||||
"sequence_len": {
|
||||
"type": "integer",
|
||||
"minimum": 1
|
||||
},
|
||||
"coefficients": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "number"
|
||||
}
|
||||
},
|
||||
"poles": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "object"
|
||||
}
|
||||
},
|
||||
"residual": {
|
||||
"type": "object"
|
||||
},
|
||||
"route_decision": {
|
||||
"type": "object"
|
||||
},
|
||||
"no_drift_boundary": {
|
||||
"type": "string"
|
||||
},
|
||||
"receipt_sha256": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue