You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am gettin an error undefined type "undefined" against my schema, but the schema is valid according to several online validators. I validated against v3, v4, v6, and v7. The failure is on the address property. I stripped the schema down to minimum for debugging.
{
"$id": "http://ziti-edge.netfoundry.io/schemas/host.v1.schema.json",
"additionalProperties": false,
"properties": {
"address": {
"description": "Dial the specified ip address or hostname when a ziti client connects to the service.",
"oneOf": [
{
"type": "string",
"oneOf": [
{
"format": "ipv4"
},
{
"format": "ipv6"
}
]
},
{
"format": "idn-hostname",
"not": {
"oneOf": [
{
"format": "ipv4"
},
{
"format": "ipv6"
}
]
},
"type": "string"
}
]
}
},
"type": "object"
}
The text was updated successfully, but these errors were encountered:
I am gettin an error undefined type "undefined" against my schema, but the schema is valid according to several online validators. I validated against v3, v4, v6, and v7. The failure is on the address property. I stripped the schema down to minimum for debugging.
The text was updated successfully, but these errors were encountered: