All Downloads are FREE. Search and download functionalities are using the official Maven repository.

verna.commonactivities.taverna-xpath-activity.2.1.0-incubating.source-code.schema.json Maven / Gradle / Ivy

{
  "http://purl.org/dc/terms/rights": "Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.  See the NOTICE file distributed with this work for additional information regarding copyright ownership.  The ASF licenses this file to You under the Apache License, Version 2.0 (the 'License'); you may not use this file except in compliance with the License.  You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the specific language governing permissions and limitations under the License.",
  "http://purl.org/dc/terms/license": {"@id": "http://www.apache.org/licenses/LICENSE-2.0"},

    "$schema": "http://json-schema.org/draft-03/schema#",
    "id": "http://ns.taverna.org.uk/2010/activity/xpath.schema.json",
    "title": "XPath activity configuration",
    "type": "object",
    "properties": {
        "@context": {
            "description": "JSON-LD context for interpreting the configuration as RDF",
            "required": true,
            "enum": ["http://ns.taverna.org.uk/2010/activity/xpath.context.json"]
        },
        "exampleXmlDocument": {
            "title": "Example XML document",
            "type": "string",
            "required": false
        },
        "xpathExpression": {
            "title": "XPath expression",
            "type": "string",
            "required": true
        },
        "xpathNamespaceMap": {
            "title": "XPath Namespace Map",
            "type": "array",
            "required": false,
            "items": { "type": "object", "$ref": "#/definitions/namespaceMapping" }
        }
    },
    "definitions": {
    	"namespaceMapping": {
            "properties": {
           		"prefix": {
            		"title": "Namespace Prefix",
            		"type": "string",
		          	"required": true
           		},
           		"uri": {
            		"title": "Namespace URI",
            		"type": "string",
 		         	"required": true
            	}
            }
    	}
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy