Sha256: 158cbb87fa54860d3ba266ed63c42bd82abfafdbe9cc915f734ff4ca95c84a9f
Contents?: true
Size: 1.87 KB
Versions: 55
Compression:
Stored size: 1.87 KB
Contents
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "required": [ "_elements" ], "oneOf": [ { "properties": { "_attributes": { "type": "object", "required": [ "init_system" ], "properties": { "init_system": { "not": { "enum": [ "upstart" ] }, "type": "string", "minLength": 1 } } }, "_elements": { "type": "array", "items": { "type": "object", "required": [ "name", "state" ], "properties": { "name": { "type": "string", "minLength": 1 }, "state": { "type": "string", "minLength": 1 } } } } } }, { "properties": { "_attributes": { "type": "object", "required": [ "init_system" ], "properties": { "init_system": { "enum": [ "upstart" ] } } }, "_elements": { "type": "array", "items": { "type": "object", "required": [ "name", "state", "legacy_sysv" ], "properties": { "name": { "type": "string", "minLength": 1 }, "state": { "type": "string", "minLength": 1 }, "legacy_sysv": { "type": "boolean" } } } } } } ] }
Version data entries
55 entries across 13 versions & 1 rubygems