Skip to content

Commit

Permalink
api/doc/manifest-schema: move required attribute before properties
Browse files Browse the repository at this point in the history
  • Loading branch information
proppy committed Jul 2, 2014
1 parent 292eed7 commit adda088
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions api/doc/manifest-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -110,16 +110,16 @@
"uniqueItems": true,
"items": {
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"description" : "The name of the volume. Must be an RFC1035 compatible value (a single segment of a DNS name). All volumes must have unique names. These are referenced by `containers[].volumeMounts[].name`.",
"pattern": "^[a-z]([-a-z0-9]*[a-z0-9])*"
}
},
"required": [
"name"
]
}
}
}
}
Expand Down

0 comments on commit adda088

Please sign in to comment.