22 lines
353 B
JSON
22 lines
353 B
JSON
{
|
|
"type": "object",
|
|
"required": [
|
|
"icon",
|
|
"title",
|
|
"path",
|
|
"method"
|
|
],
|
|
"properties": {
|
|
"icon": {
|
|
"type": "string",
|
|
"enum": [
|
|
"retry",
|
|
"play",
|
|
"cancel"
|
|
]
|
|
},
|
|
"title": { "type": "string" },
|
|
"path": { "type": "string" },
|
|
"method": { "$ref": "../http_method.json" }
|
|
}
|
|
}
|