{"id":15144490,"url":"https://github.com/peterservice-rnd/robotframework-jsonvalidator","last_synced_at":"2025-09-29T13:31:12.217Z","repository":{"id":62584448,"uuid":"118914801","full_name":"peterservice-rnd/robotframework-jsonvalidator","owner":"peterservice-rnd","description":"Robot Framework library for JSON validation","archived":true,"fork":false,"pushed_at":"2019-10-11T05:53:02.000Z","size":65,"stargazers_count":21,"open_issues_count":3,"forks_count":14,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-01-16T16:27:11.914Z","etag":null,"topics":["autotesting","json-schema","json-validation","jsonpath","jsonselect","python","robotframework"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/peterservice-rnd.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-01-25T13:15:25.000Z","updated_at":"2023-08-21T08:50:50.000Z","dependencies_parsed_at":"2022-11-03T21:47:54.416Z","dependency_job_id":null,"html_url":"https://github.com/peterservice-rnd/robotframework-jsonvalidator","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peterservice-rnd%2Frobotframework-jsonvalidator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peterservice-rnd%2Frobotframework-jsonvalidator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peterservice-rnd%2Frobotframework-jsonvalidator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peterservice-rnd%2Frobotframework-jsonvalidator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/peterservice-rnd","download_url":"https://codeload.github.com/peterservice-rnd/robotframework-jsonvalidator/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":234624028,"owners_count":18862269,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["autotesting","json-schema","json-validation","jsonpath","jsonselect","python","robotframework"],"created_at":"2024-09-26T10:41:42.603Z","updated_at":"2025-09-29T13:31:11.884Z","avatar_url":"https://github.com/peterservice-rnd.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"robotframework-jsonvalidator\n============================\n\n|Build Status|\n\nShort Description\n-----------------\n\n`Robot Framework`_ library for JSON validation based on JSONSchema,\nJSONPath, JSONSelect.\n\nAdditional Information\n----------------------\n\n-  `Json Schema`_\n-  `Jsonschema generator`_\n-  `JSONPath by Stefan Goessner`_\n-  `JSONPath Tester`_\n-  `JSONSelect`_\n-  `JSONSelect Tester`_\n\nInstallation\n------------\n\nInstall the library from PyPI using pip:\n\n::\n\n    pip install robotframework-jsonvalidator\n\nDependencies\n------------\n\n-  `jsonschema`_\n-  `jsonpath-rw-ext`_\n-  `objectpath`_\n-  `pyjsonselect`_\n\nDocumentation\n-------------\n\nSee keyword documentation for JsonValidator library on `GitHub`_.\n\nExample\n-------\n\n*json_example.json*\n\n::\n\n    {\n      \"store\": {\n        \"book\": [\n          {\n            \"category\": \"reference\",\n            \"author\": \"Nigel Rees\",\n            \"title\": \"Sayings of the Century\",\n            \"price\": 8.95\n          },\n          {\n            \"category\": \"fiction\",\n            \"author\": \"Evelyn Waugh\",\n            \"title\": \"Sword of Honour\",\n            \"price\": 12.99\n          },\n          {\n            \"category\": \"fiction\",\n            \"author\": \"Herman Melville\",\n            \"title\": \"Moby Dick\",\n            \"isbn\": \"0-553-21311-3\",\n            \"price\": 8.99\n          },\n          {\n            \"category\": \"fiction\",\n            \"author\": \"J. R. R. Tolkien\",\n            \"title\": \"The Lord of the Rings\",\n            \"isbn\": \"0-395-19395-8\",\n            \"price\": 22.99\n          }\n        ],\n        \"bicycle\": {\n          \"color\": \"red\",\n          \"price\": 19.95\n        }\n      }\n    }\n\nRobot Framework test case:\n\n.. code:: robotframework\n\n    *** Settings ***\n    Library    JsonValidator\n    Library    OperatingSystem\n\n    *** Test Cases ***\n    Check Element\n        ${json_example}=    OperatingSystem.Get File   ${CURDIR}${/}json_example.json\n        Element should exist    ${json_example}    .author:contains(\"Evelyn Waugh\")\n\nLicense\n-------\n\nApache License 2.0\n\n.. _Robot Framework: http://www.robotframework.org\n.. _Json Schema: http://json-schema.org/\n.. _Jsonschema generator: http://www.jsonschema.net/\n.. _JSONPath by Stefan Goessner: http://goessner.net/articles/JsonPath/\n.. _JSONPath Tester: http://jsonpath.curiousconcept.com/\n.. _JSONSelect: http://jsonselect.org/\n.. _JSONSelect Tester: http://jsonselect.curiousconcept.com/\n.. _jsonschema: https://pypi.python.org/pypi/jsonschema\n.. _jsonpath-rw-ext: https://pypi.python.org/pypi/jsonpath-rw-ext\n.. _objectpath: https://pypi.python.org/pypi/objectpath/\n.. _pyjsonselect: https://pypi.python.org/pypi/pyjsonselect\n.. _GitHub: https://github.com/peterservice-rnd/robotframework-jsonvalidator/tree/master/docs\n\n.. |Build Status| image:: https://travis-ci.org/peterservice-rnd/robotframework-jsonvalidator.svg?branch=master\n   :target: https://travis-ci.org/peterservice-rnd/robotframework-jsonvalidator\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpeterservice-rnd%2Frobotframework-jsonvalidator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpeterservice-rnd%2Frobotframework-jsonvalidator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpeterservice-rnd%2Frobotframework-jsonvalidator/lists"}