API design
Extensive JSON APIs allow you to interact with the data in your GGCE instance.
The API endpoints ensure that the the business logic is properly applied and followed.
Access tokens
All endpoints require a valid access token , and we will get to that in the next section .
The HTTP header Authorization: Bearer <access token>
must be present in every API request.
Unauthenticated requests and requests with an invalid access token will result in 401 Unauthorized HTTP error code.
403 Forbidden signifies that the user does not have permissions to access the operation or the data.
The API responds with data in JSON format, and for requests that require a body, expects the body to be valid JSON.
Endpoint paths
The common path prefix for the current version of the API is /api/v1 .
API operations are then grouped by the type of the record, and the same path prefix is used for that type:
Type Path prefix Description Accession /api/v1/a Business operations and CRUD endpoints. For example, /api/v1/a/{id}/assign-doi that will submit the accession with id
to ITPGRFA's DOI Registration Service and obtain a DOI for it. AccessionSource /api/v1/a/source CRUD endpoints. AccessionPedigree /api/v1/a/pedigree CRUD endpoints. Inventory /api/v1/i Business operations and CRUD endpoints. InventoryViability /api/v1/i/viability Business operations and CRUD endpoints. ...
CRUD operations
API provides create, read, update, delete (CRUD) endpoints for all types of records supported by GGCE.
Create a new record
POST the object in request body to the corresponding .../XXX endpoint to create a new record of type XXX .
The record must have all the required fields and must pass all data validation constraints defined by GGCE.
Response
The API will return the created object, including any auto-generated properties such as id
, createdBy
, createdDate
(and barcode
for Inventories).
Validation error : the provided record is invalid. It may be missing required fields or the data does not satisfy the constraints imposed by GGCE.
Read a record by its id
GET the object by its id with the .../XXX/{id} endpoint.
Response
The API will return the object matching the id
. A 404 error means that there is no record with this id
in the system.
Update an existing record
PUT the updated object in request body to the .../XXX endpoint to update an existing record.
The modifiedDate
of your updated object must not be different from what is stored on the server. When the two don't match, the server will respond with a HTTP error,
meaning that your version of the record is outdated and should be reloaded.
Response
The API will return the updated object. A 404 error means that there is no record with this id
in the system.
Other errors include:
Validation error : your record is invalid. It may be missing required fields or the data does not satisfy the constraints imposed by GGCE.
Concurrency error : your version of the record is outdated according to modifiedDate
.
Delete a record by id
Use HTTP DELETE method on .../XXX/{id} endpoint to remove a record by its id .
Response
The API will return the deleted object, including its id
.
List records
API provides a GET .../XXX/list endpoint that allows you to browse the records of that type.
All /list endpoints accept pagination parameters described below. They must be provided in the URL query string.
Parameter Description l Specifies the requested size of the page. l
is not required and a sensible default will be used by the API. Note that if the requested page length exceeds API limits, the API will return less than the requested number of records per page. p Defaults to 0
, representing the first page. The second page is 1
, and so on. s List of properties to sort the records. For example, s=name,id
will sort the records by name
, then by id
, and return the requested page after sorting. Sorting is ascending by default. d Allows you to specify the sort direction for the properties listed in s
. For example, s=name,id&d=DESC,ASC
is equivalent to ORDER BY name DESC, id ASC
in SQL.
Response
The response from the server contains the records and pagination information:
{ "content": [ ], // array of records "number": 0, // page index "size": 100, // page size "numberOfElements": 100, // number of records on this page, can be less than "size" "totalElements": 134, // total number of records in the database "totalPages": 2, "first": true, "last": false, "sort": [ ] }
content
is the array of records that you're interested in, and it should contain numberOfElements
objects.
number
is the index of the returned page. It should correspond with the p parameter you submitted.
size
is the size of the page. API may return less than the requested l records per page.
numberOfElements
is usually the same as the size of the content
array.
totalElements
provides the total number of records in the database.
totalPages
is calculated from totalElements / size
.
first
means API returned the first page (i.e. number === 0
).
last
means that the page is the last page (i.e. number === totalPages - 1
).
sort
provides sorting information applied by the server.
JSON
createdBy createdDate modifiedBy modifiedDate required
string <date-time> (Last modified date)
Maintained by the server, original value must be included in all update and delete operations.
ownedBy ownedDate id site accessionNumber string [ 0 .. 128 ] characters
mlsStatus string [ 0 .. 30 ] characters
accessionNumberPart1 required
accessionNumberPart2 accessionNumberPart3 backupLocation1Site backupLocation2Site doi string ^10\.[0-9]+(\.[0-9]+)*/.+
improvementStatusCode initialReceivedDate initialReceivedDateCode initialReceivedFormCode isBackedUp isCore isWebVisible lifeFormCode note reproductiveUniformityCode statusCode curationTypeCode taxonomySpecies names Array of objects (AccessionInvName)
preferredName
Copy
Expand all Collapse all { "createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedBy" : 0 ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedBy" :
{ "id" : 0 ,
"version" : 0 ,
"active" : true ,
"createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"lastModifiedBy" : 0 ,
"lastModifiedDate" : "2019-08-24T14:15:22Z" ,
"principal" : true ,
"sid" : "string" ,
"fullName" : "string"
} , "ownedDate" : "2019-08-24T14:15:22Z" ,
"id" : 0 ,
"site" :
{ "createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedDate" : "2019-08-24T14:15:22Z" ,
"faoInstituteNumber" : "string" ,
"id" : 0 ,
"isDistributionSite" : "string" ,
"isInternal" : "string" ,
"note" : "string" ,
"organizationAbbrev" : "string" ,
"providerIdentifier" : "string" ,
"siteLongName" : "string" ,
"siteShortName" : "string" ,
"typeCode" : "string"
} , "accessionNumber" : "string" ,
"mlsStatus" : "string" ,
"accessionNumberPart1" : "string" ,
"accessionNumberPart2" : 0 ,
"accessionNumberPart3" : "string" ,
"backupLocation1Site" :
{ "createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedDate" : "2019-08-24T14:15:22Z" ,
"faoInstituteNumber" : "string" ,
"id" : 0 ,
"isDistributionSite" : "string" ,
"isInternal" : "string" ,
"note" : "string" ,
"organizationAbbrev" : "string" ,
"providerIdentifier" : "string" ,
"siteLongName" : "string" ,
"siteShortName" : "string" ,
"typeCode" : "string"
} , "backupLocation2Site" :
{ "createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedDate" : "2019-08-24T14:15:22Z" ,
"faoInstituteNumber" : "string" ,
"id" : 0 ,
"isDistributionSite" : "string" ,
"isInternal" : "string" ,
"note" : "string" ,
"organizationAbbrev" : "string" ,
"providerIdentifier" : "string" ,
"siteLongName" : "string" ,
"siteShortName" : "string" ,
"typeCode" : "string"
} , "doi" : "string" ,
"improvementStatusCode" : "string" ,
"initialReceivedDate" : "2019-08-24T14:15:22Z" ,
"initialReceivedDateCode" : "string" ,
"initialReceivedFormCode" : "string" ,
"isBackedUp" : "string" ,
"isCore" : "string" ,
"isWebVisible" : "string" ,
"lifeFormCode" : "string" ,
"note" : "string" ,
"reproductiveUniformityCode" : "string" ,
"statusCode" : "string" ,
"curationTypeCode" : "string" ,
"taxonomySpecies" :
{ "createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedBy" : 0 ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedBy" :
{ "id" : 0 ,
"version" : 0 ,
"active" : true ,
"createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"lastModifiedBy" : 0 ,
"lastModifiedDate" : "2019-08-24T14:15:22Z" ,
"principal" : true ,
"sid" : "string" ,
"fullName" : "string"
} , "ownedDate" : "2019-08-24T14:15:22Z" ,
"id" : 0 ,
"grinId" : 0 ,
"alternateName" : "string" ,
"commonFertilizationCode" : "string" ,
"curator1Cooperator" :
{ "createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedBy" : 0 ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedBy" :
{ "id" : 0 ,
"version" : 0 ,
"active" : true ,
"createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"lastModifiedBy" : 0 ,
"lastModifiedDate" : "2019-08-24T14:15:22Z" ,
"principal" : true ,
"sid" : "string" ,
"fullName" : "string"
} , "ownedDate" : "2019-08-24T14:15:22Z" ,
"id" : 0 ,
"addressLine1" : "string" ,
"addressLine2" : "string" ,
"addressLine3" : "string" ,
"categoryCode" : "string" ,
"city" : "string" ,
"currentCooperator" : 0 ,
"disciplineCode" : "string" ,
"email" : "string" ,
"fax" : "string" ,
"firstName" : "string" ,
"geography" :
{ "createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedBy" : 0 ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedDate" : "2019-08-24T14:15:22Z" ,
"adm1" : "string" ,
"adm1Abbrev" : "string" ,
"adm1TypeCode" : "string" ,
"adm2" : "string" ,
"adm2Abbrev" : "string" ,
"adm2TypeCode" : "string" ,
"adm3" : "string" ,
"adm3Abbrev" : "string" ,
"adm3TypeCode" : "string" ,
"adm4" : "string" ,
"adm4Abbrev" : "string" ,
"adm4TypeCode" : "string" ,
"changedDate" : "2019-08-24T14:15:22Z" ,
"countryCode" : "string" ,
"currentGeography" : { } ,
"id" : 0 ,
"isValid" : "s" ,
"note" : "string"
} , "job" : "string" ,
"lastName" : "string" ,
"note" : "string" ,
"organization" : "string" ,
"organizationAbbrev" : "string" ,
"organizationRegionCode" : "string" ,
"postalIndex" : "string" ,
"primaryPhone" : "string" ,
"secondaryAddressLine1" : "string" ,
"secondaryAddressLine2" : "string" ,
"secondaryAddressLine3" : "string" ,
"secondaryCity" : "string" ,
"secondaryEmail" : "string" ,
"secondaryGeography" :
{ "createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedBy" : 0 ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedDate" : "2019-08-24T14:15:22Z" ,
"adm1" : "string" ,
"adm1Abbrev" : "string" ,
"adm1TypeCode" : "string" ,
"adm2" : "string" ,
"adm2Abbrev" : "string" ,
"adm2TypeCode" : "string" ,
"adm3" : "string" ,
"adm3Abbrev" : "string" ,
"adm3TypeCode" : "string" ,
"adm4" : "string" ,
"adm4Abbrev" : "string" ,
"adm4TypeCode" : "string" ,
"changedDate" : "2019-08-24T14:15:22Z" ,
"countryCode" : "string" ,
"currentGeography" : { } ,
"id" : 0 ,
"isValid" : "s" ,
"note" : "string"
} , "secondaryOrganization" : "string" ,
"secondaryOrganizationAbbrev" : "string" ,
"secondaryPhone" : "string" ,
"secondaryPostalIndex" : "string" ,
"site" :
{ "createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedDate" : "2019-08-24T14:15:22Z" ,
"faoInstituteNumber" : "string" ,
"id" : 0 ,
"isDistributionSite" : "string" ,
"isInternal" : "string" ,
"note" : "string" ,
"organizationAbbrev" : "string" ,
"providerIdentifier" : "string" ,
"siteLongName" : "string" ,
"siteShortName" : "string" ,
"typeCode" : "string"
} , "statusCode" : "string" ,
"sysLang" :
{ "createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedBy" : 0 ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedBy" :
{ "id" : 0 ,
"version" : 0 ,
"active" : true ,
"createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"lastModifiedBy" : 0 ,
"lastModifiedDate" : "2019-08-24T14:15:22Z" ,
"principal" : true ,
"sid" : "string" ,
"fullName" : "string"
} , "ownedDate" : "2019-08-24T14:15:22Z" ,
"description" : "string" ,
"id" : 0 ,
"isEnabled" : "s" ,
"ietfTag" : "string" ,
"iso6393Tag" : "string" ,
"scriptDirection" : "string" ,
"title" : "string"
} , "title" : "string" ,
"webCooperator" :
{ "createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedDate" : "2019-08-24T14:15:22Z" ,
"id" : 0 ,
"addressLine1" : "string" ,
"addressLine2" : "string" ,
"addressLine3" : "string" ,
"categoryCode" : "stri" ,
"city" : "string" ,
"discipline" : "string" ,
"email" : "string" ,
"fax" : "string" ,
"firstName" : "string" ,
"geography" :
{ "createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedBy" : 0 ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedDate" : "2019-08-24T14:15:22Z" ,
"adm1" : "string" ,
"adm1Abbrev" : "string" ,
"adm1TypeCode" : "string" ,
"adm2" : "string" ,
"adm2Abbrev" : "string" ,
"adm2TypeCode" : "string" ,
"adm3" : "string" ,
"adm3Abbrev" : "string" ,
"adm3TypeCode" : "string" ,
"adm4" : "string" ,
"adm4Abbrev" : "string" ,
"adm4TypeCode" : "string" ,
"changedDate" : "2019-08-24T14:15:22Z" ,
"countryCode" : "string" ,
"currentGeography" : { } ,
"id" : 0 ,
"isValid" : "s" ,
"note" : "string"
} , "initials" : "string" ,
"isActive" : "s" ,
"job" : "string" ,
"lastName" : "string" ,
"note" : "string" ,
"organization" : "string" ,
"organizationCode" : "string" ,
"organizationRegion" : "string" ,
"postalIndex" : "string" ,
"primaryPhone" : "string" ,
"secondaryPhone" : "string" ,
"title" : "string"
} , "faoInstituteNumber" : "string" ,
"itpgrfaPid" : "string"
} , "curator2Cooperator" :
{ "createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedBy" : 0 ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedBy" :
{ "id" : 0 ,
"version" : 0 ,
"active" : true ,
"createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"lastModifiedBy" : 0 ,
"lastModifiedDate" : "2019-08-24T14:15:22Z" ,
"principal" : true ,
"sid" : "string" ,
"fullName" : "string"
} , "ownedDate" : "2019-08-24T14:15:22Z" ,
"id" : 0 ,
"addressLine1" : "string" ,
"addressLine2" : "string" ,
"addressLine3" : "string" ,
"categoryCode" : "string" ,
"city" : "string" ,
"currentCooperator" : 0 ,
"disciplineCode" : "string" ,
"email" : "string" ,
"fax" : "string" ,
"firstName" : "string" ,
"geography" :
{ "createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedBy" : 0 ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedDate" : "2019-08-24T14:15:22Z" ,
"adm1" : "string" ,
"adm1Abbrev" : "string" ,
"adm1TypeCode" : "string" ,
"adm2" : "string" ,
"adm2Abbrev" : "string" ,
"adm2TypeCode" : "string" ,
"adm3" : "string" ,
"adm3Abbrev" : "string" ,
"adm3TypeCode" : "string" ,
"adm4" : "string" ,
"adm4Abbrev" : "string" ,
"adm4TypeCode" : "string" ,
"changedDate" : "2019-08-24T14:15:22Z" ,
"countryCode" : "string" ,
"currentGeography" : { } ,
"id" : 0 ,
"isValid" : "s" ,
"note" : "string"
} , "job" : "string" ,
"lastName" : "string" ,
"note" : "string" ,
"organization" : "string" ,
"organizationAbbrev" : "string" ,
"organizationRegionCode" : "string" ,
"postalIndex" : "string" ,
"primaryPhone" : "string" ,
"secondaryAddressLine1" : "string" ,
"secondaryAddressLine2" : "string" ,
"secondaryAddressLine3" : "string" ,
"secondaryCity" : "string" ,
"secondaryEmail" : "string" ,
"secondaryGeography" :
{ "createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedBy" : 0 ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedDate" : "2019-08-24T14:15:22Z" ,
"adm1" : "string" ,
"adm1Abbrev" : "string" ,
"adm1TypeCode" : "string" ,
"adm2" : "string" ,
"adm2Abbrev" : "string" ,
"adm2TypeCode" : "string" ,
"adm3" : "string" ,
"adm3Abbrev" : "string" ,
"adm3TypeCode" : "string" ,
"adm4" : "string" ,
"adm4Abbrev" : "string" ,
"adm4TypeCode" : "string" ,
"changedDate" : "2019-08-24T14:15:22Z" ,
"countryCode" : "string" ,
"currentGeography" : { } ,
"id" : 0 ,
"isValid" : "s" ,
"note" : "string"
} , "secondaryOrganization" : "string" ,
"secondaryOrganizationAbbrev" : "string" ,
"secondaryPhone" : "string" ,
"secondaryPostalIndex" : "string" ,
"site" :
{ "createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedDate" : "2019-08-24T14:15:22Z" ,
"faoInstituteNumber" : "string" ,
"id" : 0 ,
"isDistributionSite" : "string" ,
"isInternal" : "string" ,
"note" : "string" ,
"organizationAbbrev" : "string" ,
"providerIdentifier" : "string" ,
"siteLongName" : "string" ,
"siteShortName" : "string" ,
"typeCode" : "string"
} , "statusCode" : "string" ,
"sysLang" :
{ "createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedBy" : 0 ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedBy" :
{ "id" : 0 ,
"version" : 0 ,
"active" : true ,
"createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"lastModifiedBy" : 0 ,
"lastModifiedDate" : "2019-08-24T14:15:22Z" ,
"principal" : true ,
"sid" : "string" ,
"fullName" : "string"
} , "ownedDate" : "2019-08-24T14:15:22Z" ,
"description" : "string" ,
"id" : 0 ,
"isEnabled" : "s" ,
"ietfTag" : "string" ,
"iso6393Tag" : "string" ,
"scriptDirection" : "string" ,
"title" : "string"
} , "title" : "string" ,
"webCooperator" :
{ "createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedDate" : "2019-08-24T14:15:22Z" ,
"id" : 0 ,
"addressLine1" : "string" ,
"addressLine2" : "string" ,
"addressLine3" : "string" ,
"categoryCode" : "stri" ,
"city" : "string" ,
"discipline" : "string" ,
"email" : "string" ,
"fax" : "string" ,
"firstName" : "string" ,
"geography" :
{ "createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedBy" : 0 ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedDate" : "2019-08-24T14:15:22Z" ,
"adm1" : "string" ,
"adm1Abbrev" : "string" ,
"adm1TypeCode" : "string" ,
"adm2" : "string" ,
"adm2Abbrev" : "string" ,
"adm2TypeCode" : "string" ,
"adm3" : "string" ,
"adm3Abbrev" : "string" ,
"adm3TypeCode" : "string" ,
"adm4" : "string" ,
"adm4Abbrev" : "string" ,
"adm4TypeCode" : "string" ,
"changedDate" : "2019-08-24T14:15:22Z" ,
"countryCode" : "string" ,
"currentGeography" : { } ,
"id" : 0 ,
"isValid" : "s" ,
"note" : "string"
} , "initials" : "string" ,
"isActive" : "s" ,
"job" : "string" ,
"lastName" : "string" ,
"note" : "string" ,
"organization" : "string" ,
"organizationCode" : "string" ,
"organizationRegion" : "string" ,
"postalIndex" : "string" ,
"primaryPhone" : "string" ,
"secondaryPhone" : "string" ,
"title" : "string"
} , "faoInstituteNumber" : "string" ,
"itpgrfaPid" : "string"
} , "currentTaxonomySpecies" : 0 ,
"formaAuthority" : "string" ,
"formaName" : "string" ,
"formaRankType" : "string" ,
"isFormaHybrid" : "string" ,
"isNamePending" : "string" ,
"isSpecificHybrid" : "string" ,
"isSubspecificHybrid" : "string" ,
"isSubvarietalHybrid" : "string" ,
"isVarietalHybrid" : "string" ,
"lifeFormCode" : "string" ,
"name" : "string" ,
"nameAuthority" : "string" ,
"nameVerifiedDate" : "2019-08-24T14:15:22Z" ,
"nomenNumber" : 0 ,
"note" : "string" ,
"priority1Site" :
{ "createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedDate" : "2019-08-24T14:15:22Z" ,
"faoInstituteNumber" : "string" ,
"id" : 0 ,
"isDistributionSite" : "string" ,
"isInternal" : "string" ,
"note" : "string" ,
"organizationAbbrev" : "string" ,
"providerIdentifier" : "string" ,
"siteLongName" : "string" ,
"siteShortName" : "string" ,
"typeCode" : "string"
} , "priority2Site" :
{ "createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedDate" : "2019-08-24T14:15:22Z" ,
"faoInstituteNumber" : "string" ,
"id" : 0 ,
"isDistributionSite" : "string" ,
"isInternal" : "string" ,
"note" : "string" ,
"organizationAbbrev" : "string" ,
"providerIdentifier" : "string" ,
"siteLongName" : "string" ,
"siteShortName" : "string" ,
"typeCode" : "string"
} , "protologue" : "string" ,
"protologueVirtualPath" : "string" ,
"restrictionCode" : "string" ,
"siteNote" : "string" ,
"speciesAuthority" : "string" ,
"speciesName" : "string" ,
"subspeciesAuthority" : "string" ,
"subspeciesName" : "string" ,
"subvarietyAuthority" : "string" ,
"subvarietyName" : "string" ,
"synonymCode" : "string" ,
"taxonomyGenus" :
{ "createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedBy" : 0 ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedDate" : "2019-08-24T14:15:22Z" ,
"genusAuthority" : "string" ,
"genusName" : "string" ,
"hybridCode" : "string" ,
"id" : 0 ,
"grinId" : 0 ,
"note" : "string" ,
"qualifyingCode" : "string" ,
"sectionName" : "string" ,
"seriesName" : "string" ,
"subgenusName" : "string" ,
"subsectionName" : "string" ,
"subseriesName" : "string" ,
"taxonomyFamily" :
{ "createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedDate" : "2019-08-24T14:15:22Z" ,
"id" : 0 ,
"grinId" : 0 ,
"alternateName" : "string" ,
"familyAuthority" : "string" ,
"familyName" : "string" ,
"subfamilyName" : "string" ,
"subtribeName" : "string" ,
"suprafamilyRankCode" : "string" ,
"suprafamilyRankName" : "string" ,
"tribeName" : "string" ,
"familyTypeCode" : "string"
} , "isWebVisible" : "string" ,
"name" : "string"
} , "varietyAuthority" : "string" ,
"varietyName" : "string" ,
"verifierCooperator" :
{ "createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedBy" : 0 ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedBy" :
{ "id" : 0 ,
"version" : 0 ,
"active" : true ,
"createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"lastModifiedBy" : 0 ,
"lastModifiedDate" : "2019-08-24T14:15:22Z" ,
"principal" : true ,
"sid" : "string" ,
"fullName" : "string"
} , "ownedDate" : "2019-08-24T14:15:22Z" ,
"id" : 0 ,
"addressLine1" : "string" ,
"addressLine2" : "string" ,
"addressLine3" : "string" ,
"categoryCode" : "string" ,
"city" : "string" ,
"currentCooperator" : 0 ,
"disciplineCode" : "string" ,
"email" : "string" ,
"fax" : "string" ,
"firstName" : "string" ,
"geography" :
{ "createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedBy" : 0 ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedDate" : "2019-08-24T14:15:22Z" ,
"adm1" : "string" ,
"adm1Abbrev" : "string" ,
"adm1TypeCode" : "string" ,
"adm2" : "string" ,
"adm2Abbrev" : "string" ,
"adm2TypeCode" : "string" ,
"adm3" : "string" ,
"adm3Abbrev" : "string" ,
"adm3TypeCode" : "string" ,
"adm4" : "string" ,
"adm4Abbrev" : "string" ,
"adm4TypeCode" : "string" ,
"changedDate" : "2019-08-24T14:15:22Z" ,
"countryCode" : "string" ,
"currentGeography" : { } ,
"id" : 0 ,
"isValid" : "s" ,
"note" : "string"
} , "job" : "string" ,
"lastName" : "string" ,
"note" : "string" ,
"organization" : "string" ,
"organizationAbbrev" : "string" ,
"organizationRegionCode" : "string" ,
"postalIndex" : "string" ,
"primaryPhone" : "string" ,
"secondaryAddressLine1" : "string" ,
"secondaryAddressLine2" : "string" ,
"secondaryAddressLine3" : "string" ,
"secondaryCity" : "string" ,
"secondaryEmail" : "string" ,
"secondaryGeography" :
{ "createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedBy" : 0 ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedDate" : "2019-08-24T14:15:22Z" ,
"adm1" : "string" ,
"adm1Abbrev" : "string" ,
"adm1TypeCode" : "string" ,
"adm2" : "string" ,
"adm2Abbrev" : "string" ,
"adm2TypeCode" : "string" ,
"adm3" : "string" ,
"adm3Abbrev" : "string" ,
"adm3TypeCode" : "string" ,
"adm4" : "string" ,
"adm4Abbrev" : "string" ,
"adm4TypeCode" : "string" ,
"changedDate" : "2019-08-24T14:15:22Z" ,
"countryCode" : "string" ,
"currentGeography" : { } ,
"id" : 0 ,
"isValid" : "s" ,
"note" : "string"
} , "secondaryOrganization" : "string" ,
"secondaryOrganizationAbbrev" : "string" ,
"secondaryPhone" : "string" ,
"secondaryPostalIndex" : "string" ,
"site" :
{ "createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedDate" : "2019-08-24T14:15:22Z" ,
"faoInstituteNumber" : "string" ,
"id" : 0 ,
"isDistributionSite" : "string" ,
"isInternal" : "string" ,
"note" : "string" ,
"organizationAbbrev" : "string" ,
"providerIdentifier" : "string" ,
"siteLongName" : "string" ,
"siteShortName" : "string" ,
"typeCode" : "string"
} , "statusCode" : "string" ,
"sysLang" :
{ "createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedBy" : 0 ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedBy" :
{ "id" : 0 ,
"version" : 0 ,
"active" : true ,
"createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"lastModifiedBy" : 0 ,
"lastModifiedDate" : "2019-08-24T14:15:22Z" ,
"principal" : true ,
"sid" : "string" ,
"fullName" : "string"
} , "ownedDate" : "2019-08-24T14:15:22Z" ,
"description" : "string" ,
"id" : 0 ,
"isEnabled" : "s" ,
"ietfTag" : "string" ,
"iso6393Tag" : "string" ,
"scriptDirection" : "string" ,
"title" : "string"
} , "title" : "string" ,
"webCooperator" :
{ "createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedDate" : "2019-08-24T14:15:22Z" ,
"id" : 0 ,
"addressLine1" : "string" ,
"addressLine2" : "string" ,
"addressLine3" : "string" ,
"categoryCode" : "stri" ,
"city" : "string" ,
"discipline" : "string" ,
"email" : "string" ,
"fax" : "string" ,
"firstName" : "string" ,
"geography" :
{ "createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedBy" : 0 ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedDate" : "2019-08-24T14:15:22Z" ,
"adm1" : "string" ,
"adm1Abbrev" : "string" ,
"adm1TypeCode" : "string" ,
"adm2" : "string" ,
"adm2Abbrev" : "string" ,
"adm2TypeCode" : "string" ,
"adm3" : "string" ,
"adm3Abbrev" : "string" ,
"adm3TypeCode" : "string" ,
"adm4" : "string" ,
"adm4Abbrev" : "string" ,
"adm4TypeCode" : "string" ,
"changedDate" : "2019-08-24T14:15:22Z" ,
"countryCode" : "string" ,
"currentGeography" : { } ,
"id" : 0 ,
"isValid" : "s" ,
"note" : "string"
} , "initials" : "string" ,
"isActive" : "s" ,
"job" : "string" ,
"lastName" : "string" ,
"note" : "string" ,
"organization" : "string" ,
"organizationCode" : "string" ,
"organizationRegion" : "string" ,
"postalIndex" : "string" ,
"primaryPhone" : "string" ,
"secondaryPhone" : "string" ,
"title" : "string"
} , "faoInstituteNumber" : "string" ,
"itpgrfaPid" : "string"
} , "hybridParentage" : "string" ,
"isWebVisible" : "string" ,
"specificEpithet" : "string"
} , "names" :
[ { "createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedBy" : 0 ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedBy" :
{ "id" : 0 ,
"version" : 0 ,
"active" : true ,
"createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"lastModifiedBy" : 0 ,
"lastModifiedDate" : "2019-08-24T14:15:22Z" ,
"principal" : true ,
"sid" : "string" ,
"fullName" : "string"
} , "ownedDate" : "2019-08-24T14:15:22Z" ,
"id" : 0 ,
"inventory" :
{ "createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedBy" : 0 ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedBy" :
{ "id" : 0 ,
"version" : 0 ,
"active" : true ,
"createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"lastModifiedBy" : 0 ,
"lastModifiedDate" : "2019-08-24T14:15:22Z" ,
"principal" : true ,
"sid" : "string" ,
"fullName" : "string"
} , "ownedDate" : "2019-08-24T14:15:22Z" ,
"id" : 0 ,
"accession" : { } ,
"site" :
{ "createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedDate" : "2019-08-24T14:15:22Z" ,
"faoInstituteNumber" : "string" ,
"id" : 0 ,
"isDistributionSite" : "string" ,
"isInternal" : "string" ,
"note" : "string" ,
"organizationAbbrev" : "string" ,
"providerIdentifier" : "string" ,
"siteLongName" : "string" ,
"siteShortName" : "string" ,
"typeCode" : "string"
} , "availabilityEndDate" : "2019-08-24T14:15:22Z" ,
"availabilityStartDate" : "2019-08-24T14:15:22Z" ,
"availabilityStatusCode" : "string" ,
"availabilityStatusNote" : "string" ,
"availabilityReasonCode" : "string" ,
"distributionCriticalQuantity" : 0.1 ,
"distributionDefaultFormCode" : "string" ,
"distributionDefaultQuantity" : 0.1 ,
"distributionUnitCode" : "string" ,
"formTypeCode" : "string" ,
"hundredSeedWeight" : 0.1 ,
"inventoryNumber" : "string" ,
"inventoryNumberPart1" : "string" ,
"inventoryNumberPart2" : 0 ,
"inventoryNumberPart3" : "string" ,
"isAutoDeducted" : "s" ,
"isAvailable" : "s" ,
"isDistributable" : "s" ,
"latitude" : 0.1 ,
"longitude" : 0.1 ,
"note" : "string" ,
"pathogenStatusCode" : "string" ,
"plantSexCode" : "string" ,
"pollinationMethodCode" : "string" ,
"pollinationVectorCode" : "string" ,
"propagationDate" : "2019-08-24T14:15:22Z" ,
"propagationDateCode" : "string" ,
"quantityOnHand" : 0.1 ,
"quantityOnHandUnitCode" : "string" ,
"regenerationCriticalQuantity" : 0.1 ,
"rootstock" : "string" ,
"barcode" : "string" ,
"storageLocationPart1" : "string" ,
"storageLocationPart2" : "string" ,
"storageLocationPart3" : "string" ,
"storageLocationPart4" : "string" ,
"webAvailabilityNote" : "string" ,
"containerTypeCode" : "string" ,
"preferredName" : "string" ,
"extra" :
{ "createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedBy" : 0 ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedBy" :
{ "id" : 0 ,
"version" : 0 ,
"active" : true ,
"createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"lastModifiedBy" : 0 ,
"lastModifiedDate" : "2019-08-24T14:15:22Z" ,
"principal" : true ,
"sid" : "string" ,
"fullName" : "string"
} , "ownedDate" : "2019-08-24T14:15:22Z" ,
"id" : 0 ,
"extraType" : "string" ,
"_class" : "string"
} , "doi" : "string" ,
"generation" : 0 ,
"distributionRank" : 0 ,
"productionLocationGeography" :
{ "createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedBy" : 0 ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedDate" : "2019-08-24T14:15:22Z" ,
"adm1" : "string" ,
"adm1Abbrev" : "string" ,
"adm1TypeCode" : "string" ,
"adm2" : "string" ,
"adm2Abbrev" : "string" ,
"adm2TypeCode" : "string" ,
"adm3" : "string" ,
"adm3Abbrev" : "string" ,
"adm3TypeCode" : "string" ,
"adm4" : "string" ,
"adm4Abbrev" : "string" ,
"adm4TypeCode" : "string" ,
"changedDate" : "2019-08-24T14:15:22Z" ,
"countryCode" : "string" ,
"currentGeography" : { } ,
"id" : 0 ,
"isValid" : "s" ,
"note" : "string"
} , "systemInventory" : true
} , "categoryCode" : "string" ,
"plantName" : "string" ,
"plantNameRank" : 0 ,
"isWebVisible" : "s" ,
"nameGroup" :
{ "createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedBy" : 0 ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedBy" :
{ "id" : 0 ,
"version" : 0 ,
"active" : true ,
"createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"lastModifiedBy" : 0 ,
"lastModifiedDate" : "2019-08-24T14:15:22Z" ,
"principal" : true ,
"sid" : "string" ,
"fullName" : "string"
} , "ownedDate" : "2019-08-24T14:15:22Z" ,
"id" : 0 ,
"groupName" : "string" ,
"note" : "string" ,
"url" : "string"
} , "nameSourceCooperator" :
{ "createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedBy" : 0 ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedBy" :
{ "id" : 0 ,
"version" : 0 ,
"active" : true ,
"createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"lastModifiedBy" : 0 ,
"lastModifiedDate" : "2019-08-24T14:15:22Z" ,
"principal" : true ,
"sid" : "string" ,
"fullName" : "string"
} , "ownedDate" : "2019-08-24T14:15:22Z" ,
"id" : 0 ,
"addressLine1" : "string" ,
"addressLine2" : "string" ,
"addressLine3" : "string" ,
"categoryCode" : "string" ,
"city" : "string" ,
"currentCooperator" : 0 ,
"disciplineCode" : "string" ,
"email" : "string" ,
"fax" : "string" ,
"firstName" : "string" ,
"geography" :
{ "createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedBy" : 0 ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedDate" : "2019-08-24T14:15:22Z" ,
"adm1" : "string" ,
"adm1Abbrev" : "string" ,
"adm1TypeCode" : "string" ,
"adm2" : "string" ,
"adm2Abbrev" : "string" ,
"adm2TypeCode" : "string" ,
"adm3" : "string" ,
"adm3Abbrev" : "string" ,
"adm3TypeCode" : "string" ,
"adm4" : "string" ,
"adm4Abbrev" : "string" ,
"adm4TypeCode" : "string" ,
"changedDate" : "2019-08-24T14:15:22Z" ,
"countryCode" : "string" ,
"currentGeography" : { } ,
"id" : 0 ,
"isValid" : "s" ,
"note" : "string"
} , "job" : "string" ,
"lastName" : "string" ,
"note" : "string" ,
"organization" : "string" ,
"organizationAbbrev" : "string" ,
"organizationRegionCode" : "string" ,
"postalIndex" : "string" ,
"primaryPhone" : "string" ,
"secondaryAddressLine1" : "string" ,
"secondaryAddressLine2" : "string" ,
"secondaryAddressLine3" : "string" ,
"secondaryCity" : "string" ,
"secondaryEmail" : "string" ,
"secondaryGeography" :
{ "createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedBy" : 0 ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedDate" : "2019-08-24T14:15:22Z" ,
"adm1" : "string" ,
"adm1Abbrev" : "string" ,
"adm1TypeCode" : "string" ,
"adm2" : "string" ,
"adm2Abbrev" : "string" ,
"adm2TypeCode" : "string" ,
"adm3" : "string" ,
"adm3Abbrev" : "string" ,
"adm3TypeCode" : "string" ,
"adm4" : "string" ,
"adm4Abbrev" : "string" ,
"adm4TypeCode" : "string" ,
"changedDate" : "2019-08-24T14:15:22Z" ,
"countryCode" : "string" ,
"currentGeography" : { } ,
"id" : 0 ,
"isValid" : "s" ,
"note" : "string"
} , "secondaryOrganization" : "string" ,
"secondaryOrganizationAbbrev" : "string" ,
"secondaryPhone" : "string" ,
"secondaryPostalIndex" : "string" ,
"site" :
{ "createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedDate" : "2019-08-24T14:15:22Z" ,
"faoInstituteNumber" : "string" ,
"id" : 0 ,
"isDistributionSite" : "string" ,
"isInternal" : "string" ,
"note" : "string" ,
"organizationAbbrev" : "string" ,
"providerIdentifier" : "string" ,
"siteLongName" : "string" ,
"siteShortName" : "string" ,
"typeCode" : "string"
} , "statusCode" : "string" ,
"sysLang" :
{ "createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedBy" : 0 ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedBy" :
{ "id" : 0 ,
"version" : 0 ,
"active" : true ,
"createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"lastModifiedBy" : 0 ,
"lastModifiedDate" : "2019-08-24T14:15:22Z" ,
"principal" : true ,
"sid" : "string" ,
"fullName" : "string"
} , "ownedDate" : "2019-08-24T14:15:22Z" ,
"description" : "string" ,
"id" : 0 ,
"isEnabled" : "s" ,
"ietfTag" : "string" ,
"iso6393Tag" : "string" ,
"scriptDirection" : "string" ,
"title" : "string"
} , "title" : "string" ,
"webCooperator" :
{ "createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedDate" : "2019-08-24T14:15:22Z" ,
"id" : 0 ,
"addressLine1" : "string" ,
"addressLine2" : "string" ,
"addressLine3" : "string" ,
"categoryCode" : "stri" ,
"city" : "string" ,
"discipline" : "string" ,
"email" : "string" ,
"fax" : "string" ,
"firstName" : "string" ,
"geography" :
{ "createdBy" : 0 ,
"createdDate" : "2019-08-24T14:15:22Z" ,
"modifiedBy" : 0 ,
"modifiedDate" : "2019-08-24T14:15:22Z" ,
"ownedDate" : "2019-08-24T14:15:22Z" ,
"adm1" : "string" ,
"adm1Abbrev" : "string" ,
"adm1TypeCode" : "string" ,
"adm2" : "string" ,
"adm2Abbrev" : "string" ,
"adm2TypeCode" : "string" ,
"adm3" : "string" ,
"adm3Abbrev" : "string" ,
"adm3TypeCode" : "string" ,
"adm4" : "string" ,
"adm4Abbrev" : "string" ,
"adm4TypeCode" : "string" ,
"changedDate" : "2019-08-24T14:15:22Z" ,
"countryCode" : "string" ,
"currentGeography" : { } ,
"id" : 0 ,
"isValid" : "s" ,
"note" : "string"
} , "initials" : "string" ,
"isActive" : "s" ,
"job" : "string" ,
"lastName" : "string" ,
"note" : "string" ,
"organization" : "string" ,
"organizationCode" : "string" ,
"organizationRegion" : "string" ,
"postalIndex" : "string" ,
"primaryPhone" : "string" ,
"secondaryPhone" : "string" ,
"title" : "string"
} , "faoInstituteNumber" : "string" ,
"itpgrfaPid" : "string"
} , "note" : "string"
} ] , "preferredName" : "string"
}