From bc6c038f9969578efe987d010cedc81f98214668 Mon Sep 17 00:00:00 2001 From: Toni Hermoso Pulido Date: Thu, 17 Oct 2024 20:34:58 +0200 Subject: [PATCH] changed schema --- nextflow_schema.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/nextflow_schema.json b/nextflow_schema.json index c44b602..32b5bce 100644 --- a/nextflow_schema.json +++ b/nextflow_schema.json @@ -1,10 +1,10 @@ { - "$schema": "http://json-schema.org/draft-07/schema", + "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/biocorecrg/exorthist/master/nextflow_schema.json", "title": "ExOrthist pipeline parameters", "description": "Schema for the parameters of your ExOrthist pipeline", "type": "object", - "definitions": { + "$defs": { "input_output_options": { "title": "Input/Output Options", "type": "object", @@ -113,16 +113,16 @@ }, "allOf": [ { - "$ref": "#/definitions/input_output_options" + "$ref": "#/$defs/input_output_options" }, { - "$ref": "#/definitions/analysis_parameters" + "$ref": "#/$defs/analysis_parameters" }, { - "$ref": "#/definitions/additional_data" + "$ref": "#/$defs/additional_data" }, { - "$ref": "#/definitions/notification_options" + "$ref": "#/$defs/notification_options" } ] }