Difference between revisions of "Atom Feed Usage"

From FPDS-NG

Line 1: Line 1:
 
Usage: To construct the ATOM Feed URL with required search criteria follow the below methodology
 
Usage: To construct the ATOM Feed URL with required search criteria follow the below methodology
 
ATOM_URL = BASE_URL + “ “ + “URL String of the Search Criteria”  
 
ATOM_URL = BASE_URL + “ “ + “URL String of the Search Criteria”  
 +
 
Repeat the search criteria to add additional search criteria
 
Repeat the search criteria to add additional search criteria
  
 
BASE_URL: https://beta.fpdsng.com/dbsight/FEEDS/ATOM?FEEDNAME=DETAIL&q=
 
BASE_URL: https://beta.fpdsng.com/dbsight/FEEDS/ATOM?FEEDNAME=DETAIL&q=
 +
 +
 +
 +
 
For example:
 
For example:
1. Search the data based on the Last Modified Date
+
<OL><LI>Search the data based on the Last Modified Date
ATOM_URL = https://beta.fpdsng.com/dbsight/FEEDS/ATOM?FEEDNAME=DETAIL&q=” + “ “  
+
ATOM_URL = https://beta.fpdsng.com/dbsight/FEEDS/ATOM?FEEDNAME=DETAIL&q=” + “ “ + LAST_MODIFIED_DATE:[2006/04/02,2007/04/02]
+ LAST_MODIFIED_DATE:[2006/04/02,2007/04/02]
 
  
2. Search the data based on:
+
</li><li>Search the data based on:
a. Last Modified Date  
+
* Last Modified Date  
b. GSA (Agency code of 3600)
+
* GSA (Agency code of 3600)
 
ATOM_URL = https://beta.fpdsng.com/dbsight/FEEDS/ATOM?FEEDNAME=DETAIL&q= + “ “ + LAST_MODIFIED_DATE:[2006/04/02,2007/04/02] + “ “
 
ATOM_URL = https://beta.fpdsng.com/dbsight/FEEDS/ATOM?FEEDNAME=DETAIL&q= + “ “ + LAST_MODIFIED_DATE:[2006/04/02,2007/04/02] + “ “
 
+ AGENCY_CODE:”3600”
 
+ AGENCY_CODE:”3600”

Revision as of 03:41, 5 November 2009

Usage: To construct the ATOM Feed URL with required search criteria follow the below methodology ATOM_URL = BASE_URL + “ “ + “URL String of the Search Criteria”

Repeat the search criteria to add additional search criteria

BASE_URL: https://beta.fpdsng.com/dbsight/FEEDS/ATOM?FEEDNAME=DETAIL&q=



For example:

  1. Search the data based on the Last Modified Date ATOM_URL = https://beta.fpdsng.com/dbsight/FEEDS/ATOM?FEEDNAME=DETAIL&q=” + “ “ + LAST_MODIFIED_DATE:[2006/04/02,2007/04/02]
  2. Search the data based on:
    • Last Modified Date
    • GSA (Agency code of 3600)
    ATOM_URL = https://beta.fpdsng.com/dbsight/FEEDS/ATOM?FEEDNAME=DETAIL&q= + “ “ + LAST_MODIFIED_DATE:[2006/04/02,2007/04/02] + “ “ + AGENCY_CODE:”3600” 3. Search the data based on the a. Last Modified Date b. GSA (Agency code of 3600) c. Awards only ATOM_URL = https://beta.fpdsng.com/dbsight/FEEDS/ATOM?FEEDNAME=DETAIL&q= + “ “ + LAST_MODIFIED_DATE:[2006/04/02,2007/04/02] + “ “ + AGENCY_CODE:”3600” + “ “ + CONTRACT_TYPE:"AWARD" Sample URL: https://beta.fpdsng.com/dbsight/FEEDS/ATOM?FEEDNAME=DETAIL&q=LAST_MODIFIED_DATE:[2006/04/02,2007/04/02] AGENCY_CODE:"3600" CONTRACT_TYPE:"AWARD"