action ideaconsult_solrquery_get { label: "Apache Solr powered search" description: "GET is simpler to use, but imposes restrictions on the complexity and the lenght of the parameters." provider: ideaconsult method: GET path: "/select" encoding: json input: { type: "object" properties: { fl: { type: "string" } fq: { type: "string" } q: { type: "string" } rows: { type: "integer" } start: { type: "integer" } wt: { type: "string" enum: ["json", "xml", "csv"] } } additionalProperties: false } output: { type: "object" properties: { response: { type: "object" properties: { docs: { type: "array" items: { type: "object" } } maxScore: { type: "number" } numFound: { type: "integer" } start: { type: "integer" } } } responseHeader: { type: "object" properties: { QTime: { type: "integer" } params: { type: "object" } status: { type: "integer" } zkConnected: { type: "boolean" } } } } } }