Sha256: b5dc905854507ba3d25b8d842f5cd2bb964074479c25bf1158e5043e76361dec
Contents?: true
Size: 1.35 KB
Versions: 9
Compression:
Stored size: 1.35 KB
Contents
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "required": [ "_elements" ], "properties": { "_attributes": { "type": "object", "required": [ "patterns_system" ], "properties": { "patterns_system": { "oneOf": [ { "enum": ["zypper", "tasksel"] } ] } } }, "_elements": { "oneof": [ { "type": "array", "items": { "type": "object", "required": [ "name", "version", "release" ], "properties": { "name": { "type": "string", "minLength": 1 }, "version": { "type": "string", "minLength": 1 }, "release": { "type": "string", "minLength": 1 } } } }, { "type": "array", "items": { "type": "object", "required": [ "name" ], "properties": { "name": { "type": "string", "minLength": 1 } } } } ] } } }
Version data entries
9 entries across 9 versions & 1 rubygems