-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Leonty Chudinov <[email protected]>
- Loading branch information
Leonty Chudinov
committed
Jan 31, 2022
1 parent
8399a30
commit 526c4eb
Showing
5 changed files
with
197 additions
and
3 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,74 @@ | ||
{ | ||
"name": "zowe_yaml_schema", | ||
"$id": "http//zowe.org/schemas/yaml-2.0.json", | ||
"type": "object", | ||
"required": [ | ||
"zowe", | ||
"externalPort" | ||
], | ||
"properties": { | ||
"zowe": { | ||
"properties": { | ||
"setup": { | ||
"type": "object", | ||
"properties": { | ||
"mvs": { | ||
"type": "object", | ||
"description": "MVS data set related configurations", | ||
"properties": { | ||
"proclib": { | ||
"$ref": "#/$defs/dataset" | ||
}, | ||
"parmlib": { | ||
"$ref": "#/$defs/dataset" | ||
}, | ||
"hlq": { | ||
"description": "where Zowe MVS data sets will be installed", | ||
"$ref": "#/$defs/dataset" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"job": { | ||
"type": "object", | ||
"required": [ | ||
"name", | ||
"prefix" | ||
], | ||
"properties": { | ||
"name": { | ||
"$ref": "#/$defs/jobname" | ||
}, | ||
"prefix": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"externalPort": { | ||
"type": "integer" | ||
}, | ||
"logDirectory": { | ||
"type": "string" | ||
} | ||
}, | ||
"$defs": { | ||
"dataset": { | ||
"type": "string", | ||
"minLength": 3, | ||
"maxLength": 44 | ||
}, | ||
"jobname": { | ||
"type": "string", | ||
"minLength": 3, | ||
"maxLength": 8 | ||
}, | ||
"tcpPort": { | ||
"type": "integer", | ||
"minimum": 1024, | ||
"maximum": 65535 | ||
} | ||
} | ||
} |
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