-
Notifications
You must be signed in to change notification settings - Fork 281
Closed
Description
I was looking to leverege recenlty added "unprocessedProperties" but I see it is not loading for a field when it is referencing custom definition.
When I load below schema I was expecting "dateOfBirth" RefSchema has unprocessedProperties value of "unproc7".
is it possible to load unprocessedProperties for a field in properties when referencing another definition?
JSON Schema
{
"title": "ttt",
"description": "descr",
"$id": "http://example.org",
"default": 22,
"nullable": false,
"readOnly": false,
"writeOnly": false,
"definitions": {
"monthDayYearDate": {
"$comment": "Represents the MM/DD/YYYY date format.",
"description": "(MM/dd/yyyy)",
"type": "string",
"maxLength": 10,
"pattern": "^\\d{2}/\\d{2}/\\d{4}$"
}
},
"type": "object",
"unproc0": 1,
"unproc1": "asdasd",
"properties": {
"prop": {
"type": "string"
},
"prop2": {
"unproc4": true,
"unproc5": null
},
"prop3": {
"$ref": "#",
"unproc6": false
},
"dateOfBirth": {
"title": "Date of Birth",
"$ref": "#/definitions/monthDayYearDate",
"unproc7": {
"abc": "message 1"
}
}
}
Metadata
Metadata
Assignees
Labels
No labels