2014-07-05 20:01:20 +02:00
|
|
|
---
|
|
|
|
$schema: http://json-schema.org/draft-04/schema#
|
|
|
|
title: Admin user plugin manifest
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
plugins:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
admin_user:
|
|
|
|
type: object
|
|
|
|
properties:
|
|
|
|
username: {type: string}
|
2015-09-28 11:49:50 -07:00
|
|
|
password: {type: string}
|
2016-08-14 01:24:40 +02:00
|
|
|
pubkey: {$ref: '#/definitions/path'}
|
2014-07-05 20:01:20 +02:00
|
|
|
required: [username]
|
2015-05-02 12:45:55 +02:00
|
|
|
additionalProperties: false
|
2015-09-28 11:49:50 -07:00
|
|
|
definitions:
|
2016-08-14 01:24:40 +02:00
|
|
|
path:
|
|
|
|
pattern: ^[^\0]+$
|
2015-09-28 11:49:50 -07:00
|
|
|
type: string
|