20 lines
305 B
JSON
20 lines
305 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"type": "number",
|
|
"oneOf": [
|
|
{
|
|
"standsFor": "butt",
|
|
"const": 1
|
|
},
|
|
{
|
|
"standsFor": "round",
|
|
"const": 2
|
|
},
|
|
{
|
|
"standsFor": "square",
|
|
"const": 3
|
|
}
|
|
],
|
|
"default": 2
|
|
}
|