File size: 1,242 Bytes
bfbd703 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "ToricGT UniProt FoT Graphified Record",
"type": "object",
"required": [
"record_id",
"dataset",
"source_file",
"source_row_index",
"entry_id",
"task_family",
"text",
"graph_json",
"forest_json",
"metadata_json",
"content_hash",
"group_hash",
"split",
"split_cluster",
"quality_flags_json"
],
"properties": {
"record_id": {"type": "string"},
"dataset": {"type": "string"},
"source_file": {"type": "string"},
"source_row_index": {"type": "integer", "minimum": 0},
"entry_id": {"type": "string"},
"task_family": {"type": "string"},
"sequence": {"type": "string"},
"annotation_text": {"type": "string"},
"text": {"type": "string"},
"graph_json": {"type": "string"},
"forest_json": {"type": "string"},
"metadata_json": {"type": "string"},
"content_hash": {"type": "string", "pattern": "^[0-9a-f]{64}$"},
"group_hash": {"type": "string", "pattern": "^[0-9a-f]{64}$"},
"split": {"enum": ["train", "validation", "test"]},
"split_cluster": {"type": "string"},
"quality_flags_json": {"type": "string"}
},
"additionalProperties": false
}
|