Sha256: d0813efa1473be9cb9070447ca3430df55e1025469610a370e0cf8c8a0090aeb
Contents?: true
Size: 1.16 KB
Versions: 5
Compression:
Stored size: 1.16 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" }, "topics": { "type": "array", "items": { "type": "string" }, "minItems": 1 }, "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