From 783b956d759419f4e99659e389eaaa812dbf50fb Mon Sep 17 00:00:00 2001 From: Daniel Raap Date: Tue, 6 Aug 2024 14:55:33 +0200 Subject: [PATCH 1/2] `exclusions` is an array --- .../using-file-specs.md | 24 +++++++++++++++---- 1 file changed, 19 insertions(+), 5 deletions(-) diff --git a/jfrog-applications/jfrog-cli/cli-for-jfrog-artifactory/using-file-specs.md b/jfrog-applications/jfrog-cli/cli-for-jfrog-artifactory/using-file-specs.md index 5ff8e488..417372ea 100644 --- a/jfrog-applications/jfrog-cli/cli-for-jfrog-artifactory/using-file-specs.md +++ b/jfrog-applications/jfrog-cli/cli-for-jfrog-artifactory/using-file-specs.md @@ -19,7 +19,10 @@ The file spec schema for the copy and move commands is as follows: "excludeProps": "[Optional]", "recursive": "[Optional, Default: 'true']", "flat": "[Optional, Default: 'false']", - "exclusions": "[Optional, Applicable only when 'pattern' is specified]", + "exclusions": [ + "Optional", + "Applicable only when 'pattern' is specified" + ], "archiveEntries": "[Optional]", "build": "[Optional]", "bundle": "[Optional]", @@ -46,7 +49,10 @@ The file spec schema for the download command is as follows: "excludeProps": "[Optional]", "recursive": "[Optional, Default: 'true']", "flat": "[Optional, Default: 'false']", - "exclusions": "[Optional, Applicable only when 'pattern' is specified]", + "exclusions": [ + "Optional", + "Applicable only when 'pattern' is specified" + ], "archiveEntries": "[Optional]", "build": "[Optional]", "bundle": "[Optional]", @@ -74,7 +80,10 @@ The file spec schema for the create and update release bundle v1 commands is as "excludeProps": "[Optional]", "recursive": "[Optional, Default: 'true']", "flat": "[Optional, Default: 'false']", - "exclusions": "[Optional, Applicable only when 'pattern' is specified]", + "exclusions": [ + "Optional", + "Applicable only when 'pattern' is specified" + ], "archiveEntries": "[Optional]", "build": "[Optional]", "bundle": "[Optional]", @@ -102,7 +111,9 @@ The file spec schema for the upload command is as follows: "regexp": "[Optional, Default: 'false']", "ant": "[Optional, Default: 'false']", "archive": "[Optional, Must be: 'zip']", - "exclusions": "[Optional]" } + "exclusions": [ + "Optional" + ] } ] } ``` @@ -119,7 +130,10 @@ The file spec schema for the search and delete commands are as follows: "props": "[Optional]", "excludeProps": "[Optional]", "recursive": "[Optional, Default: 'true']", - "exclusions": "[Optional, Applicable only when 'pattern' is specified]", + "exclusions": [ + "Optional", + "Applicable only when 'pattern' is specified" + ], "archiveEntries": "[Optional]", "build": "[Optional]", "bundle": "[Optional]", From c918379de68a0e293da12cc72956e7b78aa17b79 Mon Sep 17 00:00:00 2001 From: Daniel Raap Date: Tue, 6 Aug 2024 16:07:12 +0200 Subject: [PATCH 2/2] sort by is also an array --- .../using-file-specs.md | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/jfrog-applications/jfrog-cli/cli-for-jfrog-artifactory/using-file-specs.md b/jfrog-applications/jfrog-cli/cli-for-jfrog-artifactory/using-file-specs.md index 417372ea..478840dc 100644 --- a/jfrog-applications/jfrog-cli/cli-for-jfrog-artifactory/using-file-specs.md +++ b/jfrog-applications/jfrog-cli/cli-for-jfrog-artifactory/using-file-specs.md @@ -27,7 +27,9 @@ The file spec schema for the copy and move commands is as follows: "build": "[Optional]", "bundle": "[Optional]", "validateSymlinks": "[Optional]", - "sortBy": "[Optional]", + "sortBy": [ + "Optional" + ], "sortOrder": "[Optional, Default: 'asc']", "limit": "[Optional], "offset": [Optional] } @@ -56,7 +58,9 @@ The file spec schema for the download command is as follows: "archiveEntries": "[Optional]", "build": "[Optional]", "bundle": "[Optional]", - "sortBy": "[Optional]", + "sortBy": [ + "Optional" + ], "sortOrder": "[Optional, Default: 'asc']", "limit": [Optional], "offset": [Optional] } @@ -87,7 +91,9 @@ The file spec schema for the create and update release bundle v1 commands is as "archiveEntries": "[Optional]", "build": "[Optional]", "bundle": "[Optional]", - "sortBy": "[Optional]", + "sortBy": [ + "Optional" + ], "sortOrder": "[Optional, Default: 'asc']", "limit": [Optional], "offset": [Optional] } @@ -137,7 +143,9 @@ The file spec schema for the search and delete commands are as follows: "archiveEntries": "[Optional]", "build": "[Optional]", "bundle": "[Optional]", - "sortBy": "[Optional]", + "sortBy": [ + "Optional" + ], "sortOrder": "[Optional, Default: 'asc']", "limit": [Optional], "offset": [Optional] }