addedInput schema / examples
Added value: +[
+ {
+ "query": "climate change"
+ },
+ {
+ "collections": "BILLS,FR",
+ "congress": 118,
+ "date_from": "2023-01-01",
+ "date_to": "2024-12-31",
+ "page_size": 50,
+ "query": "environmental protection"
+ }
+]
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "next_offset_mark": {
+ "description": "Pagination cursor for next results",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "results": {
+ "description": "Search result packages",
+ "items": {
+ "properties": {
+ "collection": {
+ "description": "Collection code",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "collection_name": {
+ "description": "Collection name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "date_issued": {
+ "description": "Issue date (ISO format)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "details_link": {
+ "description": "URL to detailed metadata",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "last_modified": {
+ "description": "Last modified date",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "package_id": {
+ "description": "GovInfo package ID",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "package_link": {
+ "description": "URL to package on GovInfo",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "title": {
+ "description": "Package title",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "returned": {
+ "description": "Number of results returned in this response",
+ "type": "number"
+ },
+ "total": {
+ "description": "Total matching packages",
+ "type": "number"
+ }
+ },
+ "required": [
+ "total",
+ "returned",
+ "results"
+ ],
+ "type": "object"
+}