Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejava
<data>
    <item> <!--clone projects-->
      <code>PRJ-101</code>       
      <id>100</id>
      <manager_id>Mary Jane</manager_id>
      <client_id>Acme Consulting</client_id>
      <state_id>In Planning</phasestate_id>
      <summary>Project #1</summary>
      <plan_start>2010-11-02T08:00:00</plan_start>
      <Other_Details>500</Other_Details> <!-- "Other_Details" is the formula key of the custom field>
    </item>
    <item>
      <code>PRJ-102</code>
      <project_id>100</project_id>
      <manager_id>101</manager_id>
      <client_id>201</client_id>
      <state_id>2</phasestate_id>
      <summary>Project #1</summary>
      <plan_start>2010-11-02T08:00:00</plan_start>
    </item>
</data>

...

Code Block
[
  {
    "code" : "101",
    "id" : "100",
    "manager_id" : "Mary Jane" 
    "client_id" : "Acme Consulting",
    "state_id" : "In Planning",
    "summary" : "Project #1",
    "plan_start" : "2010-11-02T08:00:00",
    "Other_Details" : "500",
    "budget" : "100000"
  }
  {
    "code" : "102",
    ...
  }   
]

 

...