Element build

Type: build
Namespace: http://hudson-ci.org/xsd/hudson/2.1.0/rest/build

Example XML

<?xml version="1.0" encoding="UTF-8"?> <build xmlns="http://hudson-ci.org/xsd/hudson/2.1.0/rest/build"> <type xmlns="">...</type> <url xmlns="">...</url> <id xmlns="">...</id> <number xmlns="">...</number> <description xmlns="">...</description> <projectName xmlns="">...</projectName> <duration xmlns="">...</duration> <timeStamp xmlns="">...</timeStamp> <result xmlns="">...</result> <state xmlns="">...</state> <kept xmlns="">...</kept> <causes xmlns=""> <type>...</type> <description>...</description> </causes> <causes xmlns=""> <!--...--> </causes> <!--...more "causes" elements...--> <participants xmlns="">...</participants> <participants xmlns="">...</participants> <!--...more "participants" elements...--> <culprits xmlns="">...</culprits> <culprits xmlns="">...</culprits> <!--...more "culprits" elements...--> <changesAvailable xmlns="">...</changesAvailable> <testsAvailable xmlns="">...</testsAvailable> </build>

Example JSON

{ type : "...", url : "...", id : "...", number : ..., description : "...", projectName : "...", duration : ..., timeStamp : ..., result : { }, state : { }, kept : false, causes : [ { @type : "{http://hudson-ci.org/xsd/hudson/2.1.0/rest/build}cause", type : "...", description : "..." }, ... ], participants : [ "...", ... ], culprits : [ "...", ... ], changesAvailable : false, testsAvailable : false }