Sha256: fb2770d73902cbb7d04988d9c3948ebe9d27c326b56a18410c7ea35252f91442
Contents?: true
Size: 674 Bytes
Versions: 9
Compression:
Stored size: 674 Bytes
Contents
Feature: Object constraints Scenario: Object has no specified properties Given the following JSON schema: """json { "$schema": "http://json-schema.org/draft-04/schema#", "type": "object" } """ When I run the JSON data generator Then the output should match the schema Scenario: Minimum number of properties Given the following JSON schema: """json { "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "minProperties": 3, "properties": { } } """ When I run the JSON data generator Then the output should match the schema
Version data entries
9 entries across 9 versions & 1 rubygems