Sha256: ddadbd27092db650d2bb6ac3f0a610106398fe49a4931dd8ad19a19a5f7ebc2f
Contents?: true
Size: 1.67 KB
Versions: 55
Compression:
Stored size: 1.67 KB
Contents
{ "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "required": [ "_elements" ], "properties": { "_attributes": { "type": "object" }, "_elements": { "type": "array", "items": { "type": "object", "required": [ "name", "password", "uid", "gid", "comment", "home", "shell" ], "properties": { "name": { "type": "string", "minLength": 1 }, "password": { "type": "string" }, "uid": { "type": [ "integer", "null" ], "minimum": 0 }, "gid": { "type": [ "integer", "null" ], "minimum": 0 }, "comment": { "type": "string" }, "home": { "type": "string" }, "shell": { "type": "string" }, "encrypted_password": { "type": "string" }, "last_changed_date": { "type": "integer" }, "min_days": { "type": "integer", "minimum": 0 }, "max_days": { "type": "integer", "minimum": 0 }, "warn_days": { "type": "integer", "minimum": 0 }, "disable_days": { "type": "integer", "minimum": 0 }, "disabled_date": { "type": "integer" } } } } } }
Version data entries
55 entries across 13 versions & 1 rubygems