{ "$id": "/pub/schema/path.schema", "title": "Path parameter", "type": "object", "properties": { "type": { "const": "path" }, "keyword": { "$ref": "/pub/schema/keyword.schema" }, "description": { "$ref": "/pub/schema/desc.schema" }, "required": { "type": "boolean", "description": "informs whether the parameter is required or not" }, "multiple": { "type": "boolean", "description": "informs whether the parameter can be informed more than once" }, "default": { "type": "string", "description": "Default path" }, "value": { "type": "array", "items": { "oneOf": [ { "$ref": "/pub/schema/expression.schema" }, { "type": "object", "properties": { "literal": { "type": "string", "description": "Relative or absolute path" } }, "additionalProperties": false } ] } } }, "required": ["type", "keyword", "description", "required", "multiple"], "additionalProperties": false }