Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions tools/projmgr/schemas/common.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@
"TargetTypes": {
"title": "target-types:\nDocumentation: https://open-cmsis-pack.github.io/cmsis-toolbox/YML-Input-Format/#target-types",
"type": "array",
"description": "Target type declaration list that allow to switch among different targets.",
"description": "List of target type names that allow to switch between different target systems.",
"uniqueItems": true,
"minItems": 1,
"items": { "$ref": "#/definitions/TargetType" }
Expand Down Expand Up @@ -523,8 +523,9 @@
"required" : [ "type"]
},
"BuildTypes": {
"title": "build-types:\nDocumentation: https://open-cmsis-pack.github.io/cmsis-toolbox/YML-Input-Format/#build-types",
"type": "array",
"description": "List of build type declarations that allow to switch among different build settings such as: Release, Debug, Test.",
"description": "List of build type names that allow to switch between different build settings such as: Release, Debug, Test.",
"uniqueItems": true,
"minItems": 1,
"items": { "$ref": "#/definitions/BuildType" }
Expand Down Expand Up @@ -1500,7 +1501,7 @@
"title": "pack:\nDocumentation: https://open-cmsis-pack.github.io/cmsis-toolbox/YML-Input-Format/#pack",
"type": "string",
"pattern": "^([a-zA-Z0-9_ \\.-]+)((::[a-zA-Z0-9_ \\.\\*-]+)(@(>=|\\~|\\^)?([0-9]+\\.[0-9]+\\.[0-9]+((\\+|\\-)[a-zA-Z0-9_\\.\\+-]+)?))?)?$",
"description": "Name of a software pack.\nFormat: Vendor [:: Pack [@[>=|~|^] version]].\nExample: ARM::[email protected]."
"description": "Name of a software pack with the following format:\n [vendor ::] pack-name # Use the latest version of the pack\n [vendor ::] pack-name@version # With exact version\n [vendor ::] pack-name@>=version # With version equal or higher\n [vendor ::] pack-name@^version # With version equal or higher but the same major version\n [vendor ::] pack-name@~version # With version equal or higher but the same major and minor version"
},
"VersionlessPackID": {
"title": "pack:\nDocumentation: https://open-cmsis-pack.github.io/cmsis-toolbox/YML-Input-Format/#pack",
Expand Down
Loading