Sha256: bbeb7fb1c0c365a6367602e6e071560b42765cf7a335fedb917ae342a6adbcbe
Contents?: true
Size: 1.22 KB
Versions: 5
Compression:
Stored size: 1.22 KB
Contents
{ "id": "http://inqlude.org/schema/release-manifest-v1#", "$schema": "http://json-schema.org/draft-04/schema#", "title": "Inqlude Release Manifest Schema", "type": "object", "properties": { "name": { "type": "string" }, "release_date": { "type": "string" }, "version": { "type": "string" }, "summary": { "type": "string" }, "urls": { "type": "object", "properties": { "homepage": { "type": "string" }, "download": { "type": "string" } }, "required": [ "homepage" ] }, "licenses": { "type": "array", "items": { "type": "string" }, "minItems": 1 }, "description": { "type": "string" }, "authors": { "type": "array", "items": { "type": "string" } }, "maturity": { "type": "string" }, "platforms": { "type": "array", "items": { "type": "string" }, "minItems": 1 }, "group": { "type": "string" } }, "required": [ "$schema", "name", "release_date", "version", "summary", "urls", "licenses", "description", "maturity", "platforms" ] }
Version data entries
5 entries across 5 versions & 1 rubygems