Skip to content
This repository was archived by the owner on Sep 27, 2024. It is now read-only.

Commit 74d7e6d

Browse files
authored
Fix broken reference in JSON schemas (#292)
1 parent 45d3d4c commit 74d7e6d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

model_card_toolkit/schema/v0.0.1/model_card.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@
219219
"collection": {
220220
"description": "A collection of graphics.",
221221
"type": "array",
222-
"items": { "$ref": "#definitions/graphic" }
222+
"items": { "$ref": "#/definitions/graphic" }
223223
}
224224
}
225225
},

model_card_toolkit/schema/v0.0.2/model_card.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@
287287
"collection": {
288288
"description": "A collection of graphics.",
289289
"type": "array",
290-
"items": { "$ref": "#definitions/graphic" }
290+
"items": { "$ref": "#/definitions/graphic" }
291291
}
292292
}
293293
},

0 commit comments

Comments
 (0)