mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-08-11 18:40:34 +00:00
Add Sidon FAMM map receipt schema
This commit is contained in:
parent
364ae73d3f
commit
c2c1affbbd
1 changed files with 50 additions and 0 deletions
50
shared-data/schemas/famm_sidon_map_receipt.schema.json
Normal file
50
shared-data/schemas/famm_sidon_map_receipt.schema.json
Normal file
|
|
@ -0,0 +1,50 @@
|
||||||
|
{
|
||||||
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||||
|
"title": "FAMM Sidon Map Receipt",
|
||||||
|
"type": "object",
|
||||||
|
"required": [
|
||||||
|
"receipt_type",
|
||||||
|
"schema_version",
|
||||||
|
"set",
|
||||||
|
"is_sidon",
|
||||||
|
"pair_sums",
|
||||||
|
"collisions",
|
||||||
|
"famm",
|
||||||
|
"receipt_hash"
|
||||||
|
],
|
||||||
|
"properties": {
|
||||||
|
"receipt_type": {
|
||||||
|
"const": "famm_sidon_map_receipt"
|
||||||
|
},
|
||||||
|
"schema_version": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
|
"set": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"type": "integer"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"is_sidon": {
|
||||||
|
"type": "boolean"
|
||||||
|
},
|
||||||
|
"pair_sums": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"type": "object"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"collisions": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"type": "object"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"famm": {
|
||||||
|
"type": "object"
|
||||||
|
},
|
||||||
|
"receipt_hash": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Reference in a new issue