From 02acd1181468102017b876460f8006b3f1c19c37 Mon Sep 17 00:00:00 2001 From: Adam Voss Date: Mon, 22 May 2017 20:09:39 -0500 Subject: [PATCH] Remove orphaned/abandoned schema file --- interfaces | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 interfaces diff --git a/interfaces b/interfaces deleted file mode 100644 index c1c08fc3..00000000 --- a/interfaces +++ /dev/null @@ -1,23 +0,0 @@ -{ - "extends":"http://json-schema.org/hyper-schema", - "description":"A schema for schema interface definitions that describe programmatic class structures using JSON schema syntax", - "properties":{ - "methods":{ - "type":"object", - "description":"This defines the set of methods available to the class instances", - "additionalProperties":{ - "type":"object", - "description":"The definition of the method", - "properties":{ - "parameters":{ - "type":"array", - "description":"The set of parameters that should be passed to the method when it is called", - "items":"#", - "required": true - }, - "returns":"#" - } - } - } - } -}