-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #146 from ptr727/develop
Develop
- Loading branch information
Showing
29 changed files
with
663 additions
and
362 deletions.
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 |
---|---|---|
@@ -1,79 +1,46 @@ | ||
{ | ||
"$schema": "https://json-schema.org/draft-06/schema", | ||
"$id": "https://raw.githubusercontent.com/ptr727/NxWitness/main/CreateMatrix/JSON/Matrix.schema.json", | ||
"title": "CreateMatrix Matrix Schema", | ||
"definitions": { | ||
"ImageInfo": { | ||
"type": [ | ||
"object", | ||
"null" | ||
], | ||
"properties": { | ||
"Name": { | ||
"type": [ | ||
"string", | ||
"null" | ||
] | ||
}, | ||
"Branch": { | ||
"type": [ | ||
"string", | ||
"null" | ||
] | ||
}, | ||
"CacheScope": { | ||
"type": [ | ||
"string", | ||
"null" | ||
] | ||
}, | ||
"Tags": { | ||
"type": [ | ||
"array", | ||
"null" | ||
], | ||
"items": { | ||
"type": [ | ||
"string", | ||
"null" | ||
] | ||
} | ||
}, | ||
"Args": { | ||
"type": [ | ||
"array", | ||
"null" | ||
], | ||
"items": { | ||
"type": [ | ||
"string", | ||
"null" | ||
] | ||
"type": "object", | ||
"properties": { | ||
"Images": { | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"Args": { | ||
"$ref": "#/$defs/listOfString" | ||
}, | ||
"Branch": { | ||
"type": "string" | ||
}, | ||
"CacheScope": { | ||
"type": "string" | ||
}, | ||
"Name": { | ||
"type": "string" | ||
}, | ||
"Tags": { | ||
"$ref": "#/$defs/listOfString" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"type": "object", | ||
"properties": { | ||
}, | ||
"$schema": { | ||
"type": [ | ||
"string", | ||
"null" | ||
] | ||
"type": "string", | ||
"readOnly": true | ||
}, | ||
"SchemaVersion": { | ||
"type": "integer", | ||
"default": 0 | ||
}, | ||
"Images": { | ||
"type": "integer" | ||
} | ||
}, | ||
"$defs": { | ||
"listOfString": { | ||
"type": "array", | ||
"items": { | ||
"$ref": "#/definitions/ImageInfo" | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
"required": [ | ||
"Images" | ||
] | ||
"title": "CreateMatrix Matrix Schema", | ||
"$id": "https://raw.githubusercontent.com/ptr727/NxWitness/main/CreateMatrix/JSON/Matrix.schema.json", | ||
"$schema": "https://json-schema.org/draft/2020-12/schema" | ||
} |
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 |
---|---|---|
@@ -1,80 +1,60 @@ | ||
{ | ||
"$schema": "https://json-schema.org/draft-06/schema", | ||
"$id": "https://raw.githubusercontent.com/ptr727/NxWitness/main/CreateMatrix/JSON/Version.schema.json", | ||
"title": "CreateMatrix Version Schema", | ||
"definitions": { | ||
"ProductInfo": { | ||
"type": [ | ||
"object", | ||
"null" | ||
], | ||
"properties": { | ||
"Product": {}, | ||
"Versions": { | ||
"type": [ | ||
"array", | ||
"null" | ||
], | ||
"items": { | ||
"$ref": "#/definitions/VersionInfo" | ||
"type": "object", | ||
"properties": { | ||
"Products": { | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"Product": { | ||
"enum": [ | ||
"None", | ||
"NxMeta", | ||
"NxWitness", | ||
"DWSpectrum" | ||
] | ||
}, | ||
"Versions": { | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"Labels": { | ||
"type": "array", | ||
"items": { | ||
"enum": [ | ||
"None", | ||
"Stable", | ||
"Latest", | ||
"Beta", | ||
"RC" | ||
] | ||
} | ||
}, | ||
"UriArm64": { | ||
"type": "string" | ||
}, | ||
"UriX64": { | ||
"type": "string" | ||
}, | ||
"Version": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"VersionInfo": { | ||
"type": [ | ||
"object", | ||
"null" | ||
], | ||
"properties": { | ||
"Version": { | ||
"type": [ | ||
"string", | ||
"null" | ||
] | ||
}, | ||
"UriX64": { | ||
"type": [ | ||
"string", | ||
"null" | ||
] | ||
}, | ||
"UriArm64": { | ||
"type": [ | ||
"string", | ||
"null" | ||
] | ||
}, | ||
"Labels": { | ||
"type": [ | ||
"array", | ||
"null" | ||
], | ||
"items": {} | ||
} | ||
} | ||
} | ||
}, | ||
"type": "object", | ||
"properties": { | ||
"$schema": { | ||
"type": [ | ||
"string", | ||
"null" | ||
] | ||
"type": "string", | ||
"readOnly": true | ||
}, | ||
"SchemaVersion": { | ||
"type": "integer", | ||
"default": 0 | ||
}, | ||
"Products": { | ||
"type": "array", | ||
"items": { | ||
"$ref": "#/definitions/ProductInfo" | ||
} | ||
"type": "integer" | ||
} | ||
}, | ||
"required": [ | ||
"Products" | ||
] | ||
"title": "CreateMatrix Version Schema", | ||
"$id": "https://raw.githubusercontent.com/ptr727/NxWitness/main/CreateMatrix/JSON/Version.schema.json", | ||
"$schema": "https://json-schema.org/draft/2020-12/schema" | ||
} |
Oops, something went wrong.