Skip to content

Commit 7c21517

Browse files
committed
json schema
1 parent 8340228 commit 7c21517

File tree

3 files changed

+16
-65
lines changed

3 files changed

+16
-65
lines changed

src/main/groovy/io/operator/ExampleOperator.groovy

-32
This file was deleted.

src/main/resources/schema/example.js

-33
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"$schema": "http://json-schema.org/draft-07/schema#",
3+
"description": "An input to fibonacci function.",
4+
"type": "object",
5+
"javaInterfaces": ["io.radanalytics.operator.common.EntityInfo"],
6+
"properties": {
7+
"name": {
8+
"type": "string"
9+
},
10+
"input": {
11+
"type": "integer",
12+
"default": "1"
13+
}
14+
},
15+
"required": [ ]
16+
}

0 commit comments

Comments
 (0)