Metadata-Version: 1.1
Name: robotframework-jsonschemalibrary
Version: 1.0
Summary: A Robot Framework library for JSON Schema validation.
Home-page: https://github.com/jstaffans
Author: Johannes Staffans
Author-email: UNKNOWN
License: Apache License 2.0
Description: ====================================================
        A Robot Framework library for JSON Schema validation
        ====================================================
        
        Provides a simple interface to `jsonschema`_, the Python implementation of JSON Schema. 
        
        Usage 
        -----
        
        The library needs access to the file system location of the schemas, in order to resolve references
        between schemas. Default is a subdirectory called `schemas` - you could make a symlink here to wherever
        the schema definition files are::
        
          Library  JSONSchemaLibrary  /path/to/schemas
          ...
          My Test Case:
            Validate Json  schema_name.schema.json  {"foo": "bar"}
        
        Per default, only prints the validation error message when there's an error.
        Run with log level `DEBUG` in order to see more info, including a dump of the schema, in the Robot Framework logs. 
        
        Development
        -----------
        
        ::
        
          $ pybot --pythonpath . tests
        
        Todo
        ----
        
        * HTTP resolver
        
        .. _`jsonschema`: https://github.com/Julian/jsonschema
        
        
        
        
Keywords: robotframework test json schema
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Environment :: Web Environment
Classifier: Framework :: Robot Framework
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: CPython
