Skip to content

Commit

Permalink
add schema for index
Browse files Browse the repository at this point in the history
  • Loading branch information
EmmaLRussell committed Dec 19, 2024
1 parent fc128c1 commit ce4f7d7
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions schema/Index.schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"version": {
"type": "string",
"pattern": "^[0-9]+.[0-9]+.[0-9]+$"
}
},
"additionalProperties": false,
"required": ["version"]
}

0 comments on commit ce4f7d7

Please sign in to comment.