Datasets:
| { | |
| "$schema": "https://json-schema.org/draft/2020-12/schema", | |
| "title": "GWAM_Data graph frame v1", | |
| "type": "object", | |
| "required": [ | |
| "frame_index", | |
| "nodes", | |
| "state_edges" | |
| ], | |
| "properties": { | |
| "frame_index": { | |
| "type": "integer", | |
| "minimum": 0 | |
| }, | |
| "nodes": { | |
| "type": "array" | |
| }, | |
| "state_edges": { | |
| "type": "array" | |
| }, | |
| "globals": { | |
| "type": "object" | |
| } | |
| } | |
| } |