From 221de2a3f7d0e40f0b66bd588490b5cee92f1fdd Mon Sep 17 00:00:00 2001 From: Jan Robert <15772440+Yalz@users.noreply.github.com> Date: Fri, 9 Feb 2024 15:54:37 +0100 Subject: [PATCH] doc: update LDIO naming (#489) Co-authored-by: Yalz --- docs/_ldio/examples/ex1-basicHttp.md | 6 ++--- docs/_ldio/examples/ex2-scrape-api.md | 8 +++--- docs/_ldio/examples/ex3-enrich-model.md | 14 +++++----- .../ldio-adapters/ldio-json-to-json-ld.md | 3 ++- docs/_ldio/ldio-adapters/ldio-ngsiv2-to-ld.md | 3 ++- docs/_ldio/ldio-adapters/ldio-rdf-adapter.md | 3 ++- docs/_ldio/ldio-adapters/ldio-rml-adapter.md | 3 ++- docs/_ldio/ldio-inputs/ldio-amqp-in.md | 4 +-- .../_ldio/ldio-inputs/ldio-archive-file-in.md | 3 ++- docs/_ldio/ldio-inputs/ldio-http-in-poller.md | 5 ++-- docs/_ldio/ldio-inputs/ldio-http-in.md | 3 ++- docs/_ldio/ldio-inputs/ldio-kafka-in.md | 7 ++--- .../ldio-inputs/ldio-ldes-client-connector.md | 4 +-- docs/_ldio/ldio-inputs/ldio-ldes-client.md | 6 ++--- .../_ldio/ldio-outputs/ldio-azure-blob-out.md | 6 ++--- docs/_ldio/ldio-outputs/ldio-console-out.md | 3 ++- docs/_ldio/ldio-outputs/ldio-file-out.md | 3 ++- docs/_ldio/ldio-outputs/ldio-http-out.md | 3 ++- docs/_ldio/ldio-outputs/ldio-kafka-out.md | 7 ++--- .../ldio-repository-materialiser.md | 3 ++- .../ldio-transformers/ldio-geojson-to-wkt.md | 3 ++- .../ldio-transformers/ldio-http-enricher.md | 26 +++++++++---------- .../ldio-sparql-construct.md | 3 ++- .../ldio-version-materializer.md | 3 ++- .../ldio-version-object-creator.md | 3 ++- 25 files changed, 76 insertions(+), 59 deletions(-) diff --git a/docs/_ldio/examples/ex1-basicHttp.md b/docs/_ldio/examples/ex1-basicHttp.md index 41251ae3d..ef229c0a1 100644 --- a/docs/_ldio/examples/ex1-basicHttp.md +++ b/docs/_ldio/examples/ex1-basicHttp.md @@ -23,11 +23,11 @@ orchestrator: - name: data description: "This pipeline uses a HTTP listener to read incoming RDF data and writes them to the console" input: - name: be.vlaanderen.informatievlaanderen.ldes.ldio.LdioHttpIn + name: Ldio:HttpIn adapter: - name: be.vlaanderen.informatievlaanderen.ldes.ldi.RdfAdapter + name: Ldio:RdfAdapter outputs: - - name: be.vlaanderen.informatievlaanderen.ldes.ldio.LdioConsoleOut + - name: Ldio:ConsoleOut ```` ## Execution diff --git a/docs/_ldio/examples/ex2-scrape-api.md b/docs/_ldio/examples/ex2-scrape-api.md index 2bdd62c0c..797b1de1b 100644 --- a/docs/_ldio/examples/ex2-scrape-api.md +++ b/docs/_ldio/examples/ex2-scrape-api.md @@ -70,23 +70,23 @@ orchestrator: pipelines: - name: data input: - name: be.vlaanderen.informatievlaanderen.ldes.ldio.LdioHttpInPoller + name: Ldio:HttpInPoller config: url: https://www.cheapshark.com/api/1.0/deals?pageSize=1000 interval: PT30M adapter: - name: be.vlaanderen.informatievlaanderen.ldes.ldi.RmlAdapter + name: Ldio:RmlAdapter config: mapping: "mapping.ttl" transformers: - - name: be.vlaanderen.informatievlaanderen.ldes.ldi.VersionObjectCreator + - name: Ldio:VersionObjectCreator config: date-observed-property: "http://www.cheapshark.com/lastChange" member-type: "http://www.cheapshark.com/GameDeal" generatedAt-property: "https://w3id.org/ldes#timestampPath" versionOf-property: "https://w3id.org/ldes#versionOfPath" outputs: - - name: be.vlaanderen.informatievlaanderen.ldes.ldio.LdioConsoleOut + - name: Ldio:ConsoleOut config: content-type: text/turtle ``` diff --git a/docs/_ldio/examples/ex3-enrich-model.md b/docs/_ldio/examples/ex3-enrich-model.md index daca7f977..cd445b59b 100644 --- a/docs/_ldio/examples/ex3-enrich-model.md +++ b/docs/_ldio/examples/ex3-enrich-model.md @@ -68,21 +68,21 @@ orchestrator: pipelines: - name: "to-graph" input: - name: "be.vlaanderen.informatievlaanderen.ldes.ldio.LdioHttpIn" + name: "Ldio:HttpIn" adapter: - name: "be.vlaanderen.informatievlaanderen.ldes.ldi.RdfAdapter" + name: "Ldio:RdfAdapter" outputs: - - name: "be.vlaanderen.informatievlaanderen.ldes.ldi.RepositoryMaterialiser" + - name: "Ldio:RepositoryMaterialiser" config: sparql-host: http://localhost:8081/rdf4j-server repository-id: test - name: "enriched" input: - name: "be.vlaanderen.informatievlaanderen.ldes.ldio.LdioHttpIn" + name: "Ldio:HttpIn" adapter: - name: "be.vlaanderen.informatievlaanderen.ldes.ldi.RdfAdapter" + name: "Ldio:RdfAdapter" transformers: - - name: "be.vlaanderen.informatievlaanderen.ldes.ldi.SparqlConstructTransformer" + - name: "Ldio:SparqlConstructTransformer" config: query: " PREFIX schema: @@ -100,7 +100,7 @@ orchestrator: } " outputs: - - name: "be.vlaanderen.informatievlaanderen.ldes.ldio.LdioConsoleOut" + - name: "Ldio:ConsoleOut" ``` ## Execution diff --git a/docs/_ldio/ldio-adapters/ldio-json-to-json-ld.md b/docs/_ldio/ldio-adapters/ldio-json-to-json-ld.md index f57968160..68c44252b 100644 --- a/docs/_ldio/ldio-adapters/ldio-json-to-json-ld.md +++ b/docs/_ldio/ldio-adapters/ldio-json-to-json-ld.md @@ -5,7 +5,8 @@ title: Json To JsonLd Transformer --- # LDIO Json To JsonLd Transformer -***be.vlaanderen.informatievlaanderen.ldes.ldi.JsonToLdAdapter*** + +***Ldio:JsonToLdAdapter*** An LDIO wrapper component for the [LDI Json To JsonLd building block](../../_core/ldi-adapters/json-to-json-ld) diff --git a/docs/_ldio/ldio-adapters/ldio-ngsiv2-to-ld.md b/docs/_ldio/ldio-adapters/ldio-ngsiv2-to-ld.md index f9755e324..062621964 100644 --- a/docs/_ldio/ldio-adapters/ldio-ngsiv2-to-ld.md +++ b/docs/_ldio/ldio-adapters/ldio-ngsiv2-to-ld.md @@ -5,7 +5,8 @@ title: NGSIv2 To LD Adapter --- # LDIO NGSIv2 To LD Adapter -***be.vlaanderen.informatievlaanderen.ldes.ldi.NgsiV2ToLdAdapter*** + +***Ldio:NgsiV2ToLdAdapter*** An LDIO wrapper component for the [LDI NGSIv2 To LD building block](../../core/ldi-adapters/ngsiv2-to-ld) diff --git a/docs/_ldio/ldio-adapters/ldio-rdf-adapter.md b/docs/_ldio/ldio-adapters/ldio-rdf-adapter.md index 91e0d6789..1cf6390f4 100644 --- a/docs/_ldio/ldio-adapters/ldio-rdf-adapter.md +++ b/docs/_ldio/ldio-adapters/ldio-rdf-adapter.md @@ -5,7 +5,8 @@ title: RDF Adapter --- # LDIO RDF Adapter -***be.vlaanderen.informatievlaanderen.ldes.ldi.RdfAdapter*** + +***Ldio:RdfAdapter*** An LDIO wrapper component for the [LDI RDF Adapter building block](../../core/ldi-adapters/rdf-adapter) diff --git a/docs/_ldio/ldio-adapters/ldio-rml-adapter.md b/docs/_ldio/ldio-adapters/ldio-rml-adapter.md index 4a5a297e1..d9e9f075a 100644 --- a/docs/_ldio/ldio-adapters/ldio-rml-adapter.md +++ b/docs/_ldio/ldio-adapters/ldio-rml-adapter.md @@ -5,7 +5,8 @@ title: RML Adapter --- # LDIO RML Adapter -***be.vlaanderen.informatievlaanderen.ldes.ldi.RmlAdapter*** + +***Ldio:RmlAdapter*** An LDIO wrapper component for the [LDI RML Adapter building block](../../core/ldi-adapters/rml-adapter) diff --git a/docs/_ldio/ldio-inputs/ldio-amqp-in.md b/docs/_ldio/ldio-inputs/ldio-amqp-in.md index cc4696e44..086cadfd3 100644 --- a/docs/_ldio/ldio-inputs/ldio-amqp-in.md +++ b/docs/_ldio/ldio-inputs/ldio-amqp-in.md @@ -6,7 +6,7 @@ title: AMQP In # LDIO AMQP In -***be.vlaanderen.informatievlaanderen.ldes.ldio.LdioAmqpIn*** +***Ldio:AmqpIn*** The LDIO AMQP In listens to messages from an [AMQP 1.0 queue](https://www.amqp.org/resources/specifications). @@ -25,7 +25,7 @@ an [AMQP 1.0 queue](https://www.amqp.org/resources/specifications). ```yaml input: - name: be.vlaanderen.informatievlaanderen.ldes.ldio.LdioAmqpIn + name: Ldio:AmqpIn config: remote-url: amqp://localhost:61616 username: artemis diff --git a/docs/_ldio/ldio-inputs/ldio-archive-file-in.md b/docs/_ldio/ldio-inputs/ldio-archive-file-in.md index 554299480..d9b516775 100644 --- a/docs/_ldio/ldio-inputs/ldio-archive-file-in.md +++ b/docs/_ldio/ldio-inputs/ldio-archive-file-in.md @@ -5,7 +5,8 @@ title: Archive File In --- # LDIO File Out -***be.vlaanderen.informatievlaanderen.ldes.ldio.LdioArchiveFileIn*** + +***Ldio:ArchiveFileIn*** The LDIO Archive File In is used to read models from files and feed them to the pipeline. Please refer to the [core documentation](../../core/ldi-inputs/file-archiving.md) for more information. diff --git a/docs/_ldio/ldio-inputs/ldio-http-in-poller.md b/docs/_ldio/ldio-inputs/ldio-http-in-poller.md index a977249e6..1f30ecaba 100644 --- a/docs/_ldio/ldio-inputs/ldio-http-in-poller.md +++ b/docs/_ldio/ldio-inputs/ldio-http-in-poller.md @@ -5,7 +5,8 @@ title: HTTP In Poller --- # LDIO HTTP In Poller -***be.vlaanderen.informatievlaanderen.ldes.ldio.LdioHttpInPoller*** + +***Ldio:HttpInPoller*** The LDIO Http In Poller is a basic Http Poller that will poll a target URL on a specified interval. @@ -24,7 +25,7 @@ Refer to [LDIO Http Requester](../ldio-core) for the config. The Http In Poller supports polling multiple endpoints. Example configuration: ```yaml -name: be.vlaanderen.informatievlaanderen.ldes.ldio.LdioHttpInPoller +name: Ldio:HttpInPoller config: auth: type: API_KEY diff --git a/docs/_ldio/ldio-inputs/ldio-http-in.md b/docs/_ldio/ldio-inputs/ldio-http-in.md index 3659d7d70..53e664c2c 100644 --- a/docs/_ldio/ldio-inputs/ldio-http-in.md +++ b/docs/_ldio/ldio-inputs/ldio-http-in.md @@ -5,7 +5,8 @@ title: HTTP In --- # LDIO HTTP In -***be.vlaanderen.informatievlaanderen.ldes.ldio.LdioHttpIn*** + +***Ldio:HttpIn*** The LDIO Http In is a basic Http Listener. diff --git a/docs/_ldio/ldio-inputs/ldio-kafka-in.md b/docs/_ldio/ldio-inputs/ldio-kafka-in.md index 8f558f781..80cea40f1 100644 --- a/docs/_ldio/ldio-inputs/ldio-kafka-in.md +++ b/docs/_ldio/ldio-inputs/ldio-kafka-in.md @@ -5,7 +5,8 @@ title: Kafka In --- # LDIO Kafka In -***be.vlaanderen.informatievlaanderen.ldes.ldio.LdioKafkaIn*** + +***Ldio:KafkaIn*** The LDIO Kafka In listens to messages from a [kafka topic](https://kafka.apache.org). @@ -31,7 +32,7 @@ Two security protocols are supported: ```yaml outputs: - - name: be.vlaanderen.informatievlaanderen.ldes.ldio.LdioKafkaIn + - name: Ldio:KafkaIn config: content-type: application/n-quads topics: quickstart-events @@ -42,7 +43,7 @@ outputs: ```yaml outputs: - - name: be.vlaanderen.informatievlaanderen.ldes.ldio.LdioKafkaIn + - name: Ldio:KafkaIn config: content-type: application/n-quads topics: quickstart-events diff --git a/docs/_ldio/ldio-inputs/ldio-ldes-client-connector.md b/docs/_ldio/ldio-inputs/ldio-ldes-client-connector.md index 40b443ce4..adf8ad2e8 100644 --- a/docs/_ldio/ldio-inputs/ldio-ldes-client-connector.md +++ b/docs/_ldio/ldio-inputs/ldio-ldes-client-connector.md @@ -6,7 +6,7 @@ title: LDES Client with Connector # LDIO Ldes Client Connector -***be.vlaanderen.informatievlaanderen.ldes.ldio.LdioLdesClientConnector*** +***Ldio:LdesClientConnector*** An EDC (Eclipse dataspace Connector) LDIO wrapper component for the [LDI LDES Client building block](../../core/ldi-inputs/ldes-client) @@ -45,7 +45,7 @@ This component exposes two endpoints: ```yaml input: - name: be.vlaanderen.informatievlaanderen.ldes.ldio.LdioLdesClientConnector + name: Ldio:LdesClientConnector config: url: http://consumer-connector:29291/public connector-transfer-url: http://consumer-connector:29193/management/v2/transferprocesses diff --git a/docs/_ldio/ldio-inputs/ldio-ldes-client.md b/docs/_ldio/ldio-inputs/ldio-ldes-client.md index ef1842cc4..81a3f8856 100644 --- a/docs/_ldio/ldio-inputs/ldio-ldes-client.md +++ b/docs/_ldio/ldio-inputs/ldio-ldes-client.md @@ -6,7 +6,7 @@ title: LDES Client # LDIO Ldes Client -***be.vlaanderen.informatievlaanderen.ldes.ldi.client.LdioLdesClient*** +***Ldio:LdesClient*** An LDIO wrapper component for the [LDI LDES Client building block](../../core/ldi-inputs/ldes-client) @@ -33,7 +33,7 @@ Refer to [LDIO Http Requester](../ldio-core) for the config. ```yaml input: - name: be.vlaanderen.informatievlaanderen.ldes.ldi.client.LdioLdesClient + name: Ldio:LdesClient config: urls: - http://localhost:8080/my-ldes @@ -49,7 +49,7 @@ Refer to [LDIO Http Requester](../ldio-core) for the config. ```yaml input: - name: be.vlaanderen.informatievlaanderen.ldes.ldi.client.LdioLdesClient + name: Ldio:LdesClient config: urls: - http://localhost:8080/my-ldes diff --git a/docs/_ldio/ldio-outputs/ldio-azure-blob-out.md b/docs/_ldio/ldio-outputs/ldio-azure-blob-out.md index c89c2e0b6..fe9a12316 100644 --- a/docs/_ldio/ldio-outputs/ldio-azure-blob-out.md +++ b/docs/_ldio/ldio-outputs/ldio-azure-blob-out.md @@ -6,7 +6,7 @@ title: Azure Blob Out # LDIO Kafka Out -***be.vlaanderen.informatievlaanderen.ldes.ldio.LdiAzureBlobOut*** +***Ldio:AzureBlobOut*** The LDIO Azure Blob Out writes out messages to an Azure Blob Container. Messages can be written out in any format supported by Apache Jena or in json format. @@ -29,7 +29,7 @@ Messages can be written out in any format supported by Apache Jena or in json fo ```yaml outputs: - - name: "be.vlaanderen.informatievlaanderen.ldes.ldio.LdiAzureBlobOut" + - name: "Ldio:AzureBlobOut" config: lang: "json" storage-account-name: "storageaccount" @@ -42,7 +42,7 @@ outputs: ```yaml outputs: - - name: "be.vlaanderen.informatievlaanderen.ldes.ldio.LdiAzureBlobOut" + - name: "Ldio:AzureBlobOut" config: lang: "n-quads" storage-account-name: "storageaccount" diff --git a/docs/_ldio/ldio-outputs/ldio-console-out.md b/docs/_ldio/ldio-outputs/ldio-console-out.md index 05c630a62..db56a11a6 100644 --- a/docs/_ldio/ldio-outputs/ldio-console-out.md +++ b/docs/_ldio/ldio-outputs/ldio-console-out.md @@ -5,7 +5,8 @@ title: Console Out --- # LDIO Console Out -***be.vlaanderen.informatievlaanderen.ldes.ldio.LdioConsoleOut*** + +***Ldio:ConsoleOut*** The LDIO Console Out will output its given model to the console. diff --git a/docs/_ldio/ldio-outputs/ldio-file-out.md b/docs/_ldio/ldio-outputs/ldio-file-out.md index 3fe7a3bed..92e9b835d 100644 --- a/docs/_ldio/ldio-outputs/ldio-file-out.md +++ b/docs/_ldio/ldio-outputs/ldio-file-out.md @@ -5,7 +5,8 @@ title: File Out --- # LDIO File Out -***be.vlaanderen.informatievlaanderen.ldes.ldio.LdioFileOut*** + +***Ldio:FileOut*** The LDIO File Out is used to write models to files based on a timestamp path property on the model. Please refer to the [core documentation](../../core/ldi-outputs/file-archiving.md) for more information. diff --git a/docs/_ldio/ldio-outputs/ldio-http-out.md b/docs/_ldio/ldio-outputs/ldio-http-out.md index ef0be626c..106294f27 100644 --- a/docs/_ldio/ldio-outputs/ldio-http-out.md +++ b/docs/_ldio/ldio-outputs/ldio-http-out.md @@ -5,7 +5,8 @@ title: HTTP Out --- # LDIO HTTP Out -***be.vlaanderen.informatievlaanderen.ldes.ldio.LdioHttpOut*** + +***Ldio:HttpOut*** The LDIO HTTP Out is a basic Http Client that will send the given Linked Data model to a target url. diff --git a/docs/_ldio/ldio-outputs/ldio-kafka-out.md b/docs/_ldio/ldio-outputs/ldio-kafka-out.md index e5c052a4d..6d01db3ec 100644 --- a/docs/_ldio/ldio-outputs/ldio-kafka-out.md +++ b/docs/_ldio/ldio-outputs/ldio-kafka-out.md @@ -5,7 +5,8 @@ title: Kafka Out --- # LDIO Kafka Out -***be.vlaanderen.informatievlaanderen.ldes.ldio.LdioKafkaOut*** + +***Ldio:KafkaOut*** The LDIO Kafka Out sends messages to a [kafka topic](https://kafka.apache.org). Two security protocols are supported: @@ -31,7 +32,7 @@ Two security protocols are supported: ```yaml outputs: - - name: be.vlaanderen.informatievlaanderen.ldes.ldio.LdioKafkaOut + - name: Ldio:KafkaOut config: bootstrap-servers: localhost:9092 topic: quickstart-events @@ -42,7 +43,7 @@ outputs: ```yaml outputs: - - name: be.vlaanderen.informatievlaanderen.ldes.ldio.LdioKafkaOut + - name: Ldio:KafkaOut config: bootstrap-servers: localhost:9092 topic: quickstart-events diff --git a/docs/_ldio/ldio-outputs/ldio-repository-materialiser.md b/docs/_ldio/ldio-outputs/ldio-repository-materialiser.md index eda69749d..1be0adbba 100644 --- a/docs/_ldio/ldio-outputs/ldio-repository-materialiser.md +++ b/docs/_ldio/ldio-outputs/ldio-repository-materialiser.md @@ -5,7 +5,8 @@ title: Repository Materialization --- # Repository Materialiser -***be.vlaanderen.informatievlaanderen.ldes.ldi.RepositoryMaterialiser*** + +***Ldio:RepositoryMaterialiser*** The repository materialiser is used to materialise an LDES stream into a triplestore. Any triplestore that supports the RDF4J remote repository API can be used. diff --git a/docs/_ldio/ldio-transformers/ldio-geojson-to-wkt.md b/docs/_ldio/ldio-transformers/ldio-geojson-to-wkt.md index 2c41150fe..e6a03247c 100644 --- a/docs/_ldio/ldio-transformers/ldio-geojson-to-wkt.md +++ b/docs/_ldio/ldio-transformers/ldio-geojson-to-wkt.md @@ -5,7 +5,8 @@ title: GeoJson To WKT Transformer --- # LDIO GeoJson To WKT Transformer -***be.vlaanderen.informatievlaanderen.ldes.ldi.GeoJsonToWktTransformer*** + +***Ldio:GeoJsonToWktTransformer*** An LDIO wrapper component for the [LDI GeoJson to Wkt building block](../../core/ldi-transformers/geojson-to-wkt) diff --git a/docs/_ldio/ldio-transformers/ldio-http-enricher.md b/docs/_ldio/ldio-transformers/ldio-http-enricher.md index 929321008..79a9c6880 100644 --- a/docs/_ldio/ldio-transformers/ldio-http-enricher.md +++ b/docs/_ldio/ldio-transformers/ldio-http-enricher.md @@ -5,23 +5,23 @@ title: Http Enricher Transformer --- # LDIO Http Enricher -***be.vlaanderen.informatievlaanderen.ldes.ldio.LdioHttpEnricher*** + +***Ldio:HttpEnricher*** A transformer which allows to send a GET or POST HTTP request to a dynamic URL provided by the model. The response is converted to linked data and added to the incoming model. ## Config - -| Property | Description | Required | Default | Example | Supported values | -|:------------------------------------|:------------------------------------------------------------------------------------------------------------|:---------|:--------|:-------------------------------------------------------|:---------------------------------------------------------------| -| adapter.name | This transformer requires an [ldio-adapter](../ldio-adapters) to convert the responses to linked data. | Yes | N/A | be.vlaanderen.informatievlaanderen.ldes.ldi.RdfAdapter | Paths of supported LDIO Adapters | -| adapter.config.xxx | Optional config that may be required by the adapter | No | N/A | be.vlaanderen.informatievlaanderen.ldes.ldi.RdfAdapter | Paths of supported LDIO Adapters | -| url-property-path | Path defining the url that needs to be selected on the model for the http request. | Yes | N/A | | Valid property paths | -| header-property-path | Path defining the headers that needs to be selected on the model for the http request. | No | N/A | | Valid property paths | -| body-property-path | Path defining the body that needs to be selected on the model to be added when a POST http request is used. | No | N/A | / | Valid property paths | -| http-method-property-path | Path defining the http method that needs to be selected on the model for the http request. | No | GET | GET | GET or POST | -| auth.xxx retries.xxx rate-limit.xxx | LDIO Http Requester Config | No | N/A | N/A | [LDIO Http Requester Config](../ldio-core/ldio-http-requester) | +| Property | Description | Required | Default | Example | Supported values | +|:------------------------------------|:------------------------------------------------------------------------------------------------------------|:---------|:--------|:----------------------------------------------------|:---------------------------------------------------------------| +| adapter.name | This transformer requires an [ldio-adapter](../ldio-adapters) to convert the responses to linked data. | Yes | N/A | Ldio:RdfAdapter | Paths of supported LDIO Adapters | +| adapter.config.xxx | Optional config that may be required by the adapter | No | N/A | Ldio:RdfAdapter | Paths of supported LDIO Adapters | +| url-property-path | Path defining the url that needs to be selected on the model for the http request. | Yes | N/A | | Valid property paths | +| header-property-path | Path defining the headers that needs to be selected on the model for the http request. | No | N/A | | Valid property paths | +| body-property-path | Path defining the body that needs to be selected on the model to be added when a POST http request is used. | No | N/A | / | Valid property paths | +| http-method-property-path | Path defining the http method that needs to be selected on the model for the http request. | No | GET | GET | GET or POST | +| auth.xxx retries.xxx rate-limit.xxx | LDIO Http Requester Config | No | N/A | N/A | [LDIO Http Requester Config](../ldio-core/ldio-http-requester) | Note that all adapters are supported. When the adapter requires additional config, this can be added as seen below in the example. @@ -31,10 +31,10 @@ This example contains a JsonToLdAdapter which needs "core-context" as config. At the bottom there is also "auth" config provided for the request executor. ```yaml - - name: be.vlaanderen.informatievlaanderen.ldes.ldio.LdioHttpEnricher + - name: Ldio:HttpEnricher config: adapter: - name: be.vlaanderen.informatievlaanderen.ldes.ldi.JsonToLdAdapter + name: Ldio:JsonToLdAdapter config: core-context: file:///ldio/jsonld/observation.jsonld url-property-path: diff --git a/docs/_ldio/ldio-transformers/ldio-sparql-construct.md b/docs/_ldio/ldio-transformers/ldio-sparql-construct.md index e8b21fe1f..2bb564351 100644 --- a/docs/_ldio/ldio-transformers/ldio-sparql-construct.md +++ b/docs/_ldio/ldio-transformers/ldio-sparql-construct.md @@ -5,7 +5,8 @@ title: SPARQL Construct --- # LDIO SPARQL Construct -***be.vlaanderen.informatievlaanderen.ldes.ldi.SparqlConstructTransformer*** + +***Ldio:SparqlConstructTransformer*** An LDIO wrapper component for the [LDI SPARQL Construct building block](../../core/ldi-transformers/sparql-construct) diff --git a/docs/_ldio/ldio-transformers/ldio-version-materializer.md b/docs/_ldio/ldio-transformers/ldio-version-materializer.md index 215b01beb..3ce5a0a51 100644 --- a/docs/_ldio/ldio-transformers/ldio-version-materializer.md +++ b/docs/_ldio/ldio-transformers/ldio-version-materializer.md @@ -5,7 +5,8 @@ title: Version Materializer --- # LDIO Version Materializer -***be.vlaanderen.informatievlaanderen.ldes.ldi.VersionMaterialiser*** + +***Ldio:VersionMaterialiser*** An LDIO wrapper component for the [LDI Version Materializer building block](../../core/ldi-transformers/version-materializer) diff --git a/docs/_ldio/ldio-transformers/ldio-version-object-creator.md b/docs/_ldio/ldio-transformers/ldio-version-object-creator.md index 9b093cf36..c4031f18d 100644 --- a/docs/_ldio/ldio-transformers/ldio-version-object-creator.md +++ b/docs/_ldio/ldio-transformers/ldio-version-object-creator.md @@ -5,7 +5,8 @@ title: Version Object Creator --- # LDIO Version Object Creator -***be.vlaanderen.informatievlaanderen.ldes.ldi.VersionObjectCreator*** + +***Ldio:VersionObjectCreator*** An LDIO wrapper component for the [LDI Version Object Creator building block](../../core/ldi-transformers/version-object-creator)