25 lines
440 B
JSON
25 lines
440 B
JSON
|
{
|
||
|
"title": "definitions",
|
||
|
"definitions": {
|
||
|
"contextualizedFieldName": {
|
||
|
"type": "string",
|
||
|
"pattern": "^(this\\.)?.+$"
|
||
|
},
|
||
|
"dataTypeArgsCount": {
|
||
|
"oneOf": [
|
||
|
{
|
||
|
"$ref": "#/definitions/contextualizedFieldName"
|
||
|
},
|
||
|
{
|
||
|
"type": "number"
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
"fieldName": {
|
||
|
"type": "string",
|
||
|
"pattern": "^[a-zA-Z0-9_]+$"
|
||
|
}
|
||
|
},
|
||
|
"type": "object"
|
||
|
}
|