We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 924a816 commit 03b7fa8Copy full SHA for 03b7fa8
schema/types.go
@@ -5,10 +5,10 @@ type Processor interface {
5
ResourceExists(resource string) bool
6
7
// Check if the resource structure is valid
8
- ResourceValid(resource string, data string) (bool, error)
+ ResourceValid(resource string, data string, required bool) (bool, error)
9
10
11
- ResourceValidGo(resource string, data interface{}) (bool, error)
+ ResourceValidGo(resource string, data interface{}, required bool) (bool, error)
12
13
// Get the schema of a resource
14
GetSchema(resource string) *Schema
0 commit comments