github.com/alecthomas/jsonschema@v0.0.0-20220216202328-9eeeec9d044b/fixtures/compact_date.json (about)

     1  {
     2    "$schema": "http://json-schema.org/draft-04/schema#",
     3    "$ref": "#/definitions/CompactDate",
     4    "definitions": {
     5      "CompactDate": {
     6        "pattern": "^[0-9]{4}-[0-1][0-9]$",
     7        "type": "string",
     8        "title": "Compact Date",
     9        "description": "Short date that only includes year and month"
    10      }
    11    }
    12  }