Skip to content

Commit

Permalink
update snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
aumetra committed Dec 11, 2024
1 parent 6c50ded commit 6d71b69
Showing 1 changed file with 26 additions and 17 deletions.
43 changes: 26 additions & 17 deletions lib/mrf-manifest/tests/snapshots/snapshot_schema__json_schema.snap
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,32 @@ expression: schema
"description": "Manifest of MRF modules",
"oneOf": [
{
"description": "Manifest v1",
"type": "object",
"properties": {
"manifestVersion": {
"type": "string",
"const": "v1"
}
},
"$ref": "#/$defs/ManifestV1",
"required": [
"manifestVersion"
]
}
],
"$defs": {
"ApiVersion": {
"description": "Version of the API used",
"oneOf": [
{
"description": "Version 1",
"type": "string",
"const": "v1"
}
]
},
"ManifestV1": {
"description": "Manifest v1",
"type": "object",
"properties": {
Expand All @@ -34,10 +60,6 @@ expression: schema
}
]
},
"manifestVersion": {
"type": "string",
"const": "v1"
},
"name": {
"description": "Name of the MRF module",
"type": "string"
Expand All @@ -48,24 +70,11 @@ expression: schema
}
},
"required": [
"manifestVersion",
"apiVersion",
"name",
"version",
"activityTypes"
]
}
],
"$defs": {
"ApiVersion": {
"description": "Version of the API used",
"oneOf": [
{
"description": "Version 1",
"type": "string",
"const": "v1"
}
]
},
"Schema": {
"type": [
Expand Down

0 comments on commit 6d71b69

Please sign in to comment.