Skip to content

Commit c2afe19

Browse files
committed
fix(visual-ml-model): point schema $id at the renamed Tools/ path
The $id is an identifier string (the validator loads the schema by filesystem path), but commit 627c231 set it to the in-repo path; keep it consistent with the renamed Tools/ directory. Signed-off-by: riita10069 <ryota10069.tech5.jizi@gmail.com>
1 parent db1f223 commit c2afe19

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Tools/visual-ml-model/schema/arch_v1.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://json-schema.org/draft/2020-12/schema",
3-
"$id": "https://github.com/autowarefoundation/auto_e2e/tools/visual-ml-model/schema/arch_v1.schema.json",
3+
"$id": "https://github.com/autowarefoundation/auto_e2e/Tools/visual-ml-model/schema/arch_v1.schema.json",
44
"title": "VisualMLModel Architecture-Diagram IR v1.0",
55
"description": "A GENERAL left-to-right node+edge graph that mimics a hand-drawn paper/README architecture figure: inputs on the LEFT, outputs/losses on the RIGHT, with branching, merging, dashed loss/auxiliary edges, and grouping banners (e.g. 'ONLY DURING TRAINING'). Unlike flow_v1 (an ordered LINEAR spine), this is an explicit directed graph laid out automatically into left-to-right layers. Rendered as a deterministic dependency-free inline SVG. NOTE: nodes/edges/groups are TOP-LEVEL (no 'graph' key) so this never collides with the ir_v1 structural validator.",
66
"type": "object",

0 commit comments

Comments
 (0)