Sha256: 7fa2a7beec423b20d18e26eab0b5ab641f003fd339f9eeaae3496df4b261acfd
Contents?: true
Size: 1.04 KB
Versions: 5
Compression:
Stored size: 1.04 KB
Contents
{ "id": "http://inqlude.org/schema/generic-manifest-v1#", "$schema": "http://json-schema.org/draft-04/schema#", "title": "Generic Inqlude Manifest Schema", "type": "object", "properties": { "name": { "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" } }, "platforms": { "type": "array", "items": { "type": "string" }, "minItems": 1 }, "group": { "type": "string" } }, "required": [ "$schema", "name", "summary", "urls", "licenses", "description", "platforms" ] }
Version data entries
5 entries across 5 versions & 1 rubygems