Open Legal Data API
- API version: v1
- Build date: 2019-02-18T15:11:46.584Z
With the Open Legal Data API you can access various data from the legal domain, e.g. law text or case files. The data may be used for semantic analysis or to create statistics. For more information visit our website. https://openlegaldata.io/
Automatically generated by the Swagger Codegen
Building the API client library requires:
- Java 1.7+
- Maven/Gradle
To install the API client library to your local Maven repository, simply execute:
mvn clean install
To deploy it to a remote Maven repository instead, configure the settings of the repository and execute:
mvn clean deploy
Refer to the OSSRH Guide for more information.
Add this dependency to your project's POM:
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-java-client</artifactId>
<version>1.0.0</version>
<scope>compile</scope>
</dependency>
Add this dependency to your project's build file:
compile "io.swagger:swagger-java-client:1.0.0"
At first generate the JAR by executing:
mvn clean package
Then manually install the following JARs:
target/swagger-java-client-1.0.0.jar
target/lib/*.jar
Please follow the installation instruction and execute the following Java code:
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.AnnotationLabelsApi;
import java.io.File;
import java.util.*;
public class AnnotationLabelsApiExample {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Configure API key authorization: api_key
ApiKeyAuth api_key = (ApiKeyAuth) defaultClient.getAuthentication("api_key");
api_key.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//api_key.setApiKeyPrefix("Token");
AnnotationLabelsApi apiInstance = new AnnotationLabelsApi();
AnnotationLabel data = new AnnotationLabel(); // AnnotationLabel |
try {
AnnotationLabel result = apiInstance.annotationLabelsCreate(data);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AnnotationLabelsApi#annotationLabelsCreate");
e.printStackTrace();
}
}
}
All URIs are relative to https://de.openlegaldata.io/api
Class | Method | HTTP request | Description |
---|---|---|---|
AnnotationLabelsApi | annotationLabelsCreate | POST /annotation_labels/ | |
AnnotationLabelsApi | annotationLabelsDelete | DELETE /annotation_labels/{id}/ | |
AnnotationLabelsApi | annotationLabelsList | GET /annotation_labels/ | |
AnnotationLabelsApi | annotationLabelsPartialUpdate | PATCH /annotation_labels/{id}/ | |
AnnotationLabelsApi | annotationLabelsRead | GET /annotation_labels/{id}/ | |
AnnotationLabelsApi | annotationLabelsUpdate | PUT /annotation_labels/{id}/ | |
CaseAnnotationsApi | caseAnnotationsCreate | POST /case_annotations/ | |
CaseAnnotationsApi | caseAnnotationsDelete | DELETE /case_annotations/{id}/ | |
CaseAnnotationsApi | caseAnnotationsList | GET /case_annotations/ | |
CaseAnnotationsApi | caseAnnotationsPartialUpdate | PATCH /case_annotations/{id}/ | |
CaseAnnotationsApi | caseAnnotationsRead | GET /case_annotations/{id}/ | |
CaseAnnotationsApi | caseAnnotationsUpdate | PUT /case_annotations/{id}/ | |
CaseMarkersApi | caseMarkersCreate | POST /case_markers/ | |
CaseMarkersApi | caseMarkersDelete | DELETE /case_markers/{id}/ | |
CaseMarkersApi | caseMarkersList | GET /case_markers/ | |
CaseMarkersApi | caseMarkersPartialUpdate | PATCH /case_markers/{id}/ | |
CaseMarkersApi | caseMarkersRead | GET /case_markers/{id}/ | |
CaseMarkersApi | caseMarkersUpdate | PUT /case_markers/{id}/ | |
CasesApi | casesCreate | POST /cases/ | |
CasesApi | casesDelete | DELETE /cases/{id}/ | |
CasesApi | casesList | GET /cases/ | |
CasesApi | casesPartialUpdate | PATCH /cases/{id}/ | |
CasesApi | casesRead | GET /cases/{id}/ | |
CasesApi | casesSearchList | GET /cases/search/ | |
CasesApi | casesUpdate | PUT /cases/{id}/ | |
CitiesApi | citiesList | GET /cities/ | |
CitiesApi | citiesRead | GET /cities/{id}/ | |
CountriesApi | countriesList | GET /countries/ | |
CountriesApi | countriesRead | GET /countries/{id}/ | |
CourtsApi | courtsList | GET /courts/ | |
CourtsApi | courtsRead | GET /courts/{id}/ | |
LawBooksApi | lawBooksCreate | POST /law_books/ | |
LawBooksApi | lawBooksDelete | DELETE /law_books/{id}/ | |
LawBooksApi | lawBooksList | GET /law_books/ | |
LawBooksApi | lawBooksPartialUpdate | PATCH /law_books/{id}/ | |
LawBooksApi | lawBooksRead | GET /law_books/{id}/ | |
LawBooksApi | lawBooksUpdate | PUT /law_books/{id}/ | |
LawsApi | lawsCreate | POST /laws/ | |
LawsApi | lawsDelete | DELETE /laws/{id}/ | |
LawsApi | lawsList | GET /laws/ | |
LawsApi | lawsPartialUpdate | PATCH /laws/{id}/ | |
LawsApi | lawsRead | GET /laws/{id}/ | |
LawsApi | lawsSearchList | GET /laws/search/ | |
LawsApi | lawsUpdate | PUT /laws/{id}/ | |
StatesApi | statesList | GET /states/ | |
StatesApi | statesRead | GET /states/{id}/ | |
TokenAuthApi | tokenAuthCreate | POST /token-auth/ | |
UsersApi | usersList | GET /users/ | |
UsersApi | usersMe | GET /users/me/ | |
UsersApi | usersRead | GET /users/{id}/ |
- AnnotationLabel
- CaseAnnotation
- CaseMarker
- CaseSearch
- City
- Country
- Court
- CourtMinimal
- InlineResponse200
- InlineResponse2001
- InlineResponse20010
- InlineResponse20011
- InlineResponse20012
- InlineResponse2002
- InlineResponse2003
- InlineResponse2004
- InlineResponse2005
- InlineResponse2006
- InlineResponse2007
- InlineResponse2008
- InlineResponse2009
- Law
- LawBook
- LawSearch
- ModelCase
- State
- User
Authentication schemes defined for the API:
- Type: API key
- API key parameter name: Authorization
- Location: HTTP header
It's recommended to create an instance of ApiClient
per thread in a multithreaded environment to avoid any potential issues.