From ebd56ba58bcd081eb8cbfa0626ecaf76103273fd Mon Sep 17 00:00:00 2001 From: Einar Omang Date: Mon, 16 Sep 2024 13:42:00 +0200 Subject: [PATCH] Release IDM support --- manifest.yml | 5 +++++ schema/cognite_config.schema.json | 10 +++++++++- schema/logger_config.schema.json | 2 +- schema/state_storage_config.schema.json | 2 +- schema/ua_retries_config.schema.json | 2 +- 5 files changed, 17 insertions(+), 4 deletions(-) diff --git a/manifest.yml b/manifest.yml index 9b1c150b..572fd931 100644 --- a/manifest.yml +++ b/manifest.yml @@ -67,6 +67,11 @@ schema: - "https://raw.githubusercontent.com/" versions: + "2.31.0": + description: Support for writing timeseries to the core data models. + changelog: + added: + - Support for writing time series to the core data models. "2.30.4": description: Fix some minor issues related to retrying failed pushes to CDF. changelog: diff --git a/schema/cognite_config.schema.json b/schema/cognite_config.schema.json index aa16bad1..cf840f6e 100644 --- a/schema/cognite_config.schema.json +++ b/schema/cognite_config.schema.json @@ -5,7 +5,7 @@ "description": "Configuration for pushing data to Cognite Data Fusion (CDF)", "allOf": [ { - "$ref": "https://raw.githubusercontent.com/cognitedata/dotnet-extractor-utils/v1.19.0/schema/cognite_config.schema.json" + "$ref": "https://raw.githubusercontent.com/cognitedata/dotnet-extractor-utils/v1.26.0/schema/cognite_config.schema.json" } ], "unevaluatedProperties": false, @@ -89,6 +89,14 @@ "relationships": { "type": "boolean", "description": "Set to `true` to enable creating relationships from OPC UA references. Requires [`extraction.relationships`](#extraction.relationships) to be enabled." + }, + "space": { + "type": "string", + "description": "Data modeling space to write to. If this is set, metadata is written to the core data models instead of to CDF Clean. Note that only timeseries are currently supported. Nodes will be created in the CogniteExtractorTimeSeries view in the industrial data models." + }, + "source": { + "type": "string", + "description": "External ID of the `source` that created core data model time series will be tied to. If this is not specified, it defaults to either `OPC_UA:[source.endpoint-url]` or `OPC_UA_NODESET:[source.node-set-source.nodesets[LAST].[file-name or url]`" } } }, diff --git a/schema/logger_config.schema.json b/schema/logger_config.schema.json index 328b592b..61305f66 100644 --- a/schema/logger_config.schema.json +++ b/schema/logger_config.schema.json @@ -4,7 +4,7 @@ "description": "Configure logging to console or file", "allOf": [ { - "$ref": "https://raw.githubusercontent.com/cognitedata/dotnet-extractor-utils/v1.19.0/schema/logger_config.schema.json" + "$ref": "https://raw.githubusercontent.com/cognitedata/dotnet-extractor-utils/v1.26.0/schema/logger_config.schema.json" } ], "unevaluatedProperties": false, diff --git a/schema/state_storage_config.schema.json b/schema/state_storage_config.schema.json index f011631d..391b8848 100644 --- a/schema/state_storage_config.schema.json +++ b/schema/state_storage_config.schema.json @@ -6,7 +6,7 @@ "unevaluatedProperties": false, "allOf": [ { - "$ref": "https://raw.githubusercontent.com/cognitedata/dotnet-extractor-utils/v1.19.0/schema/state_store_config.schema.json" + "$ref": "https://raw.githubusercontent.com/cognitedata/dotnet-extractor-utils/v1.26.0/schema/state_store_config.schema.json" } ], "properties": { diff --git a/schema/ua_retries_config.schema.json b/schema/ua_retries_config.schema.json index 76dc9d4a..ce4faf44 100644 --- a/schema/ua_retries_config.schema.json +++ b/schema/ua_retries_config.schema.json @@ -5,7 +5,7 @@ "description": "Configuration for retries on OPC-UA service calls", "allOf": [ { - "$ref": "https://raw.githubusercontent.com/cognitedata/dotnet-extractor-utils/v1.19.0/schema/retry_config.schema.json" + "$ref": "https://raw.githubusercontent.com/cognitedata/dotnet-extractor-utils/v1.26.0/schema/retry_config.schema.json" } ], "unevaluatedProperties": false,