builds element
Type: | builds |
Namespace: | http://hudson-ci.org/xsd/hudson/2.1.0/rest/build |
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<builds xmlns="http://hudson-ci.org/xsd/hudson/2.1.0/rest/build">
<build xmlns="">
<type>...</type>
<url>...</url>
<id>...</id>
<number>...</number>
<description>...</description>
<projectName>...</projectName>
<duration>...</duration>
<timeStamp>...</timeStamp>
<result>...</result>
<state>...</state>
<kept>...</kept>
<causes>
<type>...</type>
<description>...</description>
</causes>
<causes>
<!--...-->
</causes>
<!--...more "causes" elements...-->
<participants>...</participants>
<participants>...</participants>
<!--...more "participants" elements...-->
<culprits>...</culprits>
<culprits>...</culprits>
<!--...more "culprits" elements...-->
<changesAvailable>...</changesAvailable>
<testsAvailable>...</testsAvailable>
</build>
<build xmlns="">
<!--...-->
</build>
<!--...more "build" elements...-->
</builds>
Example JSON
{
"build" : [ {
"type" : "...",
"url" : "...",
"id" : "...",
"number" : ...,
"description" : "...",
"projectName" : "...",
"duration" : ...,
"timeStamp" : ...,
"result" : "SUCCESS",
"state" : "NOT_STARTED",
"kept" : false,
"causes" : [ {
"type" : "...",
"description" : "..."
}, ... ],
"participants" : [ "...", ... ],
"culprits" : [ "...", ... ],
"changesAvailable" : false,
"testsAvailable" : false
}, ... ]
}