Skip to content

Commit

Permalink
Update experiment metadata schema to v1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
marc-white committed Sep 13, 2024
1 parent e67d2ba commit 6062344
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions src/access_nri_intake/data/metadata_schema_experiment.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"$id": "https://raw.githubusercontent.com/ACCESS-NRI/schema/main/au.org.access-nri/model/output/experiment-metadata/1-0-2.json",
"$id": "https://raw.githubusercontent.com/ACCESS-NRI/schema/main/au.org.access-nri/model/output/experiment-metadata/1-0-3.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Experiment metadata",
"description": "The metadata associated with a model experiment",
"type": "object",
"properties": {
"schema_version": {
"const": "1-0-2",
"const": "1-0-3",
"description": "The version of the schema (string)"
},
"name": {
Expand Down Expand Up @@ -104,8 +104,13 @@
"description": "The variable(s) included in the experiment (string)"
},
"nominal_resolution": {
"type": "array",
"items": {"type": ["string", "null"]},
"oneOf": [
{"type": ["string", "null"]},
{
"type": "array",
"items": {"type": ["string", "null"]}
}
],
"description": "The nominal resolution(s) of model(s) used in the experiment (string)"
},
"version": {
Expand Down

0 comments on commit 6062344

Please sign in to comment.