Skip to content

Commit

Permalink
Fix broken reference in JSON schemas (#292)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeongukjae committed Jul 26, 2023
1 parent 45d3d4c commit 74d7e6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion model_card_toolkit/schema/v0.0.1/model_card.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@
"collection": {
"description": "A collection of graphics.",
"type": "array",
"items": { "$ref": "#definitions/graphic" }
"items": { "$ref": "#/definitions/graphic" }
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion model_card_toolkit/schema/v0.0.2/model_card.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@
"collection": {
"description": "A collection of graphics.",
"type": "array",
"items": { "$ref": "#definitions/graphic" }
"items": { "$ref": "#/definitions/graphic" }
}
}
},
Expand Down

0 comments on commit 74d7e6d

Please sign in to comment.