Sha256: e3ad0d4f794e507a7c1594a8ef2bc3a53fd4c2988d0ddf76b92d41caf4c704a9

Contents?: true

Size: 822 Bytes

Versions: 6

Compression:

Stored size: 822 Bytes

Contents

[
    {
        "description": "validation of IPv6 addresses",
        "schema": {"format": "ipv6"},
        "tests": [
            {
                "description": "a valid IPv6 address",
                "data": "::1",
                "valid": true
            },
            {
                "description": "an IPv6 address with out-of-range values",
                "data": "12345::",
                "valid": false
            },
            {
                "description": "an IPv6 address with too many components",
                "data": "1:1:1:1:1:1:1:1:1:1:1:1:1:1:1:1",
                "valid": false
            },
            {
                "description": "an IPv6 address containing illegal characters",
                "data": "::laptop",
                "valid": false
            }
        ]
    }
]

Version data entries

6 entries across 3 versions & 1 rubygems

Version Path
json_schemer-0.2.9 JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/ipv6.json
json_schemer-0.2.9 JSON-Schema-Test-Suite/tests/draft7/optional/format/ipv6.json
json_schemer-0.2.8 JSON-Schema-Test-Suite/tests/draft2019-09/optional/format/ipv6.json
json_schemer-0.2.8 JSON-Schema-Test-Suite/tests/draft7/optional/format/ipv6.json
json_schemer-0.2.7 JSON-Schema-Test-Suite/tests/draft2019-08/optional/format/ipv6.json
json_schemer-0.2.7 JSON-Schema-Test-Suite/tests/draft7/optional/format/ipv6.json