{ "$schema": "http://json-schema.org/schema", "type": "array", "items": [ { "type": "object", "properties": { "name": { "type": "string" }, "versionString": { "type": "string" }, "os": { "type": "string", "enum": [ "ind", "osx", "win32" ] }, "size": { "type": "integer" }, "documentation": { "type": "string" }, "CoreletType": { "type": "string", "enum": [ "standalone", "dependent", "provider" ] }, "CoreletAPIVersion": { "type": "integer", "optional": true }, "CoreletRequires": { "type": "object", "properties": { "Name": { "type": "string" }, "Version": { "type": "string" }, "Minversion": { "type": "string" } }, "optional": true, "additionalProperties": false } }, "additionalProperties": false } ], "additionalProperties": false }