├── .gitignore ├── JSONSchemaLibrary └── __init__.py ├── LICENSE.txt ├── README.rst ├── requirements.txt ├── schemas └── test.schema.json ├── setup.cfg ├── setup.py └── tests └── SchemaValidation.robot /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstaffans/robotframework-jsonschemalibrary/HEAD/.gitignore -------------------------------------------------------------------------------- /JSONSchemaLibrary/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstaffans/robotframework-jsonschemalibrary/HEAD/JSONSchemaLibrary/__init__.py -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstaffans/robotframework-jsonschemalibrary/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstaffans/robotframework-jsonschemalibrary/HEAD/README.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | robotframework==3.0 2 | jsonschema==2.5.1 3 | -------------------------------------------------------------------------------- /schemas/test.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstaffans/robotframework-jsonschemalibrary/HEAD/schemas/test.schema.json -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [egg_info] 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstaffans/robotframework-jsonschemalibrary/HEAD/setup.py -------------------------------------------------------------------------------- /tests/SchemaValidation.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstaffans/robotframework-jsonschemalibrary/HEAD/tests/SchemaValidation.robot --------------------------------------------------------------------------------