Closed
Description
- VS Code Version: 1.56.0
- OS Version: Windows_NT x64 10.0.19041
Steps to Reproduce:
- Create a schema file:
{
"properties": {
"address": {
"type": "string",
"format": "ipv4"
}
}
}
- Create a json file:
{
"$schema": "path/to/the/above/schema",
"address": "anything except a valid ipv4 address"
}
Expected result:
The address
property should make a String is not a valid ipv4 address
warning. Just like { "format": "email" }
do.
Does this issue occur when all extensions are disabled?: Yes