Skip to content

Commit 73a7684

Browse files
authored
Drop "quoted" remnants from JSON Schema & DTD data models (#672)
1 parent d7257e6 commit 73a7684

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

spec/data-model/message.dtd

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
)>
3030

3131
<!ELEMENT literal (#PCDATA)>
32-
<!ATTLIST literal quoted (true | false) #REQUIRED>
3332

3433
<!ELEMENT variable (EMPTY)>
3534
<!ATTLIST variable name NMTOKEN #REQUIRED>

spec/data-model/message.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
"type": "object",
1010
"properties": {
1111
"type": { "const": "literal" },
12-
"quoted": { "type": "boolean" },
1312
"value": { "type": "string" }
1413
},
15-
"required": ["type", "quoted", "value"]
14+
"required": ["type", "value"]
1615
},
1716
"variable": {
1817
"type": "object",

0 commit comments

Comments
 (0)