Skip to content

Commit

Permalink
Update search-manifest.json
Browse files Browse the repository at this point in the history
Lots of non breaking updates and additional options for searching manifests.

The ability to search on handler defined comments, such as Profile #, Rail car, and other Custom fields
"comments": [{

		"label": "string",

		"description": "string",

		"handlerId": "string"

		}],

Searching on “submissionType“: ”FullElectronic”|”Hybrid”|”Image”|”DataImage5Copy”

New date type "QuickSignDate" which allows you to search on the Quick Sign date of electronic manifests

"transporterOrder" to search on a 2nd, 3rd, or X transporter.
  • Loading branch information
scottdchristian authored Aug 2, 2024
1 parent 1258e1b commit 579ccff
Showing 1 changed file with 47 additions and 3 deletions.
50 changes: 47 additions & 3 deletions Services-Information/Schema/search-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,15 @@
"description": "EPA site Id. One of the required parameter. Either statecode or siteId must be provided",
"type": "string"
},
"submissionType": {
"type": "string",
"enum": [
"FullElectronic",
"Hybrid",
"Image",
"DataImage5Copy"
]
},
"status": {
"description": "Manifest Status",
"type": "string",
Expand All @@ -38,14 +47,18 @@
"Transporter"
]
},
"transporterOrder": {
"type": "integer"
},
"dateType": {
"description": "Type of the Date/time of the search",
"type": "string",
"enum": [
"CertifiedDate",
"ReceivedDate",
"ShippedDate",
"UpdatedDate"
"UpdatedDate",
"QuickSignDate"
]
},
"startDate": {
Expand All @@ -55,9 +68,40 @@
"endDate": {
"type": "string",
"format": "date-time"
},
"correctionRequestStatus": {
"description": "Correction Request Status",
"type": "string",
"enum": [
"NotSent",
"Sent",
"IndustryResponded",
"Cancelled"
]
},
"comments": {
"type": "array",
"items": {
"$ref": "#/definitions/SearchComment"
}
}
},
"additionalProperties": false
},
"SearchComment": {
"description": "Search criteria for search in comments",
"type": "object",
"properties": {
"label": {
"type": "string"
},
"description": {
"type": "string"
},
"handlerId": {
"type": "string"
}
}
}
}
}
}
}

0 comments on commit 579ccff

Please sign in to comment.