@@ -44,15 +44,15 @@ module.exports = (db, server) => {
4444 page : pageRes ,
4545 previousCursor : previousCursorRes ,
4646 nextCursor : nextCursorRes ,
47- query : Joi . string ( ) . required ( ) . description ( 'Query string. Partial match of a Domain name' ) ,
47+ query : Joi . string ( ) . description ( 'Query string. Partial match of a Domain name' ) ,
4848 results : Joi . array ( )
4949 . required ( )
5050 . items (
5151 Joi . object ( {
5252 id : Joi . string ( ) . required ( ) . description ( 'ID of the DKIM' ) ,
5353 domain : Joi . string ( ) . required ( ) . description ( 'The domain this DKIM key applies to' ) ,
5454 selector : Joi . string ( ) . required ( ) . description ( 'DKIM selector' ) ,
55- description : Joi . string ( ) . required ( ) . description ( 'Key description' ) ,
55+ description : Joi . string ( ) . description ( 'Key description' ) ,
5656 fingerprint : Joi . string ( ) . required ( ) . description ( 'Key fingerprint (SHA1)' ) ,
5757 created : Joi . date ( ) . required ( ) . description ( 'DKIM created datestring' )
5858 } )
@@ -302,7 +302,7 @@ module.exports = (db, server) => {
302302 id : Joi . string ( ) . required ( ) . description ( 'ID of the DKIM' ) ,
303303 domain : Joi . string ( ) . required ( ) . description ( 'The domain this DKIM key applies to' ) ,
304304 selector : Joi . string ( ) . required ( ) . description ( 'DKIM selector' ) ,
305- description : Joi . string ( ) . required ( ) . description ( 'Key description' ) ,
305+ description : Joi . string ( ) . description ( 'Key description' ) ,
306306 fingerprint : Joi . string ( ) . required ( ) . description ( 'Key fingerprint (SHA1)' ) ,
307307 publicKey : Joi . string ( ) . required ( ) . description ( 'Public key in DNS format (no prefix/suffix, single line)' ) ,
308308 dnsTxt : Joi . object ( {
@@ -388,7 +388,7 @@ module.exports = (db, server) => {
388388 id : Joi . string ( ) . required ( ) . description ( 'ID of the DKIM' ) ,
389389 domain : Joi . string ( ) . required ( ) . description ( 'The domain this DKIM key applies to' ) ,
390390 selector : Joi . string ( ) . required ( ) . description ( 'DKIM selector' ) ,
391- description : Joi . string ( ) . required ( ) . description ( 'Key description' ) ,
391+ description : Joi . string ( ) . description ( 'Key description' ) ,
392392 fingerprint : Joi . string ( ) . required ( ) . description ( 'Key fingerprint (SHA1)' ) ,
393393 publicKey : Joi . string ( ) . required ( ) . description ( 'Public key in DNS format (no prefix/suffix, single line)' ) ,
394394 dnsTxt : Joi . object ( {
0 commit comments