Ilib loctool plugin to parse and localize OpenAPI json files.
This plugin can parse and localize openapi.json files by using either default OpenAPI schema bundled with the plugin, or custom schema.
Internally, this plugin uses two other loctool plugins: ilib-loctool-json and ilib-loctool-ghfm
OpenAPI plugin configuration is identical to
JSON plugin's config.
The only difference is openapi key used instead of json
in settings section.
In order to use built-in OpenAPI schema use openapi-schema
schema id in mappings section.
Example configuration:
{
"settings": {
"openapi": {
"schemas": [
"./schemas"
],
"mappings": {
"**/openapi.json": {
"schema": "openapi-schema",
"method": "copy",
"template": "resources/[localeDir]/appinfo.json"
},
"**/custom-openapi.json": {
"schema": "custom-schema",
"method": "copy",
"template": "[dir]/strings.[locale].json"
}
}
}
}
}In the example above file openapi.json will be parsed using
built-in schema and custom-openapi.json using custom schema
from ./schemas folder.
This plugin is license under Apache2. See the LICENSE file for more details.
- update dependencies
- now supports node v22
- can now deal with empty objects in the json
- update dependencies
- convert all unit tests from nodeunit to jest
- update dependencies
- added more explicit logging so that it is easier to debug loctool problems.
- now uses the loctool logger via the API instead of its own logging
- fixed a problem with paths that contain "." or ".." dir not being recognized as handled by this plugin
- Update dependencies
- minimum node version is now v10
- Add missing
tagssection to the defaults schema
- Add schema.json to bundled files in order to be available at NPM
- Fix errors while loading default schema, relative path was replaced with an absolute.
- initial version
- includes default schema for OpenAPI files parsing