Merge "Fix for ttl values"

This commit is contained in:
Jenkins
2015-07-07 13:47:25 +00:00
committed by Gerrit Code Review
2 changed files with 2 additions and 2 deletions

View File

@@ -32,7 +32,7 @@
"ttl": { "ttl": {
"type": "integer", "type": "integer",
"description": "Time to live", "description": "Time to live",
"minimum": 0, "minimum": 1,
"maximum": 2147483647 "maximum": 2147483647
}, },
"serial": { "serial": {

View File

@@ -48,7 +48,7 @@
"ttl": { "ttl": {
"type": ["integer", "null"], "type": ["integer", "null"],
"description": "Time to live", "description": "Time to live",
"minimum": 0, "minimum": 1,
"maximum": 2147483647 "maximum": 2147483647
}, },
"description": { "description": {