-
Notifications
You must be signed in to change notification settings - Fork 554
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
schema: Add 'test' target to the Makefile
And fill in some known-good and known-bad examples. We can make this as detailed as we want, but this commit just adds enough to know that: * The full-file spec examples are valid. * The JSON Schema can distinguish valid examples from invalid JSON. This will help catch JSON Schema typos like those being addressed by [1]. [1]: #784 Signed-off-by: W. Trevor King <wking@tremily.us>
- Loading branch information
Showing
7 changed files
with
423 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"ociVersion": "1.0.0", | ||
"platform": { | ||
"os": "linux", | ||
"arch": "amd64" | ||
}, | ||
"root": { | ||
"path": "rootfs" | ||
}, | ||
"process": { | ||
"cwd": "/", | ||
"args": ["sh"], | ||
"user": { | ||
"uid": 0, | ||
"gid": 0 | ||
} | ||
} | ||
} |
Oops, something went wrong.