diff --git a/plugins/nf-validation/src/testResources/nextflow_schema_file_cloud_path.json b/plugins/nf-validation/src/testResources/nextflow_schema_file_cloud_path.json new file mode 100644 index 0000000..69860f0 --- /dev/null +++ b/plugins/nf-validation/src/testResources/nextflow_schema_file_cloud_path.json @@ -0,0 +1,26 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema", + "$id": "https://raw.githubusercontent.com/nf-core/testpipeline/master/nextflow_schema.json", + "title": "nf-core/testpipeline pipeline parameters", + "description": "this is a test", + "type": "object", + "definitions": { + "file_patterns": { + "title": "Input/output options", + "type": "object", + "fa_icon": "fas fa-terminal", + "properties": { + "input": { + "type": "string", + "format": "file-path", + "exists": true + } + } + } + }, + "allOf": [ + { + "$ref": "#/definitions/file_patterns" + } + ] +} \ No newline at end of file