The home of JSON Schema validation right in your browser 🚧 Alpha 🚧 draft-7 only
Valid JSON:
xxxxxxxxxx
{
"$id": "defination.schema.json",
"type": "object",
"properties": {
"os_ip": {
"type": "string",
"format": "ipv4"
},
"os_user": {
"type": "string"
},
"os_pwd": {
"type": "string"
},
"remote_os": {
"default": "Linux",
"enum": [
"Linux",
"Windows"
]
}
},
"required": [
"os_ip",
"os_user",
"os_pwd",
"remote_os"
]
}
​
Valid JSON:
xxxxxxxxxx
{
"os_ip": "127.0.0.1",
"os_user":"root",
"os_pwd":"hello",
"remote_os": "Linux"
}
jsonschema.dev@relequestual Thanks to Sponsors: