[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]
Subject: [OASIS Issue Tracker] Created: (OBIX-7) Fix the JSON examples, especially the quotes and comma after "tag" in the second and third line
Fix the JSON examples, especially the quotes and comma after "tag" in the second and third line
-----------------------------------------------------------------------------------------------
Key: OBIX-7
URL: http://tools.oasis-open.org/issues/browse/OBIX-7
Project: OASIS Open Building Information Exchange (oBIX) TC
Issue Type: Bug
Components: ENCODINGS Specification
Affects Versions: ENCODINGS PR01
Reporter: Toby Considine
Assignee: Toby Considine
from:
{"tag":"obj", "href":"/a/", "nodes":[
{"tag","obj", "name":"b", "href":"b"}, "nodes":[
{"tag","obj", "name", "c"}, {"tag","ref", "name", "d", "href":"d"}, ]
}] }
to:
{
"tag" : "obj",
"href" : "/a/",
"nodes" : [ {
"tag" : "obj",
"name" : "b",
"href" : "b",
"nodes" : [ {
"tag" : "obj",
"name" : "c"
}, {
"tag" : "ref",
"name" : "d",
"href" : "d"
} ]
} ]
}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://tools.oasis-open.org/issues/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]