Element changes
Type: | changes |
Namespace: | http://hudson-ci.org/xsd/hudson/2.1.0/rest/build |
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<changes xmlns="http://hudson-ci.org/xsd/hudson/2.1.0/rest/build">
<kind xmlns="">...</kind>
<entry xmlns="">
<message>...</message>
<author>
<id>...</id>
<fullName>...</fullName>
<description>...</description>
</author>
<path>...</path>
<path>...</path>
<!--...more "path" elements...-->
<file>
<path>...</path>
<type>...</type>
</file>
<file>
<!--...-->
</file>
<!--...more "file" elements...-->
</entry>
<entry xmlns="">
<!--...-->
</entry>
<!--...more "entry" elements...-->
</changes>
Example JSON
{
kind : "...",
entry : [ {
message : "...",
author : {
id : "...",
fullName : "...",
description : "..."
},
path : [ "...", ... ],
file : [ {
path : "...",
type : {
}
}, ... ]
}, ... ]
}