Skip to content

Commit 03b7fa8

Browse files
committed
Allow schemas without requirements
1 parent 924a816 commit 03b7fa8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

schema/types.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ type Processor interface {
55
ResourceExists(resource string) bool
66

77
// Check if the resource structure is valid
8-
ResourceValid(resource string, data string) (bool, error)
8+
ResourceValid(resource string, data string, required bool) (bool, error)
99

1010
// Check if the resource structure is valid
11-
ResourceValidGo(resource string, data interface{}) (bool, error)
11+
ResourceValidGo(resource string, data interface{}, required bool) (bool, error)
1212

1313
// Get the schema of a resource
1414
GetSchema(resource string) *Schema

0 commit comments

Comments
 (0)