swagger2doc tool
This tool creates the documentation for an OCF resource in a supplied word document.
The tools needs to be called for each resource that needs to be added to the word document.
This tool is python3 based.
install with curl https://openconnectivityfoundation.github.io/swagger2doc/install.sh | bash
which executes the following steps:
from the src directory:
python3 swagger2doc.py <options>
use -h to see all the options.
usage: swagger2doc.py [-h] [-ver] [-swagger [SWAGGER]] [-schema [SCHEMA]]
[-docx [DOCX]] [-word_out [WORD_OUT]]
[-resource [RESOURCE]] [-schemadir [SCHEMADIR]]
[-derived DERIVED] [-annex ANNEX]
optional arguments:
-h, --help show this help message and exit
-ver, --verbose Execute in verbose mode
-swagger [SWAGGER], --swagger [SWAGGER]
swagger file name
-schema [SCHEMA], --schema [SCHEMA]
schema to be added to word document
-docx [DOCX], --docx [DOCX]
word file in
-word_out [WORD_OUT], --word_out [WORD_OUT]
word file out
-resource [RESOURCE], --resource [RESOURCE]
resource (path) to be put in the word document
-schemadir [SCHEMADIR], --schemadir [SCHEMADIR]
path to dir with additional referenced schemas
-derived DERIVED, --derived DERIVED
derived data model specificaton (--derived XXX) e.g.
XXX Property Name in table use "." to ignore the
property name setting
-annex ANNEX, --annex ANNEX
uses a annex heading instead of normal heading
(--annex true)
see https://github.com/openconnectivityfoundation/swagger2doc/blob/master/derived_model.md
1.0.1 :
Tool to validate the x-example against the supplied schema. The x-example can occur:
NOTE: some restrictions on the swagger input:
good practice:
The validation is done by means of json schema (draft 4) validation.
from the src directory:
python3 swag-validator.py <options>
use -h to see all the options.