Skip to content

Commit

Permalink
Merge pull request #38 from elixir-europe/dev
Browse files Browse the repository at this point in the history
Release v1.10.0
  • Loading branch information
theisuru authored Jun 7, 2022
2 parents 8ef8087 + 4e64146 commit c4d86a7
Show file tree
Hide file tree
Showing 27 changed files with 9,790 additions and 874 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ node_modules/
.idea/
.DS_Store
log/
*.iml
*.iml
server.pid
10 changes: 10 additions & 0 deletions examples/objects/draft2019-9-support.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"sample_labels": [
{
"label": "test1"
},
{
"label": "test2"
}
]
}
24 changes: 24 additions & 0 deletions examples/schemas/draft2019-9-support-schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"$schema": "https://json-schema.org/draft/2019-09/schema",
"$id": "test_schema_X",
"type": "object",
"required": ["sample_labels"],
"additionalProperties": false,
"properties": {
"sample_labels": {
"type": "array",
"minItems": 1,
"additionalProperties": false,
"items": {
"type": "object",
"required": ["label"],
"additionalProperties": false,
"properties": {
"label": {
"type": "string"
}
}
}
}
}
}
Loading

0 comments on commit c4d86a7

Please sign in to comment.