├── .editorconfig ├── .github └── workflows │ ├── build_cts_json.yaml │ └── validate_json_schema.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── cts.json ├── cts.schema.json └── tests ├── basic.json ├── filter.json ├── functions ├── count.json ├── length.json ├── match.json ├── search.json └── value.json ├── index_selector.json ├── name_selector.json ├── slice_selector.json └── whitespace ├── filter.json ├── functions.json ├── operators.json ├── selectors.json └── slice.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonpath-standard/jsonpath-compliance-test-suite/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build_cts_json.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonpath-standard/jsonpath-compliance-test-suite/HEAD/.github/workflows/build_cts_json.yaml -------------------------------------------------------------------------------- /.github/workflows/validate_json_schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonpath-standard/jsonpath-compliance-test-suite/HEAD/.github/workflows/validate_json_schema.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonpath-standard/jsonpath-compliance-test-suite/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonpath-standard/jsonpath-compliance-test-suite/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonpath-standard/jsonpath-compliance-test-suite/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonpath-standard/jsonpath-compliance-test-suite/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonpath-standard/jsonpath-compliance-test-suite/HEAD/README.md -------------------------------------------------------------------------------- /cts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonpath-standard/jsonpath-compliance-test-suite/HEAD/cts.json -------------------------------------------------------------------------------- /cts.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonpath-standard/jsonpath-compliance-test-suite/HEAD/cts.schema.json -------------------------------------------------------------------------------- /tests/basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonpath-standard/jsonpath-compliance-test-suite/HEAD/tests/basic.json -------------------------------------------------------------------------------- /tests/filter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonpath-standard/jsonpath-compliance-test-suite/HEAD/tests/filter.json -------------------------------------------------------------------------------- /tests/functions/count.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonpath-standard/jsonpath-compliance-test-suite/HEAD/tests/functions/count.json -------------------------------------------------------------------------------- /tests/functions/length.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonpath-standard/jsonpath-compliance-test-suite/HEAD/tests/functions/length.json -------------------------------------------------------------------------------- /tests/functions/match.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonpath-standard/jsonpath-compliance-test-suite/HEAD/tests/functions/match.json -------------------------------------------------------------------------------- /tests/functions/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonpath-standard/jsonpath-compliance-test-suite/HEAD/tests/functions/search.json -------------------------------------------------------------------------------- /tests/functions/value.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonpath-standard/jsonpath-compliance-test-suite/HEAD/tests/functions/value.json -------------------------------------------------------------------------------- /tests/index_selector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonpath-standard/jsonpath-compliance-test-suite/HEAD/tests/index_selector.json -------------------------------------------------------------------------------- /tests/name_selector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonpath-standard/jsonpath-compliance-test-suite/HEAD/tests/name_selector.json -------------------------------------------------------------------------------- /tests/slice_selector.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonpath-standard/jsonpath-compliance-test-suite/HEAD/tests/slice_selector.json -------------------------------------------------------------------------------- /tests/whitespace/filter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonpath-standard/jsonpath-compliance-test-suite/HEAD/tests/whitespace/filter.json -------------------------------------------------------------------------------- /tests/whitespace/functions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonpath-standard/jsonpath-compliance-test-suite/HEAD/tests/whitespace/functions.json -------------------------------------------------------------------------------- /tests/whitespace/operators.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonpath-standard/jsonpath-compliance-test-suite/HEAD/tests/whitespace/operators.json -------------------------------------------------------------------------------- /tests/whitespace/selectors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonpath-standard/jsonpath-compliance-test-suite/HEAD/tests/whitespace/selectors.json -------------------------------------------------------------------------------- /tests/whitespace/slice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsonpath-standard/jsonpath-compliance-test-suite/HEAD/tests/whitespace/slice.json --------------------------------------------------------------------------------