(See .NET Development → Visual Studio → JSON & JSON Schema)
jq is a lightweight and flexible command-line JSON processor. It can be used to query and transform JSON.
JSON Schema does not support a datetime type directly. Instead, specify a string type with the format attribute:
{ "type": "object", "properties": { "StartDate": { "type": "string", "format": "date-time" } } }