Class V1VerifyParams
-
- All Implemented Interfaces:
-
dev.case.api.core.Params
public final class V1VerifyParams implements Params
Validates legal citations against authoritative case law sources (CourtListener database of ~10M cases). Returns verification status and case metadata for each citation found in the input text. Accepts either a single citation or a full text block containing multiple citations.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classV1VerifyParams.BuilderA builder for V1VerifyParams.
public final classV1VerifyParams.Body
-
Method Summary
Modifier and Type Method Description final Stringtext()Text containing citations to verify. final JsonField<String>_text()Returns the raw JSON value of text. final Map<String, JsonValue>_additionalBodyProperties()final Headers_additionalHeaders()Additional headers to send with the request. final QueryParams_additionalQueryParams()Additional query param to send with the request. final V1VerifyParams.BuildertoBuilder()final V1VerifyParams.Body_body()Headers_headers()The full set of headers in the parameters, including both fixed and additional headers. QueryParams_queryParams()The full set of query params in the parameters, including both fixed and additional query params. Booleanequals(Object other)IntegerhashCode()StringtoString()final static V1VerifyParams.Builderbuilder()Returns a mutable builder for constructing an instance of V1VerifyParams. -
-
Method Detail
-
text
final String text()
Text containing citations to verify. Can be a single citation (e.g., "531 U.S. 98") or a full document with multiple citations.
-
_text
final JsonField<String> _text()
Returns the raw JSON value of text.
Unlike text, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalBodyProperties
final Map<String, JsonValue> _additionalBodyProperties()
-
_additionalHeaders
final Headers _additionalHeaders()
Additional headers to send with the request.
-
_additionalQueryParams
final QueryParams _additionalQueryParams()
Additional query param to send with the request.
-
toBuilder
final V1VerifyParams.Builder toBuilder()
-
_body
final V1VerifyParams.Body _body()
-
_headers
Headers _headers()
The full set of headers in the parameters, including both fixed and additional headers.
-
_queryParams
QueryParams _queryParams()
The full set of query params in the parameters, including both fixed and additional query params.
-
builder
final static V1VerifyParams.Builder builder()
Returns a mutable builder for constructing an instance of V1VerifyParams.
The following fields are required:
.text()
-
-
-
-