Input schema editor

Configure your input schema

Properties

country
title: Country
type: string
editor: select

Input Schema JSON

{
"title":
string"Actor input schema"
"description":
string"This is actor input schema"
"type":
string"object"
"schemaVersion":
int1
"properties":{
"country":{
"title":
string"Country"
"type":
string"string"
"description":
string"Select your country"
"editor":
string"select"
"enum":[
0
:
string"us"
1
:
string"de"
2
:
string"fr"
]
"enumTitles":[
0
:
string"USA"
1
:
string"Germany"
2
:
string"France"
]
}
}
"required":[
]
}