Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiasNx committed Sep 29, 2022
1 parent 5214444 commit a59fa21
Show file tree
Hide file tree
Showing 5 changed files with 77 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .vscode/settings.json
@@ -0,0 +1,22 @@
{
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#c119bc",
"activityBar.background": "#c119bc",
"activityBar.foreground": "#e7e7e7",
"activityBar.inactiveForeground": "#e7e7e799",
"activityBarBadge.background": "#a5a916",
"activityBarBadge.foreground": "#15202b",
"commandCenter.border": "#e7e7e799",
"sash.hoverBorder": "#c119bc",
"statusBar.background": "#941390",
"statusBar.foreground": "#e7e7e7",
"statusBarItem.hoverBackground": "#c119bc",
"statusBarItem.remoteBackground": "#941390",
"statusBarItem.remoteForeground": "#e7e7e7",
"titleBar.activeBackground": "#941390",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.inactiveBackground": "#94139099",
"titleBar.inactiveForeground": "#e7e7e799"
},
"peacock.color": "#941390"
}
Empty file added jsonValidator/invalid.json
Empty file.
8 changes: 8 additions & 0 deletions jsonValidator/jsonArrayNested.flux
@@ -0,0 +1,8 @@
default infile = FLUX_DIR + "kiCampus-metadata.json";


infile
| open-file
| as-lines
| validate-json("https://dini-ag-kim.github.io/amb/draft/schemas/schema.json", writeValid=FLUX_DIR + "valid.json", writeInvalid=FLUX_DIR + "invalid.json")
| print;

0 comments on commit a59fa21

Please sign in to comment.