-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathborder_default.schema.json
32 lines (31 loc) · 1.13 KB
/
border_default.schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"$id": "https://schema.legytma.com.br/3.0.0/schema/border_default.schema.json",
"$schema": "http://json-schema.org/draft-06/schema#",
"title": "Border Default",
"description": "",
"$comment": "Created by Windol <[email protected]> at 28/04/2020.\nCopyright (c) 2020 Legytma Soluções Inteligentes (https://legytma.com.br). All rights reserved.",
"type": "object",
"allOf": [{"$ref": "https://schema.legytma.com.br/3.0.0/schema/border.schema.json"}],
"properties": {
"type": {
"$ref": "https://schema.legytma.com.br/3.0.0/schema/border.schema.json#/definitions/type",
"const": "default"
},
"top": {
"$ref": "https://schema.legytma.com.br/3.0.0/schema/border_side.schema.json",
"default": "none"
},
"bottom": {
"$ref": "https://schema.legytma.com.br/3.0.0/schema/border_side.schema.json",
"default": "none"
},
"left": {
"$ref": "https://schema.legytma.com.br/3.0.0/schema/border_side.schema.json",
"default": "none"
},
"right": {
"$ref": "https://schema.legytma.com.br/3.0.0/schema/border_side.schema.json",
"default": "none"
}
}
}