├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── .travis.yml ├── README.md ├── package.json ├── src ├── index.js ├── merge-validation-options.js ├── property-rules.js ├── scaffold.js ├── validate.js └── validators │ ├── additionalItems.js │ ├── additionalProperties.js │ ├── allOf.js │ ├── anyOf.js │ ├── between.js │ ├── const.js │ ├── contains.js │ ├── dependencies.js │ ├── enum.js │ ├── exclusiveMaximum.js │ ├── exclusiveMinimum.js │ ├── items.js │ ├── maxItems.js │ ├── maxLength.js │ ├── maxProperties.js │ ├── maximum.js │ ├── minItems.js │ ├── minLength.js │ ├── minProperties.js │ ├── minimum.js │ ├── multipleOf.js │ ├── noParamsRequired.js │ ├── not.js │ ├── oneOf.js │ ├── pattern.js │ ├── patternProperties.js │ ├── propertyNames.js │ ├── required.js │ ├── type.js │ ├── typeArray.js │ └── uniqueItems.js └── test ├── .eslintrc ├── fixtures └── schemas │ ├── additional.json │ ├── additionalItems.json │ ├── additionalProperties.json │ ├── additionalWithPattern.json │ ├── advanced.json │ ├── allOf.json │ ├── anyOf.json │ ├── basic.json │ ├── boolean_schema.json │ ├── complex.json │ ├── complex2.json │ ├── complex3.json │ ├── const.json │ ├── contains.json │ ├── cosmicrealms.json │ ├── default.json │ ├── definitions.json │ ├── dependencies.json │ ├── enum.json │ ├── exclusiveMaximum.json │ ├── exclusiveMinimum.json │ ├── items.json │ ├── maxItems.json │ ├── maxLength.json │ ├── maxProperties.json │ ├── maximum.json │ ├── medium.json │ ├── minItems.json │ ├── minLength.json │ ├── minProperties.json │ ├── minimum.json │ ├── multipleOf.json │ ├── not.json │ ├── oneOf.json │ ├── optional │ ├── bignum.json │ ├── ecmascript-regex.json │ ├── format.json │ └── zeroTerminatedFloats.json │ ├── pattern.json │ ├── patternProperties.json │ ├── properties.json │ ├── propertyNames.json │ ├── ref.json │ ├── refRemote.json │ ├── required.json │ ├── type.json │ └── uniqueItems.json └── specs ├── index.spec.js ├── merge-validation-options.spec.js ├── scaffold.spec.js ├── schemas.spec.js └── validators ├── additionalItems.spec.js ├── allOf.spec.js ├── anyOf.spec.js ├── items.spec.js ├── multipleOf.spec.js ├── not.spec.js ├── oneOf.spec.js └── patternProperties.spec.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .nyc_output 3 | coverage 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/src/index.js -------------------------------------------------------------------------------- /src/merge-validation-options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/src/merge-validation-options.js -------------------------------------------------------------------------------- /src/property-rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/src/property-rules.js -------------------------------------------------------------------------------- /src/scaffold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/src/scaffold.js -------------------------------------------------------------------------------- /src/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/src/validate.js -------------------------------------------------------------------------------- /src/validators/additionalItems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/src/validators/additionalItems.js -------------------------------------------------------------------------------- /src/validators/additionalProperties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/src/validators/additionalProperties.js -------------------------------------------------------------------------------- /src/validators/allOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/src/validators/allOf.js -------------------------------------------------------------------------------- /src/validators/anyOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/src/validators/anyOf.js -------------------------------------------------------------------------------- /src/validators/between.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/src/validators/between.js -------------------------------------------------------------------------------- /src/validators/const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/src/validators/const.js -------------------------------------------------------------------------------- /src/validators/contains.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/src/validators/contains.js -------------------------------------------------------------------------------- /src/validators/dependencies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/src/validators/dependencies.js -------------------------------------------------------------------------------- /src/validators/enum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/src/validators/enum.js -------------------------------------------------------------------------------- /src/validators/exclusiveMaximum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/src/validators/exclusiveMaximum.js -------------------------------------------------------------------------------- /src/validators/exclusiveMinimum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/src/validators/exclusiveMinimum.js -------------------------------------------------------------------------------- /src/validators/items.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/src/validators/items.js -------------------------------------------------------------------------------- /src/validators/maxItems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/src/validators/maxItems.js -------------------------------------------------------------------------------- /src/validators/maxLength.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/src/validators/maxLength.js -------------------------------------------------------------------------------- /src/validators/maxProperties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/src/validators/maxProperties.js -------------------------------------------------------------------------------- /src/validators/maximum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/src/validators/maximum.js -------------------------------------------------------------------------------- /src/validators/minItems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/src/validators/minItems.js -------------------------------------------------------------------------------- /src/validators/minLength.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/src/validators/minLength.js -------------------------------------------------------------------------------- /src/validators/minProperties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/src/validators/minProperties.js -------------------------------------------------------------------------------- /src/validators/minimum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/src/validators/minimum.js -------------------------------------------------------------------------------- /src/validators/multipleOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/src/validators/multipleOf.js -------------------------------------------------------------------------------- /src/validators/noParamsRequired.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/src/validators/noParamsRequired.js -------------------------------------------------------------------------------- /src/validators/not.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/src/validators/not.js -------------------------------------------------------------------------------- /src/validators/oneOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/src/validators/oneOf.js -------------------------------------------------------------------------------- /src/validators/pattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/src/validators/pattern.js -------------------------------------------------------------------------------- /src/validators/patternProperties.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/src/validators/patternProperties.js -------------------------------------------------------------------------------- /src/validators/propertyNames.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/src/validators/propertyNames.js -------------------------------------------------------------------------------- /src/validators/required.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/src/validators/required.js -------------------------------------------------------------------------------- /src/validators/type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/src/validators/type.js -------------------------------------------------------------------------------- /src/validators/typeArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/src/validators/typeArray.js -------------------------------------------------------------------------------- /src/validators/uniqueItems.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/src/validators/uniqueItems.js -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/fixtures/schemas/additional.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/additional.json -------------------------------------------------------------------------------- /test/fixtures/schemas/additionalItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/additionalItems.json -------------------------------------------------------------------------------- /test/fixtures/schemas/additionalProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/additionalProperties.json -------------------------------------------------------------------------------- /test/fixtures/schemas/additionalWithPattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/additionalWithPattern.json -------------------------------------------------------------------------------- /test/fixtures/schemas/advanced.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/advanced.json -------------------------------------------------------------------------------- /test/fixtures/schemas/allOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/allOf.json -------------------------------------------------------------------------------- /test/fixtures/schemas/anyOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/anyOf.json -------------------------------------------------------------------------------- /test/fixtures/schemas/basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/basic.json -------------------------------------------------------------------------------- /test/fixtures/schemas/boolean_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/boolean_schema.json -------------------------------------------------------------------------------- /test/fixtures/schemas/complex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/complex.json -------------------------------------------------------------------------------- /test/fixtures/schemas/complex2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/complex2.json -------------------------------------------------------------------------------- /test/fixtures/schemas/complex3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/complex3.json -------------------------------------------------------------------------------- /test/fixtures/schemas/const.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/const.json -------------------------------------------------------------------------------- /test/fixtures/schemas/contains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/contains.json -------------------------------------------------------------------------------- /test/fixtures/schemas/cosmicrealms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/cosmicrealms.json -------------------------------------------------------------------------------- /test/fixtures/schemas/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/default.json -------------------------------------------------------------------------------- /test/fixtures/schemas/definitions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/definitions.json -------------------------------------------------------------------------------- /test/fixtures/schemas/dependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/dependencies.json -------------------------------------------------------------------------------- /test/fixtures/schemas/enum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/enum.json -------------------------------------------------------------------------------- /test/fixtures/schemas/exclusiveMaximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/exclusiveMaximum.json -------------------------------------------------------------------------------- /test/fixtures/schemas/exclusiveMinimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/exclusiveMinimum.json -------------------------------------------------------------------------------- /test/fixtures/schemas/items.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/items.json -------------------------------------------------------------------------------- /test/fixtures/schemas/maxItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/maxItems.json -------------------------------------------------------------------------------- /test/fixtures/schemas/maxLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/maxLength.json -------------------------------------------------------------------------------- /test/fixtures/schemas/maxProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/maxProperties.json -------------------------------------------------------------------------------- /test/fixtures/schemas/maximum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/maximum.json -------------------------------------------------------------------------------- /test/fixtures/schemas/medium.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/medium.json -------------------------------------------------------------------------------- /test/fixtures/schemas/minItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/minItems.json -------------------------------------------------------------------------------- /test/fixtures/schemas/minLength.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/minLength.json -------------------------------------------------------------------------------- /test/fixtures/schemas/minProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/minProperties.json -------------------------------------------------------------------------------- /test/fixtures/schemas/minimum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/minimum.json -------------------------------------------------------------------------------- /test/fixtures/schemas/multipleOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/multipleOf.json -------------------------------------------------------------------------------- /test/fixtures/schemas/not.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/not.json -------------------------------------------------------------------------------- /test/fixtures/schemas/oneOf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/oneOf.json -------------------------------------------------------------------------------- /test/fixtures/schemas/optional/bignum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/optional/bignum.json -------------------------------------------------------------------------------- /test/fixtures/schemas/optional/ecmascript-regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/optional/ecmascript-regex.json -------------------------------------------------------------------------------- /test/fixtures/schemas/optional/format.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/optional/format.json -------------------------------------------------------------------------------- /test/fixtures/schemas/optional/zeroTerminatedFloats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/optional/zeroTerminatedFloats.json -------------------------------------------------------------------------------- /test/fixtures/schemas/pattern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/pattern.json -------------------------------------------------------------------------------- /test/fixtures/schemas/patternProperties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/patternProperties.json -------------------------------------------------------------------------------- /test/fixtures/schemas/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/properties.json -------------------------------------------------------------------------------- /test/fixtures/schemas/propertyNames.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/propertyNames.json -------------------------------------------------------------------------------- /test/fixtures/schemas/ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/ref.json -------------------------------------------------------------------------------- /test/fixtures/schemas/refRemote.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/refRemote.json -------------------------------------------------------------------------------- /test/fixtures/schemas/required.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/required.json -------------------------------------------------------------------------------- /test/fixtures/schemas/type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/type.json -------------------------------------------------------------------------------- /test/fixtures/schemas/uniqueItems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/fixtures/schemas/uniqueItems.json -------------------------------------------------------------------------------- /test/specs/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/specs/index.spec.js -------------------------------------------------------------------------------- /test/specs/merge-validation-options.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/specs/merge-validation-options.spec.js -------------------------------------------------------------------------------- /test/specs/scaffold.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/specs/scaffold.spec.js -------------------------------------------------------------------------------- /test/specs/schemas.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/specs/schemas.spec.js -------------------------------------------------------------------------------- /test/specs/validators/additionalItems.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/specs/validators/additionalItems.spec.js -------------------------------------------------------------------------------- /test/specs/validators/allOf.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/specs/validators/allOf.spec.js -------------------------------------------------------------------------------- /test/specs/validators/anyOf.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/specs/validators/anyOf.spec.js -------------------------------------------------------------------------------- /test/specs/validators/items.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/specs/validators/items.spec.js -------------------------------------------------------------------------------- /test/specs/validators/multipleOf.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/specs/validators/multipleOf.spec.js -------------------------------------------------------------------------------- /test/specs/validators/not.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/specs/validators/not.spec.js -------------------------------------------------------------------------------- /test/specs/validators/oneOf.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/specs/validators/oneOf.spec.js -------------------------------------------------------------------------------- /test/specs/validators/patternProperties.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokkabonna/vue-vuelidate-jsonschema/HEAD/test/specs/validators/patternProperties.spec.js --------------------------------------------------------------------------------