Sha256: 48711afe5ba82953754735d8bfc39320e1b4c280306ca61e04d0b0352d58f8f4
Contents?: true
Size: 964 Bytes
Versions: 106
Compression:
Stored size: 964 Bytes
Contents
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "run_script request", "description": "POST <transport>/run_script request schema", "type": "object", "properties": { "script": { "type": "object", "properties": { "filename": { "type": "string" }, "uri": { "type": "object", "properties": { "path": { "type": "string" }, "params": { "type": "object" } }, "required": [ "path", "params" ] }, "sha256": { "type": "string" } }, "required": [ "filename", "uri", "sha256" ] }, "arguments": { "type": "array", "items": { "type": "string" } }, "target": { "$ref": "partial:target-any" } }, "required": ["script", "target"] }
Version data entries
106 entries across 106 versions & 1 rubygems