@microfleet/core
Version:
Abstract microservice core
35 lines (34 loc) • 839 B
JSON
{
"$id": "router.extensions",
"additionalProperties": false,
"type": "object",
"properties": {
"enabled": {
"default": [],
"items": {
"type": "string"
},
"type": "array",
"uniqueItems": true
},
"register": {
"type": "array",
"default": [],
"items": {
"type": "array",
"items": {
"type": "object",
"required": [
"point",
"handler"
],
"properties": {
"point": {
"type": "string"
}
}
}
}
}
}
}