github.com/kaptinlin/jsonschema@v0.4.6/testdata/JSON-Schema-Test-Suite/tests/draft2020-12/optional/format/idn-email.json (about)

     1  [
     2      {
     3          "description": "validation of an internationalized e-mail addresses",
     4          "schema": {
     5              "$schema": "https://json-schema.org/draft/2020-12/schema",
     6              "format": "idn-email"
     7          },
     8          "tests": [
     9              {
    10                  "description": "all string formats ignore integers",
    11                  "data": 12,
    12                  "valid": true
    13              },
    14              {
    15                  "description": "all string formats ignore floats",
    16                  "data": 13.7,
    17                  "valid": true
    18              },
    19              {
    20                  "description": "all string formats ignore objects",
    21                  "data": {},
    22                  "valid": true
    23              },
    24              {
    25                  "description": "all string formats ignore arrays",
    26                  "data": [],
    27                  "valid": true
    28              },
    29              {
    30                  "description": "all string formats ignore booleans",
    31                  "data": false,
    32                  "valid": true
    33              },
    34              {
    35                  "description": "all string formats ignore nulls",
    36                  "data": null,
    37                  "valid": true
    38              },
    39              {
    40                  "description": "a valid idn e-mail (example@example.test in Hangul)",
    41                  "data": "실례@실례.테스트",
    42                  "valid": true
    43              },
    44              {
    45                  "description": "an invalid idn e-mail address",
    46                  "data": "2962",
    47                  "valid": false
    48              },
    49              {
    50                  "description": "a valid e-mail address",
    51                  "data": "joe.bloggs@example.com",
    52                  "valid": true
    53              },
    54              {
    55                  "description": "an invalid e-mail address",
    56                  "data": "2962",
    57                  "valid": false
    58              }
    59          ]
    60      }
    61  ]