Table of Contents

Tools

Online

Visual Studio

(See .NET DevelopmentVisual StudioJSON & JSON Schema)

Other

JSON Schema

Tools

Datetime values

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"
        }
    }
}