-
Notifications
You must be signed in to change notification settings - Fork 13
Closed
Labels
Description
Do you have an ETA for $ref support as in the example below?
{
"$schema": "http://json-schema.org/draft-04/schema#",
"definitions": {
"notes": {
"type": "object",
"properties": {
"classification": {
"type": "string",
"enum": [
"Lite",
"Premium",
"Plus",
]
}
}
}
},
"title": "Customer Creative Brief",
"type": "object",
"properties": {
"notes": { "$ref": "#/definitions/notes" }
}
}