...
Method | GET | ||
---|---|---|---|
Path | /search/schema | Returns the entire schema | |
/search/schema/fields | Returns information about all defined fields or a specific named field | ||
/search/schema/dynamicfields | Returns information about all dynamic field rules or a specific named dynamic rule | ||
/search/schema/fieldtypes | Returns information about all field types or a specific field type | ||
/search/schema/copyfields | Returns information about copy fields | ||
/search/schema/name | Returns the schema name | ||
/search/schema/version | Returns the schema version | ||
/search/schema/uniquekey | Returns the defined uniqueKey | ||
/search/schema/similarity | Returns the global similarity definition | ||
/search/schema/solrqueryparser/defaultoperator | Returns the default operator | ||
Parameter | Values | Description | |
@fl | String: ex. ttl | Field name or comma-separated list of field names | |
@showDefaults | Boolean: ex. 1 | Include in the response all default property values from the associated field type | |
@includeDynamic | Boolean: ex. 0 | If the fl param is specified, matching dynamic fields are included in the response and identified with the dynamicBase property; if the fl param is not specified, the includeDynamic parameter is ignored |
Example:
Code Block | ||
---|---|---|
| ||
wget -O- \ --header 'x-user:x' \ --header 'x-password:y' \ 'https://cdws21.ificlaims.com/search/schema/fields?fl=ucid,ttl' |
...
Method(s) | GET | POST | ||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Path | /search/query | ||||||||||||||||||||||||||||||||||||||||
Common Query Parameters:
For a thorough treatment, please see Query Syntax and Parsing. |
Example:
...
language | text |
---|
wget -O- \ |
...
|
...
|
...
|
...
Response JSON
Code Block | ||
---|---|---|
| ||
{ "status" : "success", "time" : "0.853972" "content" : { "responseHeader" : { "status" : 0, "params" : { "qt" : "standard", "wt" : "json", "q" : "*:*", "rows" : "1", "timeAllowed" : "300000", "indent" : "true", "fl" : "ucid", "start" : "0" }, "QTime" : 29, "pager" : { "lastPage" : 89565469, "firstPage" : 1, "totalEntries" : 89565469, "entriesOnThisPage" : 1, "currentPage" : 1, "entriesPerPage" : "1", "nextPage" : 2, "previousPage" : null } }, "response" : { "maxScore" : 1, "start" : 0, "numFound" : 89565469, "docs" : [ { "ucid" : "WO-2008080614-A1" } ] }}} |
...