From e52ebc190116732de303bdba5f8faaac83543a34 Mon Sep 17 00:00:00 2001 From: Anders Albert <60234212+doctrino@users.noreply.github.com> Date: Sun, 29 Sep 2024 17:36:42 +0200 Subject: [PATCH] =?UTF-8?q?[PYG-210]=F0=9F=90=82=20Cleanup=20Test=20Data?= =?UTF-8?q?=20(#298)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * refactor: removed unused nodes * refactor: removed use of overwrite * build: not deploy all models * build; upgrade toolkit * refactor: remove unused property --- dev.py | 24 +- tests/config.dev.yaml | 1 - tests/constants.py | 36 +- .../containers/APM_Checklist.container.yaml | 101 - .../APM_ChecklistItem.container.yaml | 118 -- .../containers/APM_Measurement.container.yaml | 107 - .../containers/APM_Observation.container.yaml | 109 - .../containers/APM_Schedule.container.yaml | 92 - .../containers/APM_Template.container.yaml | 63 - .../APM_TemplateItem.container.yaml | 63 - .../containers/APM_User.container.yaml | 35 - .../containers/Vec3f.container.yaml | 26 - tests/data_models/APM_AppData_4/model.yaml | 1396 ------------- .../views/APM_Checklist.view.yaml | 105 - .../views/APM_ChecklistItem.view.yaml | 119 -- .../views/APM_Measurement.view.yaml | 101 - .../views/APM_Observation.view.yaml | 112 -- .../views/APM_Schedule.view.yaml | 86 - .../views/APM_Template.view.yaml | 69 - .../views/APM_TemplateItem.view.yaml | 57 - .../APM_AppData_4/views/APM_User.view.yaml | 33 - .../APM_AppData_4/views/Vec3f.view.yaml | 26 - .../containers/Asset.container.yaml | 56 - .../containers/CDF_User.container.yaml | 26 - .../CDF_UserPreferences.container.yaml | 19 - .../containers/Checklist.container.yaml | 115 -- .../containers/ChecklistItem.container.yaml | 121 -- .../MeasurementReading.container.yaml | 96 - .../containers/Observation.container.yaml | 122 -- .../containers/Schedule.container.yaml | 106 - .../containers/Template.container.yaml | 77 - .../containers/TemplateItem.container.yaml | 68 - tests/data_models/ApmAppData/model.yaml | 1746 ----------------- .../ApmAppData/views/Asset.view.yaml | 53 - .../ApmAppData/views/CDF_User.view.yaml | 25 - .../views/CDF_UserPreferences.view.yaml | 18 - .../ApmAppData/views/Checklist.view.yaml | 125 -- .../ApmAppData/views/ChecklistItem.view.yaml | 144 -- .../views/MeasurementReading.view.yaml | 100 - .../ApmAppData/views/Observation.view.yaml | 121 -- .../ApmAppData/views/Schedule.view.yaml | 107 - .../ApmAppData/views/Template.view.yaml | 91 - .../ApmAppData/views/TemplateItem.view.yaml | 95 - .../ApmSimple/containers/Asset.container.yaml | 126 -- .../Cdf3dConnectionProperties.container.yaml | 22 - .../containers/Cdf3dModel.container.yaml | 11 - .../containers/WorkItem.container.yaml | 77 - .../containers/WorkOrder.container.yaml | 161 -- tests/data_models/ApmSimple/model.yaml | 869 -------- .../ApmSimple/views/Asset.view.yaml | 163 -- .../views/Cdf3dConnectionProperties.view.yaml | 16 - .../ApmSimple/views/Cdf3dEntity.view.yaml | 21 - .../ApmSimple/views/Cdf3dModel.view.yaml | 27 - .../ApmSimple/views/WorkItem.view.yaml | 90 - .../ApmSimple/views/WorkOrder.view.yaml | 179 -- .../containers/WindTurbine.container.yaml | 8 - 56 files changed, 3 insertions(+), 8077 deletions(-) delete mode 100644 tests/data_models/APM_AppData_4/containers/APM_Checklist.container.yaml delete mode 100644 tests/data_models/APM_AppData_4/containers/APM_ChecklistItem.container.yaml delete mode 100644 tests/data_models/APM_AppData_4/containers/APM_Measurement.container.yaml delete mode 100644 tests/data_models/APM_AppData_4/containers/APM_Observation.container.yaml delete mode 100644 tests/data_models/APM_AppData_4/containers/APM_Schedule.container.yaml delete mode 100644 tests/data_models/APM_AppData_4/containers/APM_Template.container.yaml delete mode 100644 tests/data_models/APM_AppData_4/containers/APM_TemplateItem.container.yaml delete mode 100644 tests/data_models/APM_AppData_4/containers/APM_User.container.yaml delete mode 100644 tests/data_models/APM_AppData_4/containers/Vec3f.container.yaml delete mode 100644 tests/data_models/APM_AppData_4/model.yaml delete mode 100644 tests/data_models/APM_AppData_4/views/APM_Checklist.view.yaml delete mode 100644 tests/data_models/APM_AppData_4/views/APM_ChecklistItem.view.yaml delete mode 100644 tests/data_models/APM_AppData_4/views/APM_Measurement.view.yaml delete mode 100644 tests/data_models/APM_AppData_4/views/APM_Observation.view.yaml delete mode 100644 tests/data_models/APM_AppData_4/views/APM_Schedule.view.yaml delete mode 100644 tests/data_models/APM_AppData_4/views/APM_Template.view.yaml delete mode 100644 tests/data_models/APM_AppData_4/views/APM_TemplateItem.view.yaml delete mode 100644 tests/data_models/APM_AppData_4/views/APM_User.view.yaml delete mode 100644 tests/data_models/APM_AppData_4/views/Vec3f.view.yaml delete mode 100644 tests/data_models/ApmAppData/containers/Asset.container.yaml delete mode 100644 tests/data_models/ApmAppData/containers/CDF_User.container.yaml delete mode 100644 tests/data_models/ApmAppData/containers/CDF_UserPreferences.container.yaml delete mode 100644 tests/data_models/ApmAppData/containers/Checklist.container.yaml delete mode 100644 tests/data_models/ApmAppData/containers/ChecklistItem.container.yaml delete mode 100644 tests/data_models/ApmAppData/containers/MeasurementReading.container.yaml delete mode 100644 tests/data_models/ApmAppData/containers/Observation.container.yaml delete mode 100644 tests/data_models/ApmAppData/containers/Schedule.container.yaml delete mode 100644 tests/data_models/ApmAppData/containers/Template.container.yaml delete mode 100644 tests/data_models/ApmAppData/containers/TemplateItem.container.yaml delete mode 100644 tests/data_models/ApmAppData/model.yaml delete mode 100644 tests/data_models/ApmAppData/views/Asset.view.yaml delete mode 100644 tests/data_models/ApmAppData/views/CDF_User.view.yaml delete mode 100644 tests/data_models/ApmAppData/views/CDF_UserPreferences.view.yaml delete mode 100644 tests/data_models/ApmAppData/views/Checklist.view.yaml delete mode 100644 tests/data_models/ApmAppData/views/ChecklistItem.view.yaml delete mode 100644 tests/data_models/ApmAppData/views/MeasurementReading.view.yaml delete mode 100644 tests/data_models/ApmAppData/views/Observation.view.yaml delete mode 100644 tests/data_models/ApmAppData/views/Schedule.view.yaml delete mode 100644 tests/data_models/ApmAppData/views/Template.view.yaml delete mode 100644 tests/data_models/ApmAppData/views/TemplateItem.view.yaml delete mode 100644 tests/data_models/ApmSimple/containers/Asset.container.yaml delete mode 100644 tests/data_models/ApmSimple/containers/Cdf3dConnectionProperties.container.yaml delete mode 100644 tests/data_models/ApmSimple/containers/Cdf3dModel.container.yaml delete mode 100644 tests/data_models/ApmSimple/containers/WorkItem.container.yaml delete mode 100644 tests/data_models/ApmSimple/containers/WorkOrder.container.yaml delete mode 100644 tests/data_models/ApmSimple/model.yaml delete mode 100644 tests/data_models/ApmSimple/views/Asset.view.yaml delete mode 100644 tests/data_models/ApmSimple/views/Cdf3dConnectionProperties.view.yaml delete mode 100644 tests/data_models/ApmSimple/views/Cdf3dEntity.view.yaml delete mode 100644 tests/data_models/ApmSimple/views/Cdf3dModel.view.yaml delete mode 100644 tests/data_models/ApmSimple/views/WorkItem.view.yaml delete mode 100644 tests/data_models/ApmSimple/views/WorkOrder.view.yaml diff --git a/dev.py b/dev.py index a7888284c..f6059d27f 100644 --- a/dev.py +++ b/dev.py @@ -1,7 +1,4 @@ -""" -This is a small CLI used for development of Pygen. - -""" +"""This is a small CLI used for Pygen development.""" import re from collections import defaultdict @@ -38,9 +35,6 @@ @app.command("generate", help=f"Generate all example SDKs in directory '{EXAMPLES_DIR.relative_to(REPO_ROOT)}/'") def generate_sdks( - overwrite: bool = typer.Option( - False, help="Whether to overwrite the files expected to be manually maintained in the examples" - ), sdk_name: str = typer.Option(None, "--sdk", help="Generate only the specified SDK"), ): for example_sdk in EXAMPLE_SDKS: @@ -68,15 +62,6 @@ def generate_sdks( ) sdk = sdk_generator.generate_sdk() - manual_files = [] - if overwrite is not True: - for manual_file in example_sdk.manual_files: - manual_path = manual_file.relative_to(EXAMPLES_DIR) - popped = sdk.pop(manual_path, None) - if popped is None: - typer.echo(f"Could not find {manual_path} in generated SDK", err=True, color=True) - else: - manual_files.append(manual_path) write_sdk_to_disk( sdk, EXAMPLES_DIR, @@ -86,12 +71,7 @@ def generate_sdks( top_level_package=example_sdk.top_level_package, ) typer.echo(f"{example_sdk.client_name} SDK Created in {example_sdk.client_dir}") - if manual_files: - typer.echo( - f"The following files were not updated, as they are expected to be changed manually: {manual_files}" - ) - else: - typer.echo("All files updated! Including files assumed to be manually maintained.") + typer.echo("All files updated! Including files assumed to be manually maintained.") typer.echo("\n") typer.echo("All SDKs Created!") diff --git a/tests/config.dev.yaml b/tests/config.dev.yaml index 235d98f3f..bf85ae6ed 100644 --- a/tests/config.dev.yaml +++ b/tests/config.dev.yaml @@ -3,7 +3,6 @@ environment: type: dev selected: - models - - data_testing variables: modules: diff --git a/tests/constants.py b/tests/constants.py index 7efbf01d3..a04081b52 100644 --- a/tests/constants.py +++ b/tests/constants.py @@ -112,7 +112,7 @@ def load_write_model(self, data_model_id: dm.DataModelId) -> dm.DataModelApply: return dm.DataModelApply( space=data_model_id.space, external_id=data_model_id.external_id, - version=data_model_id.version, + version=data_model_id.version or "v1", description="", name=data_model_id.external_id, views=views, @@ -222,23 +222,6 @@ def load_read_nodes(self, data_model_id: dm.DataModelId) -> dm.NodeList: ) -# This uses connections that are not supported by the UI, so it will not be shown there. -OMNIUM_CONNECTION_SDK = ExampleSDK( - data_model_ids=[DataModelId("pygen-models", "OmniConnection", "1")], - _top_level_package="omni_connection", - client_name="OmniConnectionClient", - generate_sdk=False, - instance_space="omni-instances", -) - -APM_SDK = ExampleSDK( - data_model_ids=[DataModelId("tutorial_apm_simple", "ApmSimple", "6")], - _top_level_package="tutorial_apm_simple.client", - client_name="ApmSimpleClient", - generate_sdk=False, - instance_space=None, -) - PUMP_SDK = ExampleSDK( data_model_ids=[DataModelId("IntegrationTestsImmutable", "Pumps", "1")], _top_level_package="pump.client", @@ -255,23 +238,6 @@ def load_read_nodes(self, data_model_id: dm.DataModelId) -> dm.NodeList: instance_space="IntegrationTestsImmutable", ) - -APM_APP_DATA_SOURCE = ExampleSDK( - data_model_ids=[DataModelId("APM_AppData_4", "APM_AppData_4", "7")], - _top_level_package="apm_domain.client", - client_name="ApmClient", - generate_sdk=False, - instance_space=None, -) - -APM_APP_DATA_SINK = ExampleSDK( - data_model_ids=[DataModelId("IntegrationTestsImmutable", "ApmAppData", "v3")], - _top_level_package="sysdm_domain.client", - client_name="SysDMClient", - generate_sdk=False, - instance_space=None, -) - EQUIPMENT_UNIT_SDK = ExampleSDK( data_model_ids=[DataModelId("IntegrationTestsImmutable", "EquipmentUnit", "2")], _top_level_package="equipment_unit", diff --git a/tests/data_models/APM_AppData_4/containers/APM_Checklist.container.yaml b/tests/data_models/APM_AppData_4/containers/APM_Checklist.container.yaml deleted file mode 100644 index 7e4ff8459..000000000 --- a/tests/data_models/APM_AppData_4/containers/APM_Checklist.container.yaml +++ /dev/null @@ -1,101 +0,0 @@ -space: APM_AppData_4 -externalId: APM_Checklist -name: APM_Checklist -usedFor: node -properties: - assignedTo: - type: - list: true - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: assignedTo - createdByExternalId: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: createdByExternalId - description: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: description - endTime: - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - name: endTime - isArchived: - type: - list: false - type: boolean - nullable: true - autoIncrement: false - name: isArchived - description: System data - rootLocationExternalId: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: rootLocationExternalId - sourceId: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: sourceId - description: Basic information - startTime: - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - name: startTime - description: Scheduling information - status: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: status - title: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: title - type: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: type - updatedByExternalId: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: updatedByExternalId diff --git a/tests/data_models/APM_AppData_4/containers/APM_ChecklistItem.container.yaml b/tests/data_models/APM_AppData_4/containers/APM_ChecklistItem.container.yaml deleted file mode 100644 index b15c51818..000000000 --- a/tests/data_models/APM_AppData_4/containers/APM_ChecklistItem.container.yaml +++ /dev/null @@ -1,118 +0,0 @@ -space: APM_AppData_4 -externalId: APM_ChecklistItem -name: APM_ChecklistItem -usedFor: node -properties: - assetExternalId: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: assetExternalId - checklistExternalId: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: checklistExternalId - description: Contextualisation - createdByExternalId: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: createdByExternalId - description: System data - description: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: description - endTime: - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - name: endTime - fileExternalIds: - type: - list: true - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: fileExternalIds - labels: - type: - list: true - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: labels - note: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: note - order: - type: - list: false - type: int32 - nullable: true - autoIncrement: false - name: order - sourceId: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: sourceId - description: Basic information - startTime: - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - name: startTime - description: Scheduling information - status: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: status - title: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: title - updatedByExternalId: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: updatedByExternalId diff --git a/tests/data_models/APM_AppData_4/containers/APM_Measurement.container.yaml b/tests/data_models/APM_AppData_4/containers/APM_Measurement.container.yaml deleted file mode 100644 index 12be91070..000000000 --- a/tests/data_models/APM_AppData_4/containers/APM_Measurement.container.yaml +++ /dev/null @@ -1,107 +0,0 @@ -space: APM_AppData_4 -externalId: APM_Measurement -name: APM_Measurement -usedFor: node -properties: - createdByExternalId: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: createdByExternalId - description: System data - max: - type: - list: false - type: float64 - nullable: true - autoIncrement: false - name: max - measuredAt: - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - name: measuredAt - description: Data - min: - type: - list: false - type: float64 - nullable: true - autoIncrement: false - name: min - description: Configuration - numericReading: - type: - list: false - type: float64 - nullable: true - autoIncrement: false - name: numericReading - operationExternalId: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: operationExternalId - description: Contextualisation - options: - type: - list: true - type: json - nullable: true - autoIncrement: false - name: options - order: - type: - list: false - type: int32 - nullable: true - autoIncrement: false - name: order - stringReading: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: stringReading - timeSeries: - type: - list: false - type: timeseries - nullable: true - autoIncrement: false - name: timeSeries - timeseriesExternalId: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: timeseriesExternalId - type: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: type - description: Basic information - updatedByExternalId: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: updatedByExternalId diff --git a/tests/data_models/APM_AppData_4/containers/APM_Observation.container.yaml b/tests/data_models/APM_AppData_4/containers/APM_Observation.container.yaml deleted file mode 100644 index 95828164b..000000000 --- a/tests/data_models/APM_AppData_4/containers/APM_Observation.container.yaml +++ /dev/null @@ -1,109 +0,0 @@ -space: APM_AppData_4 -externalId: APM_Observation -name: APM_Observation -usedFor: node -properties: - assetExternalId: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: assetExternalId - description: Contextualization - createdByExternalId: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: createdByExternalId - description: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: description - description: Observation data - fileExternalIds: - type: - list: true - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: fileExternalIds - files: - type: - list: true - type: file - nullable: true - autoIncrement: false - name: files - isArchived: - type: - list: false - type: boolean - nullable: true - autoIncrement: false - name: isArchived - description: System data - position: - type: - type: direct - nullable: true - autoIncrement: false - name: position - priority: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: priority - sourceId: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: sourceId - description: Basic information - status: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: status - troubleshooting: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: troubleshooting - type: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: type - updatedByExternalId: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: updatedByExternalId diff --git a/tests/data_models/APM_AppData_4/containers/APM_Schedule.container.yaml b/tests/data_models/APM_AppData_4/containers/APM_Schedule.container.yaml deleted file mode 100644 index 802810b57..000000000 --- a/tests/data_models/APM_AppData_4/containers/APM_Schedule.container.yaml +++ /dev/null @@ -1,92 +0,0 @@ -space: APM_AppData_4 -externalId: APM_Schedule -name: APM_Schedule -usedFor: node -properties: - byDay: - type: - list: true - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: byDay - endTime: - type: - list: false - type: int32 - nullable: true - autoIncrement: false - name: endTime - executedAt: - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - name: executedAt - freq: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: freq - description: iCalendar RRULE props - interval: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: interval - startDate: - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - name: startDate - startTime: - type: - list: false - type: int32 - nullable: true - autoIncrement: false - name: startTime - description: Schedule information - status: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: status - description: Basic information - templateItemExternalId: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: templateItemExternalId - description: Contextualisation - timezone: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: timezone - until: - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - name: until diff --git a/tests/data_models/APM_AppData_4/containers/APM_Template.container.yaml b/tests/data_models/APM_AppData_4/containers/APM_Template.container.yaml deleted file mode 100644 index 74b784f38..000000000 --- a/tests/data_models/APM_AppData_4/containers/APM_Template.container.yaml +++ /dev/null @@ -1,63 +0,0 @@ -space: APM_AppData_4 -externalId: APM_Template -name: APM_Template -usedFor: node -properties: - assignedTo: - type: - list: true - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: assignedTo - createdByExternalId: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: createdByExternalId - isArchived: - type: - list: false - type: boolean - nullable: true - autoIncrement: false - name: isArchived - description: System data - rootLocationExternalId: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: rootLocationExternalId - description: Contextualisation - status: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: status - title: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: title - description: Basic information - updatedByExternalId: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: updatedByExternalId diff --git a/tests/data_models/APM_AppData_4/containers/APM_TemplateItem.container.yaml b/tests/data_models/APM_AppData_4/containers/APM_TemplateItem.container.yaml deleted file mode 100644 index 24eb6b1ce..000000000 --- a/tests/data_models/APM_AppData_4/containers/APM_TemplateItem.container.yaml +++ /dev/null @@ -1,63 +0,0 @@ -space: APM_AppData_4 -externalId: APM_TemplateItem -name: APM_TemplateItem -usedFor: node -properties: - assetExternalId: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: assetExternalId - createdByExternalId: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: createdByExternalId - description: System data - labels: - type: - list: true - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: labels - order: - type: - list: false - type: int32 - nullable: true - autoIncrement: false - name: order - templateExternalId: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: templateExternalId - description: Contextualisation - title: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: title - description: Basic information - updatedByExternalId: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: updatedByExternalId diff --git a/tests/data_models/APM_AppData_4/containers/APM_User.container.yaml b/tests/data_models/APM_AppData_4/containers/APM_User.container.yaml deleted file mode 100644 index 84ae348b6..000000000 --- a/tests/data_models/APM_AppData_4/containers/APM_User.container.yaml +++ /dev/null @@ -1,35 +0,0 @@ -space: APM_AppData_4 -externalId: APM_User -name: APM_User -usedFor: node -properties: - email: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: email - lastSeen: - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - name: lastSeen - name: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: name - preferences: - type: - list: false - type: json - nullable: true - autoIncrement: false - name: preferences diff --git a/tests/data_models/APM_AppData_4/containers/Vec3f.container.yaml b/tests/data_models/APM_AppData_4/containers/Vec3f.container.yaml deleted file mode 100644 index cd5ce2899..000000000 --- a/tests/data_models/APM_AppData_4/containers/Vec3f.container.yaml +++ /dev/null @@ -1,26 +0,0 @@ -space: APM_AppData_4 -externalId: Vec3f -name: Vec3f -usedFor: node -properties: - x: - type: - list: false - type: float64 - nullable: true - autoIncrement: false - name: x - y: - type: - list: false - type: float64 - nullable: true - autoIncrement: false - name: y - z: - type: - list: false - type: float64 - nullable: true - autoIncrement: false - name: z diff --git a/tests/data_models/APM_AppData_4/model.yaml b/tests/data_models/APM_AppData_4/model.yaml deleted file mode 100644 index 7104e5b4f..000000000 --- a/tests/data_models/APM_AppData_4/model.yaml +++ /dev/null @@ -1,1396 +0,0 @@ -space: APM_AppData_4 -externalId: APM_AppData_4 -name: APM_AppData_4 -description: '' -version: '7' -views: -- space: APM_AppData_4 - externalId: APM_Checklist - name: APM_Checklist - implements: [] - version: '7' - writable: true - usedFor: node - isGlobal: false - properties: - assignedTo: - container: - space: APM_AppData_4 - externalId: APM_Checklist - containerPropertyIdentifier: assignedTo - type: - list: true - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: assignedTo - description: null - checklistItems: - type: - space: APM_AppData_4 - externalId: APM_Checklist.checklistItems - source: - space: APM_AppData_4 - externalId: APM_ChecklistItem - version: '7' - type: view - name: checklistItems - description: Contextualisation - edgeSource: null - direction: outwards - connectionType: multi_edge_connection - createdByExternalId: - container: - space: APM_AppData_4 - externalId: APM_Checklist - containerPropertyIdentifier: createdByExternalId - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: createdByExternalId - description: null - description: - container: - space: APM_AppData_4 - externalId: APM_Checklist - containerPropertyIdentifier: description - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: description - description: null - endTime: - container: - space: APM_AppData_4 - externalId: APM_Checklist - containerPropertyIdentifier: endTime - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: endTime - description: null - isArchived: - container: - space: APM_AppData_4 - externalId: APM_Checklist - containerPropertyIdentifier: isArchived - type: - list: false - type: boolean - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: isArchived - description: System data - rootLocationExternalId: - container: - space: APM_AppData_4 - externalId: APM_Checklist - containerPropertyIdentifier: rootLocationExternalId - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: rootLocationExternalId - description: null - sourceId: - container: - space: APM_AppData_4 - externalId: APM_Checklist - containerPropertyIdentifier: sourceId - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: sourceId - description: Basic information - startTime: - container: - space: APM_AppData_4 - externalId: APM_Checklist - containerPropertyIdentifier: startTime - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: startTime - description: Scheduling information - status: - container: - space: APM_AppData_4 - externalId: APM_Checklist - containerPropertyIdentifier: status - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: status - description: null - title: - container: - space: APM_AppData_4 - externalId: APM_Checklist - containerPropertyIdentifier: title - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: title - description: null - type: - container: - space: APM_AppData_4 - externalId: APM_Checklist - containerPropertyIdentifier: type - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: type - description: null - updatedByExternalId: - container: - space: APM_AppData_4 - externalId: APM_Checklist - containerPropertyIdentifier: updatedByExternalId - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: updatedByExternalId - description: null - lastUpdatedTime: 1699136187224 - createdTime: 1699136187224 -- space: APM_AppData_4 - externalId: APM_ChecklistItem - name: APM_ChecklistItem - implements: [] - version: '7' - writable: true - usedFor: node - isGlobal: false - properties: - assetExternalId: - container: - space: APM_AppData_4 - externalId: APM_ChecklistItem - containerPropertyIdentifier: assetExternalId - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: assetExternalId - description: null - checklistExternalId: - container: - space: APM_AppData_4 - externalId: APM_ChecklistItem - containerPropertyIdentifier: checklistExternalId - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: checklistExternalId - description: Contextualisation - createdByExternalId: - container: - space: APM_AppData_4 - externalId: APM_ChecklistItem - containerPropertyIdentifier: createdByExternalId - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: createdByExternalId - description: System data - description: - container: - space: APM_AppData_4 - externalId: APM_ChecklistItem - containerPropertyIdentifier: description - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: description - description: null - endTime: - container: - space: APM_AppData_4 - externalId: APM_ChecklistItem - containerPropertyIdentifier: endTime - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: endTime - description: null - fileExternalIds: - container: - space: APM_AppData_4 - externalId: APM_ChecklistItem - containerPropertyIdentifier: fileExternalIds - type: - list: true - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: fileExternalIds - description: null - labels: - container: - space: APM_AppData_4 - externalId: APM_ChecklistItem - containerPropertyIdentifier: labels - type: - list: true - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: labels - description: null - note: - container: - space: APM_AppData_4 - externalId: APM_ChecklistItem - containerPropertyIdentifier: note - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: note - description: null - observations: - type: - space: APM_AppData_4 - externalId: APM_ChecklistItem.observations - source: - space: APM_AppData_4 - externalId: APM_Observation - version: '7' - type: view - name: observations - description: null - edgeSource: null - direction: outwards - connectionType: multi_edge_connection - order: - container: - space: APM_AppData_4 - externalId: APM_ChecklistItem - containerPropertyIdentifier: order - type: - list: false - type: int32 - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: order - description: null - sourceId: - container: - space: APM_AppData_4 - externalId: APM_ChecklistItem - containerPropertyIdentifier: sourceId - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: sourceId - description: Basic information - startTime: - container: - space: APM_AppData_4 - externalId: APM_ChecklistItem - containerPropertyIdentifier: startTime - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: startTime - description: Scheduling information - status: - container: - space: APM_AppData_4 - externalId: APM_ChecklistItem - containerPropertyIdentifier: status - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: status - description: null - title: - container: - space: APM_AppData_4 - externalId: APM_ChecklistItem - containerPropertyIdentifier: title - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: title - description: null - updatedByExternalId: - container: - space: APM_AppData_4 - externalId: APM_ChecklistItem - containerPropertyIdentifier: updatedByExternalId - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: updatedByExternalId - description: null - lastUpdatedTime: 1699136187224 - createdTime: 1699136187224 -- space: APM_AppData_4 - externalId: APM_Measurement - name: APM_Measurement - implements: [] - version: '7' - writable: true - usedFor: node - isGlobal: false - properties: - createdByExternalId: - container: - space: APM_AppData_4 - externalId: APM_Measurement - containerPropertyIdentifier: createdByExternalId - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: createdByExternalId - description: System data - max: - container: - space: APM_AppData_4 - externalId: APM_Measurement - containerPropertyIdentifier: max - type: - list: false - type: float64 - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: max - description: null - measuredAt: - container: - space: APM_AppData_4 - externalId: APM_Measurement - containerPropertyIdentifier: measuredAt - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: measuredAt - description: Data - min: - container: - space: APM_AppData_4 - externalId: APM_Measurement - containerPropertyIdentifier: min - type: - list: false - type: float64 - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: min - description: Configuration - numericReading: - container: - space: APM_AppData_4 - externalId: APM_Measurement - containerPropertyIdentifier: numericReading - type: - list: false - type: float64 - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: numericReading - description: null - operationExternalId: - container: - space: APM_AppData_4 - externalId: APM_Measurement - containerPropertyIdentifier: operationExternalId - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: operationExternalId - description: Contextualisation - options: - container: - space: APM_AppData_4 - externalId: APM_Measurement - containerPropertyIdentifier: options - type: - list: true - type: json - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: options - description: null - order: - container: - space: APM_AppData_4 - externalId: APM_Measurement - containerPropertyIdentifier: order - type: - list: false - type: int32 - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: order - description: null - stringReading: - container: - space: APM_AppData_4 - externalId: APM_Measurement - containerPropertyIdentifier: stringReading - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: stringReading - description: null - timeSeries: - container: - space: APM_AppData_4 - externalId: APM_Measurement - containerPropertyIdentifier: timeSeries - type: - list: false - type: timeseries - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: timeSeries - description: null - timeseriesExternalId: - container: - space: APM_AppData_4 - externalId: APM_Measurement - containerPropertyIdentifier: timeseriesExternalId - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: timeseriesExternalId - description: null - type: - container: - space: APM_AppData_4 - externalId: APM_Measurement - containerPropertyIdentifier: type - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: type - description: Basic information - updatedByExternalId: - container: - space: APM_AppData_4 - externalId: APM_Measurement - containerPropertyIdentifier: updatedByExternalId - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: updatedByExternalId - description: null - lastUpdatedTime: 1699136187224 - createdTime: 1699136187224 -- space: APM_AppData_4 - externalId: APM_Observation - name: APM_Observation - implements: [] - version: '7' - writable: true - usedFor: node - isGlobal: false - properties: - assetExternalId: - container: - space: APM_AppData_4 - externalId: APM_Observation - containerPropertyIdentifier: assetExternalId - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: assetExternalId - description: Contextualization - createdByExternalId: - container: - space: APM_AppData_4 - externalId: APM_Observation - containerPropertyIdentifier: createdByExternalId - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: createdByExternalId - description: null - description: - container: - space: APM_AppData_4 - externalId: APM_Observation - containerPropertyIdentifier: description - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: description - description: Observation data - fileExternalIds: - container: - space: APM_AppData_4 - externalId: APM_Observation - containerPropertyIdentifier: fileExternalIds - type: - list: true - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: fileExternalIds - description: null - files: - container: - space: APM_AppData_4 - externalId: APM_Observation - containerPropertyIdentifier: files - type: - list: true - type: file - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: files - description: null - isArchived: - container: - space: APM_AppData_4 - externalId: APM_Observation - containerPropertyIdentifier: isArchived - type: - list: false - type: boolean - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: isArchived - description: System data - measurements: - type: - space: APM_AppData_4 - externalId: APM_Observation.measurements - source: - space: APM_AppData_4 - externalId: APM_Measurement - version: '7' - type: view - name: measurements - description: null - edgeSource: null - direction: outwards - connectionType: multi_edge_connection - position: - container: - space: APM_AppData_4 - externalId: APM_Observation - containerPropertyIdentifier: position - type: - list: false - type: direct - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: position - description: null - priority: - container: - space: APM_AppData_4 - externalId: APM_Observation - containerPropertyIdentifier: priority - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: priority - description: null - sourceId: - container: - space: APM_AppData_4 - externalId: APM_Observation - containerPropertyIdentifier: sourceId - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: sourceId - description: Basic information - status: - container: - space: APM_AppData_4 - externalId: APM_Observation - containerPropertyIdentifier: status - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: status - description: null - troubleshooting: - container: - space: APM_AppData_4 - externalId: APM_Observation - containerPropertyIdentifier: troubleshooting - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: troubleshooting - description: null - type: - container: - space: APM_AppData_4 - externalId: APM_Observation - containerPropertyIdentifier: type - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: type - description: null - updatedByExternalId: - container: - space: APM_AppData_4 - externalId: APM_Observation - containerPropertyIdentifier: updatedByExternalId - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: updatedByExternalId - description: null - lastUpdatedTime: 1699136187224 - createdTime: 1699136187224 -- space: APM_AppData_4 - externalId: APM_Schedule - name: APM_Schedule - implements: [] - version: '7' - writable: true - usedFor: node - isGlobal: false - properties: - byDay: - container: - space: APM_AppData_4 - externalId: APM_Schedule - containerPropertyIdentifier: byDay - type: - list: true - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: byDay - description: null - endTime: - container: - space: APM_AppData_4 - externalId: APM_Schedule - containerPropertyIdentifier: endTime - type: - list: false - type: int32 - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: endTime - description: null - executedAt: - container: - space: APM_AppData_4 - externalId: APM_Schedule - containerPropertyIdentifier: executedAt - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: executedAt - description: null - freq: - container: - space: APM_AppData_4 - externalId: APM_Schedule - containerPropertyIdentifier: freq - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: freq - description: iCalendar RRULE props - interval: - container: - space: APM_AppData_4 - externalId: APM_Schedule - containerPropertyIdentifier: interval - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: interval - description: null - startDate: - container: - space: APM_AppData_4 - externalId: APM_Schedule - containerPropertyIdentifier: startDate - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: startDate - description: null - startTime: - container: - space: APM_AppData_4 - externalId: APM_Schedule - containerPropertyIdentifier: startTime - type: - list: false - type: int32 - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: startTime - description: Schedule information - status: - container: - space: APM_AppData_4 - externalId: APM_Schedule - containerPropertyIdentifier: status - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: status - description: Basic information - templateItemExternalId: - container: - space: APM_AppData_4 - externalId: APM_Schedule - containerPropertyIdentifier: templateItemExternalId - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: templateItemExternalId - description: Contextualisation - timezone: - container: - space: APM_AppData_4 - externalId: APM_Schedule - containerPropertyIdentifier: timezone - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: timezone - description: null - until: - container: - space: APM_AppData_4 - externalId: APM_Schedule - containerPropertyIdentifier: until - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: until - description: null - lastUpdatedTime: 1699136187224 - createdTime: 1699136187224 -- space: APM_AppData_4 - externalId: APM_Template - name: APM_Template - implements: [] - version: '7' - writable: true - usedFor: node - isGlobal: false - properties: - assignedTo: - container: - space: APM_AppData_4 - externalId: APM_Template - containerPropertyIdentifier: assignedTo - type: - list: true - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: assignedTo - description: null - createdByExternalId: - container: - space: APM_AppData_4 - externalId: APM_Template - containerPropertyIdentifier: createdByExternalId - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: createdByExternalId - description: null - isArchived: - container: - space: APM_AppData_4 - externalId: APM_Template - containerPropertyIdentifier: isArchived - type: - list: false - type: boolean - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: isArchived - description: System data - rootLocationExternalId: - container: - space: APM_AppData_4 - externalId: APM_Template - containerPropertyIdentifier: rootLocationExternalId - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: rootLocationExternalId - description: Contextualisation - status: - container: - space: APM_AppData_4 - externalId: APM_Template - containerPropertyIdentifier: status - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: status - description: null - templateItems: - type: - space: APM_AppData_4 - externalId: APM_Template.templateItems - source: - space: APM_AppData_4 - externalId: APM_TemplateItem - version: '7' - type: view - name: templateItems - description: null - edgeSource: null - direction: outwards - connectionType: multi_edge_connection - title: - container: - space: APM_AppData_4 - externalId: APM_Template - containerPropertyIdentifier: title - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: title - description: Basic information - updatedByExternalId: - container: - space: APM_AppData_4 - externalId: APM_Template - containerPropertyIdentifier: updatedByExternalId - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: updatedByExternalId - description: null - lastUpdatedTime: 1699136187224 - createdTime: 1699136187224 -- space: APM_AppData_4 - externalId: APM_TemplateItem - name: APM_TemplateItem - implements: [] - version: '7' - writable: true - usedFor: node - isGlobal: false - properties: - assetExternalId: - container: - space: APM_AppData_4 - externalId: APM_TemplateItem - containerPropertyIdentifier: assetExternalId - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: assetExternalId - description: null - createdByExternalId: - container: - space: APM_AppData_4 - externalId: APM_TemplateItem - containerPropertyIdentifier: createdByExternalId - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: createdByExternalId - description: System data - labels: - container: - space: APM_AppData_4 - externalId: APM_TemplateItem - containerPropertyIdentifier: labels - type: - list: true - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: labels - description: null - order: - container: - space: APM_AppData_4 - externalId: APM_TemplateItem - containerPropertyIdentifier: order - type: - list: false - type: int32 - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: order - description: null - templateExternalId: - container: - space: APM_AppData_4 - externalId: APM_TemplateItem - containerPropertyIdentifier: templateExternalId - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: templateExternalId - description: Contextualisation - title: - container: - space: APM_AppData_4 - externalId: APM_TemplateItem - containerPropertyIdentifier: title - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: title - description: Basic information - updatedByExternalId: - container: - space: APM_AppData_4 - externalId: APM_TemplateItem - containerPropertyIdentifier: updatedByExternalId - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: updatedByExternalId - description: null - lastUpdatedTime: 1699136187224 - createdTime: 1699136187224 -- space: APM_AppData_4 - externalId: APM_User - name: APM_User - implements: [] - version: '7' - writable: true - usedFor: node - isGlobal: false - properties: - email: - container: - space: APM_AppData_4 - externalId: APM_User - containerPropertyIdentifier: email - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: email - description: null - lastSeen: - container: - space: APM_AppData_4 - externalId: APM_User - containerPropertyIdentifier: lastSeen - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: lastSeen - description: null - name: - container: - space: APM_AppData_4 - externalId: APM_User - containerPropertyIdentifier: name - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: name - description: null - preferences: - container: - space: APM_AppData_4 - externalId: APM_User - containerPropertyIdentifier: preferences - type: - list: false - type: json - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: preferences - description: null - lastUpdatedTime: 1699136187224 - createdTime: 1699136187224 -- space: APM_AppData_4 - externalId: Vec3f - name: Vec3f - implements: [] - version: '7' - writable: true - usedFor: node - isGlobal: false - properties: - x: - container: - space: APM_AppData_4 - externalId: Vec3f - containerPropertyIdentifier: x - type: - list: false - type: float64 - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: x - description: null - y: - container: - space: APM_AppData_4 - externalId: Vec3f - containerPropertyIdentifier: y - type: - list: false - type: float64 - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: y - description: null - z: - container: - space: APM_AppData_4 - externalId: Vec3f - containerPropertyIdentifier: z - type: - list: false - type: float64 - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: z - description: null - lastUpdatedTime: 1699136187224 - createdTime: 1699136187224 -isGlobal: false -lastUpdatedTime: 1699136301665 -createdTime: 1699136187795 diff --git a/tests/data_models/APM_AppData_4/views/APM_Checklist.view.yaml b/tests/data_models/APM_AppData_4/views/APM_Checklist.view.yaml deleted file mode 100644 index 449ca67fb..000000000 --- a/tests/data_models/APM_AppData_4/views/APM_Checklist.view.yaml +++ /dev/null @@ -1,105 +0,0 @@ -space: APM_AppData_4 -externalId: APM_Checklist -name: APM_Checklist -version: '7' -properties: - assignedTo: - container: - space: APM_AppData_4 - externalId: APM_Checklist - type: container - containerPropertyIdentifier: assignedTo - name: assignedTo - checklistItems: - type: - space: APM_AppData_4 - externalId: APM_Checklist.checklistItems - source: - space: APM_AppData_4 - externalId: APM_ChecklistItem - version: '7' - type: view - direction: outwards - name: checklistItems - description: Contextualisation - connectionType: multi_edge_connection - createdByExternalId: - container: - space: APM_AppData_4 - externalId: APM_Checklist - type: container - containerPropertyIdentifier: createdByExternalId - name: createdByExternalId - description: - container: - space: APM_AppData_4 - externalId: APM_Checklist - type: container - containerPropertyIdentifier: description - name: description - endTime: - container: - space: APM_AppData_4 - externalId: APM_Checklist - type: container - containerPropertyIdentifier: endTime - name: endTime - isArchived: - container: - space: APM_AppData_4 - externalId: APM_Checklist - type: container - containerPropertyIdentifier: isArchived - name: isArchived - description: System data - rootLocationExternalId: - container: - space: APM_AppData_4 - externalId: APM_Checklist - type: container - containerPropertyIdentifier: rootLocationExternalId - name: rootLocationExternalId - sourceId: - container: - space: APM_AppData_4 - externalId: APM_Checklist - type: container - containerPropertyIdentifier: sourceId - name: sourceId - description: Basic information - startTime: - container: - space: APM_AppData_4 - externalId: APM_Checklist - type: container - containerPropertyIdentifier: startTime - name: startTime - description: Scheduling information - status: - container: - space: APM_AppData_4 - externalId: APM_Checklist - type: container - containerPropertyIdentifier: status - name: status - title: - container: - space: APM_AppData_4 - externalId: APM_Checklist - type: container - containerPropertyIdentifier: title - name: title - type: - container: - space: APM_AppData_4 - externalId: APM_Checklist - type: container - containerPropertyIdentifier: type - name: type - updatedByExternalId: - container: - space: APM_AppData_4 - externalId: APM_Checklist - type: container - containerPropertyIdentifier: updatedByExternalId - name: updatedByExternalId diff --git a/tests/data_models/APM_AppData_4/views/APM_ChecklistItem.view.yaml b/tests/data_models/APM_AppData_4/views/APM_ChecklistItem.view.yaml deleted file mode 100644 index 29262cd20..000000000 --- a/tests/data_models/APM_AppData_4/views/APM_ChecklistItem.view.yaml +++ /dev/null @@ -1,119 +0,0 @@ -space: APM_AppData_4 -externalId: APM_ChecklistItem -name: APM_ChecklistItem -version: '7' -properties: - assetExternalId: - container: - space: APM_AppData_4 - externalId: APM_ChecklistItem - type: container - containerPropertyIdentifier: assetExternalId - name: assetExternalId - checklistExternalId: - container: - space: APM_AppData_4 - externalId: APM_ChecklistItem - type: container - containerPropertyIdentifier: checklistExternalId - name: checklistExternalId - description: Contextualisation - createdByExternalId: - container: - space: APM_AppData_4 - externalId: APM_ChecklistItem - type: container - containerPropertyIdentifier: createdByExternalId - name: createdByExternalId - description: System data - description: - container: - space: APM_AppData_4 - externalId: APM_ChecklistItem - type: container - containerPropertyIdentifier: description - name: description - endTime: - container: - space: APM_AppData_4 - externalId: APM_ChecklistItem - type: container - containerPropertyIdentifier: endTime - name: endTime - fileExternalIds: - container: - space: APM_AppData_4 - externalId: APM_ChecklistItem - type: container - containerPropertyIdentifier: fileExternalIds - name: fileExternalIds - labels: - container: - space: APM_AppData_4 - externalId: APM_ChecklistItem - type: container - containerPropertyIdentifier: labels - name: labels - note: - container: - space: APM_AppData_4 - externalId: APM_ChecklistItem - type: container - containerPropertyIdentifier: note - name: note - observations: - type: - space: APM_AppData_4 - externalId: APM_ChecklistItem.observations - source: - space: APM_AppData_4 - externalId: APM_Observation - version: '7' - type: view - direction: outwards - name: observations - connectionType: multi_edge_connection - order: - container: - space: APM_AppData_4 - externalId: APM_ChecklistItem - type: container - containerPropertyIdentifier: order - name: order - sourceId: - container: - space: APM_AppData_4 - externalId: APM_ChecklistItem - type: container - containerPropertyIdentifier: sourceId - name: sourceId - description: Basic information - startTime: - container: - space: APM_AppData_4 - externalId: APM_ChecklistItem - type: container - containerPropertyIdentifier: startTime - name: startTime - description: Scheduling information - status: - container: - space: APM_AppData_4 - externalId: APM_ChecklistItem - type: container - containerPropertyIdentifier: status - name: status - title: - container: - space: APM_AppData_4 - externalId: APM_ChecklistItem - type: container - containerPropertyIdentifier: title - name: title - updatedByExternalId: - container: - space: APM_AppData_4 - externalId: APM_ChecklistItem - type: container - containerPropertyIdentifier: updatedByExternalId - name: updatedByExternalId diff --git a/tests/data_models/APM_AppData_4/views/APM_Measurement.view.yaml b/tests/data_models/APM_AppData_4/views/APM_Measurement.view.yaml deleted file mode 100644 index 09e17b6c0..000000000 --- a/tests/data_models/APM_AppData_4/views/APM_Measurement.view.yaml +++ /dev/null @@ -1,101 +0,0 @@ -space: APM_AppData_4 -externalId: APM_Measurement -name: APM_Measurement -version: '7' -properties: - createdByExternalId: - container: - space: APM_AppData_4 - externalId: APM_Measurement - type: container - containerPropertyIdentifier: createdByExternalId - name: createdByExternalId - description: System data - max: - container: - space: APM_AppData_4 - externalId: APM_Measurement - type: container - containerPropertyIdentifier: max - name: max - measuredAt: - container: - space: APM_AppData_4 - externalId: APM_Measurement - type: container - containerPropertyIdentifier: measuredAt - name: measuredAt - description: Data - min: - container: - space: APM_AppData_4 - externalId: APM_Measurement - type: container - containerPropertyIdentifier: min - name: min - description: Configuration - numericReading: - container: - space: APM_AppData_4 - externalId: APM_Measurement - type: container - containerPropertyIdentifier: numericReading - name: numericReading - operationExternalId: - container: - space: APM_AppData_4 - externalId: APM_Measurement - type: container - containerPropertyIdentifier: operationExternalId - name: operationExternalId - description: Contextualisation - options: - container: - space: APM_AppData_4 - externalId: APM_Measurement - type: container - containerPropertyIdentifier: options - name: options - order: - container: - space: APM_AppData_4 - externalId: APM_Measurement - type: container - containerPropertyIdentifier: order - name: order - stringReading: - container: - space: APM_AppData_4 - externalId: APM_Measurement - type: container - containerPropertyIdentifier: stringReading - name: stringReading - timeSeries: - container: - space: APM_AppData_4 - externalId: APM_Measurement - type: container - containerPropertyIdentifier: timeSeries - name: timeSeries - timeseriesExternalId: - container: - space: APM_AppData_4 - externalId: APM_Measurement - type: container - containerPropertyIdentifier: timeseriesExternalId - name: timeseriesExternalId - type: - container: - space: APM_AppData_4 - externalId: APM_Measurement - type: container - containerPropertyIdentifier: type - name: type - description: Basic information - updatedByExternalId: - container: - space: APM_AppData_4 - externalId: APM_Measurement - type: container - containerPropertyIdentifier: updatedByExternalId - name: updatedByExternalId diff --git a/tests/data_models/APM_AppData_4/views/APM_Observation.view.yaml b/tests/data_models/APM_AppData_4/views/APM_Observation.view.yaml deleted file mode 100644 index c07a06518..000000000 --- a/tests/data_models/APM_AppData_4/views/APM_Observation.view.yaml +++ /dev/null @@ -1,112 +0,0 @@ -space: APM_AppData_4 -externalId: APM_Observation -name: APM_Observation -version: '7' -properties: - assetExternalId: - container: - space: APM_AppData_4 - externalId: APM_Observation - type: container - containerPropertyIdentifier: assetExternalId - name: assetExternalId - description: Contextualization - createdByExternalId: - container: - space: APM_AppData_4 - externalId: APM_Observation - type: container - containerPropertyIdentifier: createdByExternalId - name: createdByExternalId - description: - container: - space: APM_AppData_4 - externalId: APM_Observation - type: container - containerPropertyIdentifier: description - name: description - description: Observation data - fileExternalIds: - container: - space: APM_AppData_4 - externalId: APM_Observation - type: container - containerPropertyIdentifier: fileExternalIds - name: fileExternalIds - files: - container: - space: APM_AppData_4 - externalId: APM_Observation - type: container - containerPropertyIdentifier: files - name: files - isArchived: - container: - space: APM_AppData_4 - externalId: APM_Observation - type: container - containerPropertyIdentifier: isArchived - name: isArchived - description: System data - measurements: - type: - space: APM_AppData_4 - externalId: APM_Observation.measurements - source: - space: APM_AppData_4 - externalId: APM_Measurement - version: '7' - type: view - direction: outwards - name: measurements - connectionType: multi_edge_connection - position: - container: - space: APM_AppData_4 - externalId: APM_Observation - type: container - containerPropertyIdentifier: position - name: position - priority: - container: - space: APM_AppData_4 - externalId: APM_Observation - type: container - containerPropertyIdentifier: priority - name: priority - sourceId: - container: - space: APM_AppData_4 - externalId: APM_Observation - type: container - containerPropertyIdentifier: sourceId - name: sourceId - description: Basic information - status: - container: - space: APM_AppData_4 - externalId: APM_Observation - type: container - containerPropertyIdentifier: status - name: status - troubleshooting: - container: - space: APM_AppData_4 - externalId: APM_Observation - type: container - containerPropertyIdentifier: troubleshooting - name: troubleshooting - type: - container: - space: APM_AppData_4 - externalId: APM_Observation - type: container - containerPropertyIdentifier: type - name: type - updatedByExternalId: - container: - space: APM_AppData_4 - externalId: APM_Observation - type: container - containerPropertyIdentifier: updatedByExternalId - name: updatedByExternalId diff --git a/tests/data_models/APM_AppData_4/views/APM_Schedule.view.yaml b/tests/data_models/APM_AppData_4/views/APM_Schedule.view.yaml deleted file mode 100644 index 025eaebec..000000000 --- a/tests/data_models/APM_AppData_4/views/APM_Schedule.view.yaml +++ /dev/null @@ -1,86 +0,0 @@ -space: APM_AppData_4 -externalId: APM_Schedule -name: APM_Schedule -version: '7' -properties: - byDay: - container: - space: APM_AppData_4 - externalId: APM_Schedule - type: container - containerPropertyIdentifier: byDay - name: byDay - endTime: - container: - space: APM_AppData_4 - externalId: APM_Schedule - type: container - containerPropertyIdentifier: endTime - name: endTime - executedAt: - container: - space: APM_AppData_4 - externalId: APM_Schedule - type: container - containerPropertyIdentifier: executedAt - name: executedAt - freq: - container: - space: APM_AppData_4 - externalId: APM_Schedule - type: container - containerPropertyIdentifier: freq - name: freq - description: iCalendar RRULE props - interval: - container: - space: APM_AppData_4 - externalId: APM_Schedule - type: container - containerPropertyIdentifier: interval - name: interval - startDate: - container: - space: APM_AppData_4 - externalId: APM_Schedule - type: container - containerPropertyIdentifier: startDate - name: startDate - startTime: - container: - space: APM_AppData_4 - externalId: APM_Schedule - type: container - containerPropertyIdentifier: startTime - name: startTime - description: Schedule information - status: - container: - space: APM_AppData_4 - externalId: APM_Schedule - type: container - containerPropertyIdentifier: status - name: status - description: Basic information - templateItemExternalId: - container: - space: APM_AppData_4 - externalId: APM_Schedule - type: container - containerPropertyIdentifier: templateItemExternalId - name: templateItemExternalId - description: Contextualisation - timezone: - container: - space: APM_AppData_4 - externalId: APM_Schedule - type: container - containerPropertyIdentifier: timezone - name: timezone - until: - container: - space: APM_AppData_4 - externalId: APM_Schedule - type: container - containerPropertyIdentifier: until - name: until diff --git a/tests/data_models/APM_AppData_4/views/APM_Template.view.yaml b/tests/data_models/APM_AppData_4/views/APM_Template.view.yaml deleted file mode 100644 index b7dc26cf2..000000000 --- a/tests/data_models/APM_AppData_4/views/APM_Template.view.yaml +++ /dev/null @@ -1,69 +0,0 @@ -space: APM_AppData_4 -externalId: APM_Template -name: APM_Template -version: '7' -properties: - assignedTo: - container: - space: APM_AppData_4 - externalId: APM_Template - type: container - containerPropertyIdentifier: assignedTo - name: assignedTo - createdByExternalId: - container: - space: APM_AppData_4 - externalId: APM_Template - type: container - containerPropertyIdentifier: createdByExternalId - name: createdByExternalId - isArchived: - container: - space: APM_AppData_4 - externalId: APM_Template - type: container - containerPropertyIdentifier: isArchived - name: isArchived - description: System data - rootLocationExternalId: - container: - space: APM_AppData_4 - externalId: APM_Template - type: container - containerPropertyIdentifier: rootLocationExternalId - name: rootLocationExternalId - description: Contextualisation - status: - container: - space: APM_AppData_4 - externalId: APM_Template - type: container - containerPropertyIdentifier: status - name: status - templateItems: - type: - space: APM_AppData_4 - externalId: APM_Template.templateItems - source: - space: APM_AppData_4 - externalId: APM_TemplateItem - version: '7' - type: view - direction: outwards - name: templateItems - connectionType: multi_edge_connection - title: - container: - space: APM_AppData_4 - externalId: APM_Template - type: container - containerPropertyIdentifier: title - name: title - description: Basic information - updatedByExternalId: - container: - space: APM_AppData_4 - externalId: APM_Template - type: container - containerPropertyIdentifier: updatedByExternalId - name: updatedByExternalId diff --git a/tests/data_models/APM_AppData_4/views/APM_TemplateItem.view.yaml b/tests/data_models/APM_AppData_4/views/APM_TemplateItem.view.yaml deleted file mode 100644 index 3495ac569..000000000 --- a/tests/data_models/APM_AppData_4/views/APM_TemplateItem.view.yaml +++ /dev/null @@ -1,57 +0,0 @@ -space: APM_AppData_4 -externalId: APM_TemplateItem -name: APM_TemplateItem -version: '7' -properties: - assetExternalId: - container: - space: APM_AppData_4 - externalId: APM_TemplateItem - type: container - containerPropertyIdentifier: assetExternalId - name: assetExternalId - createdByExternalId: - container: - space: APM_AppData_4 - externalId: APM_TemplateItem - type: container - containerPropertyIdentifier: createdByExternalId - name: createdByExternalId - description: System data - labels: - container: - space: APM_AppData_4 - externalId: APM_TemplateItem - type: container - containerPropertyIdentifier: labels - name: labels - order: - container: - space: APM_AppData_4 - externalId: APM_TemplateItem - type: container - containerPropertyIdentifier: order - name: order - templateExternalId: - container: - space: APM_AppData_4 - externalId: APM_TemplateItem - type: container - containerPropertyIdentifier: templateExternalId - name: templateExternalId - description: Contextualisation - title: - container: - space: APM_AppData_4 - externalId: APM_TemplateItem - type: container - containerPropertyIdentifier: title - name: title - description: Basic information - updatedByExternalId: - container: - space: APM_AppData_4 - externalId: APM_TemplateItem - type: container - containerPropertyIdentifier: updatedByExternalId - name: updatedByExternalId diff --git a/tests/data_models/APM_AppData_4/views/APM_User.view.yaml b/tests/data_models/APM_AppData_4/views/APM_User.view.yaml deleted file mode 100644 index 41dcf2b48..000000000 --- a/tests/data_models/APM_AppData_4/views/APM_User.view.yaml +++ /dev/null @@ -1,33 +0,0 @@ -space: APM_AppData_4 -externalId: APM_User -name: APM_User -version: '7' -properties: - email: - container: - space: APM_AppData_4 - externalId: APM_User - type: container - containerPropertyIdentifier: email - name: email - lastSeen: - container: - space: APM_AppData_4 - externalId: APM_User - type: container - containerPropertyIdentifier: lastSeen - name: lastSeen - name: - container: - space: APM_AppData_4 - externalId: APM_User - type: container - containerPropertyIdentifier: name - name: name - preferences: - container: - space: APM_AppData_4 - externalId: APM_User - type: container - containerPropertyIdentifier: preferences - name: preferences diff --git a/tests/data_models/APM_AppData_4/views/Vec3f.view.yaml b/tests/data_models/APM_AppData_4/views/Vec3f.view.yaml deleted file mode 100644 index 4b45a1319..000000000 --- a/tests/data_models/APM_AppData_4/views/Vec3f.view.yaml +++ /dev/null @@ -1,26 +0,0 @@ -space: APM_AppData_4 -externalId: Vec3f -name: Vec3f -version: '7' -properties: - x: - container: - space: APM_AppData_4 - externalId: Vec3f - type: container - containerPropertyIdentifier: x - name: x - y: - container: - space: APM_AppData_4 - externalId: Vec3f - type: container - containerPropertyIdentifier: y - name: y - z: - container: - space: APM_AppData_4 - externalId: Vec3f - type: container - containerPropertyIdentifier: z - name: z diff --git a/tests/data_models/ApmAppData/containers/Asset.container.yaml b/tests/data_models/ApmAppData/containers/Asset.container.yaml deleted file mode 100644 index bc293c704..000000000 --- a/tests/data_models/ApmAppData/containers/Asset.container.yaml +++ /dev/null @@ -1,56 +0,0 @@ -space: IntegrationTestsImmutable -externalId: Asset -usedFor: node -properties: - sourceId: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: ID as the node appears in the Source system - source: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Name of the source system node comes from - title: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Title or name of the node - description: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Long description of the node - labels: - type: - list: true - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Text based labels for generic use - parent: - type: - type: direct - nullable: true - autoIncrement: false - description: Parent of this asset - root: - type: - type: direct - nullable: true - autoIncrement: false - description: Root location - asset at the top of the hierarchy. diff --git a/tests/data_models/ApmAppData/containers/CDF_User.container.yaml b/tests/data_models/ApmAppData/containers/CDF_User.container.yaml deleted file mode 100644 index 51d1326a2..000000000 --- a/tests/data_models/ApmAppData/containers/CDF_User.container.yaml +++ /dev/null @@ -1,26 +0,0 @@ -space: IntegrationTestsImmutable -externalId: CDF_User -usedFor: node -properties: - email: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Email of user - preferences: - type: - type: direct - nullable: true - autoIncrement: false - description: Holds user preferences across and within applications - name: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Name of user diff --git a/tests/data_models/ApmAppData/containers/CDF_UserPreferences.container.yaml b/tests/data_models/ApmAppData/containers/CDF_UserPreferences.container.yaml deleted file mode 100644 index 17a64c06f..000000000 --- a/tests/data_models/ApmAppData/containers/CDF_UserPreferences.container.yaml +++ /dev/null @@ -1,19 +0,0 @@ -space: IntegrationTestsImmutable -externalId: CDF_UserPreferences -usedFor: node -properties: - language: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: The users selected language - apmAppConfig: - type: - list: false - type: json - nullable: true - autoIncrement: false - description: User preferences related to APM apps, like selected config diff --git a/tests/data_models/ApmAppData/containers/Checklist.container.yaml b/tests/data_models/ApmAppData/containers/Checklist.container.yaml deleted file mode 100644 index 6b0f73d65..000000000 --- a/tests/data_models/ApmAppData/containers/Checklist.container.yaml +++ /dev/null @@ -1,115 +0,0 @@ -space: IntegrationTestsImmutable -externalId: Checklist -usedFor: node -properties: - sourceId: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: ID as the node appears in the Source system - source: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Name of the source system node comes from - title: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Title or name of the node - description: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Long description of the node - labels: - type: - list: true - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Text based labels for generic use - startTime: - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - description: Start time of node - endTime: - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - description: End time of node - visibility: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Visibility of node (PUBLIC, PRIVATE, PROTECTED) - createdBy: - type: - type: direct - nullable: true - autoIncrement: false - description: Who created this node? - updatedBy: - type: - type: direct - nullable: true - autoIncrement: false - description: Who was the last person to update this node? - isArchived: - type: - list: false - type: boolean - nullable: true - autoIncrement: false - description: Is this item archived, and therefore hidden from most UIs? - type: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: The type of the checklist, eg Maintenance, Inspection, etc. - status: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: The status of the checklist - rootLocation: - type: - type: direct - nullable: true - autoIncrement: false - description: External ID of the root location associated with the checklist - assignedTo: - type: - list: true - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: List of users or disciplines assigned to the checklist diff --git a/tests/data_models/ApmAppData/containers/ChecklistItem.container.yaml b/tests/data_models/ApmAppData/containers/ChecklistItem.container.yaml deleted file mode 100644 index 3dd75d90a..000000000 --- a/tests/data_models/ApmAppData/containers/ChecklistItem.container.yaml +++ /dev/null @@ -1,121 +0,0 @@ -space: IntegrationTestsImmutable -externalId: ChecklistItem -usedFor: node -properties: - sourceId: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: ID as the node appears in the Source system - source: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Name of the source system node comes from - title: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Title or name of the node - description: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Long description of the node - labels: - type: - list: true - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Text based labels for generic use - startTime: - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - description: Start time of node - endTime: - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - description: End time of node - visibility: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Visibility of node (PUBLIC, PRIVATE, PROTECTED) - createdBy: - type: - type: direct - nullable: true - autoIncrement: false - description: Who created this node? - updatedBy: - type: - type: direct - nullable: true - autoIncrement: false - description: Who was the last person to update this node? - isArchived: - type: - list: false - type: boolean - nullable: true - autoIncrement: false - description: Is this item archived, and therefore hidden from most UIs? - order: - type: - list: false - type: int32 - nullable: true - autoIncrement: false - description: The execution order of the checklist item - status: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: The status of the checklist item - note: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Additional notes for the checklist item - asset: - type: - type: direct - nullable: true - autoIncrement: false - description: External ID of the associated CDF Asset - files: - type: - list: true - type: file - nullable: true - autoIncrement: false - description: List of associated files diff --git a/tests/data_models/ApmAppData/containers/MeasurementReading.container.yaml b/tests/data_models/ApmAppData/containers/MeasurementReading.container.yaml deleted file mode 100644 index 168ee6244..000000000 --- a/tests/data_models/ApmAppData/containers/MeasurementReading.container.yaml +++ /dev/null @@ -1,96 +0,0 @@ -space: IntegrationTestsImmutable -externalId: MeasurementReading -usedFor: node -properties: - visibility: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Visibility of node (PUBLIC, PRIVATE, PROTECTED) - createdBy: - type: - type: direct - nullable: true - autoIncrement: false - description: Who created this node? - updatedBy: - type: - type: direct - nullable: true - autoIncrement: false - description: Who was the last person to update this node? - isArchived: - type: - list: false - type: boolean - nullable: true - autoIncrement: false - description: Is this item archived, and therefore hidden from most UIs? - type: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Measurement type, eg numerical, label, etc. - order: - type: - list: false - type: int32 - nullable: true - autoIncrement: false - description: Determines the execution order - timeseries: - type: - list: false - type: timeseries - nullable: true - autoIncrement: false - description: Timeseries associated with the measurement - min: - type: - list: false - type: float64 - nullable: true - autoIncrement: false - description: Min range of the reading, reading lower than `min` is possibly bad - max: - type: - list: false - type: float64 - nullable: true - autoIncrement: false - description: Max range of the reading, reading higher than `max` is possibly bad - options: - type: - list: true - type: json - nullable: true - autoIncrement: false - description: Configuring options for label measurements - measuredAt: - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - description: Timestamp of when the last reading was made - numericReading: - type: - list: false - type: float64 - nullable: true - autoIncrement: false - description: Value of the last reading if it was a numeric reading - stringReading: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Value of the last reading if it was a string reading diff --git a/tests/data_models/ApmAppData/containers/Observation.container.yaml b/tests/data_models/ApmAppData/containers/Observation.container.yaml deleted file mode 100644 index cd06b3c62..000000000 --- a/tests/data_models/ApmAppData/containers/Observation.container.yaml +++ /dev/null @@ -1,122 +0,0 @@ -space: IntegrationTestsImmutable -externalId: Observation -usedFor: node -properties: - sourceId: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: ID as the node appears in the Source system - source: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Name of the source system node comes from - title: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Title or name of the node - description: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Long description of the node - labels: - type: - list: true - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Text based labels for generic use - visibility: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Visibility of node (PUBLIC, PRIVATE, PROTECTED) - createdBy: - type: - type: direct - nullable: true - autoIncrement: false - description: Who created this node? - updatedBy: - type: - type: direct - nullable: true - autoIncrement: false - description: Who was the last person to update this node? - isArchived: - type: - list: false - type: boolean - nullable: true - autoIncrement: false - description: Is this item archived, and therefore hidden from most UIs? - status: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: The status of the observation (draft, completed, sent) - asset: - type: - type: direct - nullable: true - autoIncrement: false - description: External ID of the associated CDF Asset - files: - type: - list: true - type: file - nullable: true - autoIncrement: false - description: List of associated files - rootLocation: - type: - type: direct - nullable: true - autoIncrement: false - description: External ID of the root location associated with the observation - troubleshooting: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: description of how the observation was troubleshooted - priority: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Priority of the observation (Urgent, High ...) - type: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: The observation type (Malfunction report, Maintenance request, etc.) diff --git a/tests/data_models/ApmAppData/containers/Schedule.container.yaml b/tests/data_models/ApmAppData/containers/Schedule.container.yaml deleted file mode 100644 index 0a8b92b45..000000000 --- a/tests/data_models/ApmAppData/containers/Schedule.container.yaml +++ /dev/null @@ -1,106 +0,0 @@ -space: IntegrationTestsImmutable -externalId: Schedule -usedFor: node -properties: - startTime: - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - description: Start time of node - endTime: - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - description: End time of node - visibility: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Visibility of node (PUBLIC, PRIVATE, PROTECTED) - createdBy: - type: - type: direct - nullable: true - autoIncrement: false - description: Who created this node? - updatedBy: - type: - type: direct - nullable: true - autoIncrement: false - description: Who was the last person to update this node? - isArchived: - type: - list: false - type: boolean - nullable: true - autoIncrement: false - description: Is this item archived, and therefore hidden from most UIs? - status: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Indicates the current status of the schedule (e.g., confirmed, cancelled). - Similar to the STATUS property in ICS format. - timezone: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Defines the time zone for the start and end date/time. Similar to - the TZID parameter in ICS format. - exceptionDates: - type: - list: true - type: timestamp - nullable: true - autoIncrement: false - description: Specifies the dates where the schedule does not apply. Corresponds - to the EXDATE property in ICS format. - freq: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Defines the frequency of occurrence for the schedule (e.g., daily, - weekly). Part of the RRULE property in ICS format. - interval: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Defines the interval of the schedule, eg. biweekly, once every three - weeks, etc. Similar to the TZID parameter in ICS format. - byDay: - type: - list: true - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Specifies the days of the week when the schedule occurs. Part of - the RRULE property in ICS format. - until: - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - description: Indicates the date and time until which the schedule is valid. Part - of the RRULE property in ICS format. diff --git a/tests/data_models/ApmAppData/containers/Template.container.yaml b/tests/data_models/ApmAppData/containers/Template.container.yaml deleted file mode 100644 index 5b12ad338..000000000 --- a/tests/data_models/ApmAppData/containers/Template.container.yaml +++ /dev/null @@ -1,77 +0,0 @@ -space: IntegrationTestsImmutable -externalId: Template -usedFor: node -properties: - title: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Title or name of the node - description: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Long description of the node - labels: - type: - list: true - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Text based labels for generic use - visibility: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Visibility of node (PUBLIC, PRIVATE, PROTECTED) - createdBy: - type: - type: direct - nullable: true - autoIncrement: false - description: Who created this node? - updatedBy: - type: - type: direct - nullable: true - autoIncrement: false - description: Who was the last person to update this node? - isArchived: - type: - list: false - type: boolean - nullable: true - autoIncrement: false - description: Is this item archived, and therefore hidden from most UIs? - status: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Status of the template eg. draft, ready, etc. - rootLocation: - type: - type: direct - nullable: true - autoIncrement: false - description: Root location (asset) associated with the checklist - assignedTo: - type: - list: true - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: List of users or disciplines assigned to the template diff --git a/tests/data_models/ApmAppData/containers/TemplateItem.container.yaml b/tests/data_models/ApmAppData/containers/TemplateItem.container.yaml deleted file mode 100644 index b63796db1..000000000 --- a/tests/data_models/ApmAppData/containers/TemplateItem.container.yaml +++ /dev/null @@ -1,68 +0,0 @@ -space: IntegrationTestsImmutable -externalId: TemplateItem -usedFor: node -properties: - title: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Title or name of the node - description: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Long description of the node - labels: - type: - list: true - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Text based labels for generic use - visibility: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - description: Visibility of node (PUBLIC, PRIVATE, PROTECTED) - createdBy: - type: - type: direct - nullable: true - autoIncrement: false - description: Who created this node? - updatedBy: - type: - type: direct - nullable: true - autoIncrement: false - description: Who was the last person to update this node? - isArchived: - type: - list: false - type: boolean - nullable: true - autoIncrement: false - description: Is this item archived, and therefore hidden from most UIs? - order: - type: - list: false - type: int32 - nullable: true - autoIncrement: false - description: The execution order of the template item - asset: - type: - type: direct - nullable: true - autoIncrement: false - description: Associated asset diff --git a/tests/data_models/ApmAppData/model.yaml b/tests/data_models/ApmAppData/model.yaml deleted file mode 100644 index 63d01687b..000000000 --- a/tests/data_models/ApmAppData/model.yaml +++ /dev/null @@ -1,1746 +0,0 @@ -space: IntegrationTestsImmutable -externalId: ApmAppData -name: ApmAppData -description: APM data models within the cognite applications space -version: v3 -views: -- space: IntegrationTestsImmutable - externalId: Asset - implements: [] - version: v1 - writable: true - usedFor: node - isGlobal: false - properties: - description: - container: - space: IntegrationTestsImmutable - externalId: Asset - containerPropertyIdentifier: description - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Long description of the node - labels: - container: - space: IntegrationTestsImmutable - externalId: Asset - containerPropertyIdentifier: labels - type: - list: true - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Text based labels for generic use - parent: - container: - space: IntegrationTestsImmutable - externalId: Asset - containerPropertyIdentifier: parent - type: - list: false - type: direct - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Parent of this asset - root: - container: - space: IntegrationTestsImmutable - externalId: Asset - containerPropertyIdentifier: root - type: - list: false - type: direct - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Root location - asset at the top of the hierarchy. - source: - container: - space: IntegrationTestsImmutable - externalId: Asset - containerPropertyIdentifier: source - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Name of the source system node comes from - sourceId: - container: - space: IntegrationTestsImmutable - externalId: Asset - containerPropertyIdentifier: sourceId - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: ID as the node appears in the Source system - title: - container: - space: IntegrationTestsImmutable - externalId: Asset - containerPropertyIdentifier: title - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Title or name of the node - lastUpdatedTime: 1699196213142 - createdTime: 1699196213142 -- space: IntegrationTestsImmutable - externalId: CDF_User - implements: [] - version: v1 - writable: true - usedFor: node - isGlobal: false - properties: - email: - container: - space: IntegrationTestsImmutable - externalId: CDF_User - containerPropertyIdentifier: email - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Email of user - name: - container: - space: IntegrationTestsImmutable - externalId: CDF_User - containerPropertyIdentifier: name - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Name of user - preferences: - container: - space: IntegrationTestsImmutable - externalId: CDF_User - containerPropertyIdentifier: preferences - type: - list: false - type: direct - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Holds user preferences across and within applications - lastUpdatedTime: 1699196213142 - createdTime: 1699196213142 -- space: IntegrationTestsImmutable - externalId: CDF_UserPreferences - implements: [] - version: v1 - writable: true - usedFor: node - isGlobal: false - properties: - apmAppConfig: - container: - space: IntegrationTestsImmutable - externalId: CDF_UserPreferences - containerPropertyIdentifier: apmAppConfig - type: - list: false - type: json - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: User preferences related to APM apps, like selected config - language: - container: - space: IntegrationTestsImmutable - externalId: CDF_UserPreferences - containerPropertyIdentifier: language - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: The users selected language - lastUpdatedTime: 1699196213142 - createdTime: 1699196213142 -- space: IntegrationTestsImmutable - externalId: Checklist - name: Checklist - description: The Checklist view provides functionality for executing maintenance - and inspection work. It maintains a list of checklist items (tasks) associated - with specific maintenance and inspection activities. - implements: [] - version: v3 - writable: true - usedFor: node - isGlobal: false - properties: - assignedTo: - container: - space: IntegrationTestsImmutable - externalId: Checklist - containerPropertyIdentifier: assignedTo - type: - list: true - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: List of users or disciplines assigned to the checklist - checklistItems: - type: - space: IntegrationTestsImmutable - externalId: referenceChecklistItems - source: - space: IntegrationTestsImmutable - externalId: ChecklistItem - version: v3 - type: view - name: null - description: List of checklist items / tasks within the checklist - edgeSource: null - direction: outwards - connectionType: multi_edge_connection - createdBy: - container: - space: IntegrationTestsImmutable - externalId: Checklist - containerPropertyIdentifier: createdBy - type: - list: false - type: direct - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Who created this node? - description: - container: - space: IntegrationTestsImmutable - externalId: Checklist - containerPropertyIdentifier: description - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Long description of the node - endTime: - container: - space: IntegrationTestsImmutable - externalId: Checklist - containerPropertyIdentifier: endTime - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: End time of node - isArchived: - container: - space: IntegrationTestsImmutable - externalId: Checklist - containerPropertyIdentifier: isArchived - type: - list: false - type: boolean - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Is this item archived, and therefore hidden from most UIs? - labels: - container: - space: IntegrationTestsImmutable - externalId: Checklist - containerPropertyIdentifier: labels - type: - list: true - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Text based labels for generic use - rootLocation: - container: - space: IntegrationTestsImmutable - externalId: Checklist - containerPropertyIdentifier: rootLocation - type: - list: false - type: direct - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: External ID of the root location associated with the checklist - source: - container: - space: IntegrationTestsImmutable - externalId: Checklist - containerPropertyIdentifier: source - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Name of the source system node comes from - sourceId: - container: - space: IntegrationTestsImmutable - externalId: Checklist - containerPropertyIdentifier: sourceId - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: ID as the node appears in the Source system - startTime: - container: - space: IntegrationTestsImmutable - externalId: Checklist - containerPropertyIdentifier: startTime - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Start time of node - status: - container: - space: IntegrationTestsImmutable - externalId: Checklist - containerPropertyIdentifier: status - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: The status of the checklist - title: - container: - space: IntegrationTestsImmutable - externalId: Checklist - containerPropertyIdentifier: title - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Title or name of the node - type: - container: - space: IntegrationTestsImmutable - externalId: Checklist - containerPropertyIdentifier: type - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: The type of the checklist, eg Maintenance, Inspection, etc. - updatedBy: - container: - space: IntegrationTestsImmutable - externalId: Checklist - containerPropertyIdentifier: updatedBy - type: - list: false - type: direct - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Who was the last person to update this node? - visibility: - container: - space: IntegrationTestsImmutable - externalId: Checklist - containerPropertyIdentifier: visibility - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Visibility of node (PUBLIC, PRIVATE, PROTECTED) - lastUpdatedTime: 1699196213142 - createdTime: 1699196213142 -- space: IntegrationTestsImmutable - externalId: ChecklistItem - name: Checklist item - description: The checklist item view is used for managing individual maintenance - and inspection tasks within a checklist. It allows users to track the execution - order, status, notes, associated assets, and related observations for each task. - implements: [] - version: v3 - writable: true - usedFor: node - isGlobal: false - properties: - asset: - container: - space: IntegrationTestsImmutable - externalId: ChecklistItem - containerPropertyIdentifier: asset - type: - list: false - type: direct - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: External ID of the associated CDF Asset - createdBy: - container: - space: IntegrationTestsImmutable - externalId: ChecklistItem - containerPropertyIdentifier: createdBy - type: - list: false - type: direct - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Who created this node? - description: - container: - space: IntegrationTestsImmutable - externalId: ChecklistItem - containerPropertyIdentifier: description - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Long description of the node - endTime: - container: - space: IntegrationTestsImmutable - externalId: ChecklistItem - containerPropertyIdentifier: endTime - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: End time of node - files: - container: - space: IntegrationTestsImmutable - externalId: ChecklistItem - containerPropertyIdentifier: files - type: - list: true - type: file - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: List of associated files - isArchived: - container: - space: IntegrationTestsImmutable - externalId: ChecklistItem - containerPropertyIdentifier: isArchived - type: - list: false - type: boolean - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Is this item archived, and therefore hidden from most UIs? - labels: - container: - space: IntegrationTestsImmutable - externalId: ChecklistItem - containerPropertyIdentifier: labels - type: - list: true - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Text based labels for generic use - measurements: - type: - space: IntegrationTestsImmutable - externalId: referenceMeasurements - source: - space: IntegrationTestsImmutable - externalId: MeasurementReading - version: v3 - type: view - name: null - description: List of associated measurements - edgeSource: null - direction: outwards - connectionType: multi_edge_connection - note: - container: - space: IntegrationTestsImmutable - externalId: ChecklistItem - containerPropertyIdentifier: note - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Additional notes for the checklist item - observations: - type: - space: IntegrationTestsImmutable - externalId: referenceObservations - source: - space: IntegrationTestsImmutable - externalId: Observation - version: v3 - type: view - name: null - description: List of observations associated with the checklist item - edgeSource: null - direction: outwards - connectionType: multi_edge_connection - order: - container: - space: IntegrationTestsImmutable - externalId: ChecklistItem - containerPropertyIdentifier: order - type: - list: false - type: int32 - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: The execution order of the checklist item - source: - container: - space: IntegrationTestsImmutable - externalId: ChecklistItem - containerPropertyIdentifier: source - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Name of the source system node comes from - sourceId: - container: - space: IntegrationTestsImmutable - externalId: ChecklistItem - containerPropertyIdentifier: sourceId - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: ID as the node appears in the Source system - startTime: - container: - space: IntegrationTestsImmutable - externalId: ChecklistItem - containerPropertyIdentifier: startTime - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Start time of node - status: - container: - space: IntegrationTestsImmutable - externalId: ChecklistItem - containerPropertyIdentifier: status - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: The status of the checklist item - title: - container: - space: IntegrationTestsImmutable - externalId: ChecklistItem - containerPropertyIdentifier: title - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Title or name of the node - updatedBy: - container: - space: IntegrationTestsImmutable - externalId: ChecklistItem - containerPropertyIdentifier: updatedBy - type: - list: false - type: direct - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Who was the last person to update this node? - visibility: - container: - space: IntegrationTestsImmutable - externalId: ChecklistItem - containerPropertyIdentifier: visibility - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Visibility of node (PUBLIC, PRIVATE, PROTECTED) - lastUpdatedTime: 1699196213142 - createdTime: 1699196213142 -- space: IntegrationTestsImmutable - externalId: MeasurementReading - name: Measurement reading - description: The Measurement reading view facilitates the collection of field data - by making readings. It supports various measurement types (e.g., numerical, label) - and includes information about execution order, associated time series, value - ranges, and the timestamp of the last reading. - implements: [] - version: v3 - writable: true - usedFor: node - isGlobal: false - properties: - createdBy: - container: - space: IntegrationTestsImmutable - externalId: MeasurementReading - containerPropertyIdentifier: createdBy - type: - list: false - type: direct - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Who created this node? - isArchived: - container: - space: IntegrationTestsImmutable - externalId: MeasurementReading - containerPropertyIdentifier: isArchived - type: - list: false - type: boolean - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Is this item archived, and therefore hidden from most UIs? - max: - container: - space: IntegrationTestsImmutable - externalId: MeasurementReading - containerPropertyIdentifier: max - type: - list: false - type: float64 - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Max range of the reading, reading higher than `max` is possibly - bad - measuredAt: - container: - space: IntegrationTestsImmutable - externalId: MeasurementReading - containerPropertyIdentifier: measuredAt - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Timestamp of when the last reading was made - min: - container: - space: IntegrationTestsImmutable - externalId: MeasurementReading - containerPropertyIdentifier: min - type: - list: false - type: float64 - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Min range of the reading, reading lower than `min` is possibly - bad - numericReading: - container: - space: IntegrationTestsImmutable - externalId: MeasurementReading - containerPropertyIdentifier: numericReading - type: - list: false - type: float64 - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Value of the last reading if it was a numeric reading - options: - container: - space: IntegrationTestsImmutable - externalId: MeasurementReading - containerPropertyIdentifier: options - type: - list: true - type: json - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Configuring options for label measurements - order: - container: - space: IntegrationTestsImmutable - externalId: MeasurementReading - containerPropertyIdentifier: order - type: - list: false - type: int32 - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Determines the execution order - stringReading: - container: - space: IntegrationTestsImmutable - externalId: MeasurementReading - containerPropertyIdentifier: stringReading - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Value of the last reading if it was a string reading - timeseries: - container: - space: IntegrationTestsImmutable - externalId: MeasurementReading - containerPropertyIdentifier: timeseries - type: - list: false - type: timeseries - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Timeseries associated with the measurement - type: - container: - space: IntegrationTestsImmutable - externalId: MeasurementReading - containerPropertyIdentifier: type - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Measurement type, eg numerical, label, etc. - updatedBy: - container: - space: IntegrationTestsImmutable - externalId: MeasurementReading - containerPropertyIdentifier: updatedBy - type: - list: false - type: direct - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Who was the last person to update this node? - visibility: - container: - space: IntegrationTestsImmutable - externalId: MeasurementReading - containerPropertyIdentifier: visibility - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Visibility of node (PUBLIC, PRIVATE, PROTECTED) - lastUpdatedTime: 1699196213142 - createdTime: 1699196213142 -- space: IntegrationTestsImmutable - externalId: Observation - name: Observation - description: The Observation view captures anomaly reports created by field operators. - It records information about the status, associated assets, related files, root - locations, troubleshooting details, priority, and the type of observation (e.g., - Malfunction report, Maintenance request). - implements: [] - version: v3 - writable: true - usedFor: node - isGlobal: false - properties: - asset: - container: - space: IntegrationTestsImmutable - externalId: Observation - containerPropertyIdentifier: asset - type: - list: false - type: direct - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: External ID of the associated CDF Asset - createdBy: - container: - space: IntegrationTestsImmutable - externalId: Observation - containerPropertyIdentifier: createdBy - type: - list: false - type: direct - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Who created this node? - description: - container: - space: IntegrationTestsImmutable - externalId: Observation - containerPropertyIdentifier: description - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Long description of the node - files: - container: - space: IntegrationTestsImmutable - externalId: Observation - containerPropertyIdentifier: files - type: - list: true - type: file - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: List of associated files - isArchived: - container: - space: IntegrationTestsImmutable - externalId: Observation - containerPropertyIdentifier: isArchived - type: - list: false - type: boolean - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Is this item archived, and therefore hidden from most UIs? - labels: - container: - space: IntegrationTestsImmutable - externalId: Observation - containerPropertyIdentifier: labels - type: - list: true - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Text based labels for generic use - priority: - container: - space: IntegrationTestsImmutable - externalId: Observation - containerPropertyIdentifier: priority - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Priority of the observation (Urgent, High ...) - rootLocation: - container: - space: IntegrationTestsImmutable - externalId: Observation - containerPropertyIdentifier: rootLocation - type: - list: false - type: direct - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: External ID of the root location associated with the observation - source: - container: - space: IntegrationTestsImmutable - externalId: Observation - containerPropertyIdentifier: source - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Name of the source system node comes from - sourceId: - container: - space: IntegrationTestsImmutable - externalId: Observation - containerPropertyIdentifier: sourceId - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: ID as the node appears in the Source system - status: - container: - space: IntegrationTestsImmutable - externalId: Observation - containerPropertyIdentifier: status - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: The status of the observation (draft, completed, sent) - title: - container: - space: IntegrationTestsImmutable - externalId: Observation - containerPropertyIdentifier: title - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Title or name of the node - troubleshooting: - container: - space: IntegrationTestsImmutable - externalId: Observation - containerPropertyIdentifier: troubleshooting - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: description of how the observation was troubleshooted - type: - container: - space: IntegrationTestsImmutable - externalId: Observation - containerPropertyIdentifier: type - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: The observation type (Malfunction report, Maintenance request, - etc.) - updatedBy: - container: - space: IntegrationTestsImmutable - externalId: Observation - containerPropertyIdentifier: updatedBy - type: - list: false - type: direct - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Who was the last person to update this node? - visibility: - container: - space: IntegrationTestsImmutable - externalId: Observation - containerPropertyIdentifier: visibility - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Visibility of node (PUBLIC, PRIVATE, PROTECTED) - lastUpdatedTime: 1699196213142 - createdTime: 1699196213142 -- space: IntegrationTestsImmutable - externalId: Schedule - name: Schedule - description: The Schedule view provides a flexible scheduling framework that can - be applied across different models, such as Templates, Robotics Missions, and - Template Tasks. It aligns with the ICS calendar format and offers features like - status tracking, time zone configuration, exception dates, frequency settings, - and end date. - implements: [] - version: v3 - writable: true - usedFor: node - isGlobal: false - properties: - byDay: - container: - space: IntegrationTestsImmutable - externalId: Schedule - containerPropertyIdentifier: byDay - type: - list: true - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Specifies the days of the week when the schedule occurs. Part of - the RRULE property in ICS format. - createdBy: - container: - space: IntegrationTestsImmutable - externalId: Schedule - containerPropertyIdentifier: createdBy - type: - list: false - type: direct - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Who created this node? - endTime: - container: - space: IntegrationTestsImmutable - externalId: Schedule - containerPropertyIdentifier: endTime - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: End time of node - exceptionDates: - container: - space: IntegrationTestsImmutable - externalId: Schedule - containerPropertyIdentifier: exceptionDates - type: - list: true - type: timestamp - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Specifies the dates where the schedule does not apply. Corresponds - to the EXDATE property in ICS format. - freq: - container: - space: IntegrationTestsImmutable - externalId: Schedule - containerPropertyIdentifier: freq - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Defines the frequency of occurrence for the schedule (e.g., daily, - weekly). Part of the RRULE property in ICS format. - interval: - container: - space: IntegrationTestsImmutable - externalId: Schedule - containerPropertyIdentifier: interval - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Defines the interval of the schedule, eg. biweekly, once every - three weeks, etc. Similar to the TZID parameter in ICS format. - isArchived: - container: - space: IntegrationTestsImmutable - externalId: Schedule - containerPropertyIdentifier: isArchived - type: - list: false - type: boolean - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Is this item archived, and therefore hidden from most UIs? - startTime: - container: - space: IntegrationTestsImmutable - externalId: Schedule - containerPropertyIdentifier: startTime - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Start time of node - status: - container: - space: IntegrationTestsImmutable - externalId: Schedule - containerPropertyIdentifier: status - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Indicates the current status of the schedule (e.g., confirmed, - cancelled). Similar to the STATUS property in ICS format. - timezone: - container: - space: IntegrationTestsImmutable - externalId: Schedule - containerPropertyIdentifier: timezone - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Defines the time zone for the start and end date/time. Similar - to the TZID parameter in ICS format. - until: - container: - space: IntegrationTestsImmutable - externalId: Schedule - containerPropertyIdentifier: until - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Indicates the date and time until which the schedule is valid. - Part of the RRULE property in ICS format. - updatedBy: - container: - space: IntegrationTestsImmutable - externalId: Schedule - containerPropertyIdentifier: updatedBy - type: - list: false - type: direct - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Who was the last person to update this node? - visibility: - container: - space: IntegrationTestsImmutable - externalId: Schedule - containerPropertyIdentifier: visibility - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Visibility of node (PUBLIC, PRIVATE, PROTECTED) - lastUpdatedTime: 1699196213142 - createdTime: 1699196213142 -- space: IntegrationTestsImmutable - externalId: Template - name: Template - description: The Template view is used for creating standardized maintenance and - inspection tasks. It defines the status of the template (e.g., draft, ready) and - includes a list of template items (tasks) that can be reused for various maintenance - and inspection activities. - implements: [] - version: v3 - writable: true - usedFor: node - isGlobal: false - properties: - assignedTo: - container: - space: IntegrationTestsImmutable - externalId: Template - containerPropertyIdentifier: assignedTo - type: - list: true - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: List of users or disciplines assigned to the template - createdBy: - container: - space: IntegrationTestsImmutable - externalId: Template - containerPropertyIdentifier: createdBy - type: - list: false - type: direct - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Who created this node? - description: - container: - space: IntegrationTestsImmutable - externalId: Template - containerPropertyIdentifier: description - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Long description of the node - isArchived: - container: - space: IntegrationTestsImmutable - externalId: Template - containerPropertyIdentifier: isArchived - type: - list: false - type: boolean - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Is this item archived, and therefore hidden from most UIs? - labels: - container: - space: IntegrationTestsImmutable - externalId: Template - containerPropertyIdentifier: labels - type: - list: true - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Text based labels for generic use - rootLocation: - container: - space: IntegrationTestsImmutable - externalId: Template - containerPropertyIdentifier: rootLocation - type: - list: false - type: direct - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Root location (asset) associated with the checklist - status: - container: - space: IntegrationTestsImmutable - externalId: Template - containerPropertyIdentifier: status - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Status of the template eg. draft, ready, etc. - templateItems: - type: - space: IntegrationTestsImmutable - externalId: referenceTemplateItems - source: - space: IntegrationTestsImmutable - externalId: TemplateItem - version: v3 - type: view - name: null - description: List of template items / tasks within the template - edgeSource: null - direction: outwards - connectionType: multi_edge_connection - title: - container: - space: IntegrationTestsImmutable - externalId: Template - containerPropertyIdentifier: title - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Title or name of the node - updatedBy: - container: - space: IntegrationTestsImmutable - externalId: Template - containerPropertyIdentifier: updatedBy - type: - list: false - type: direct - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Who was the last person to update this node? - visibility: - container: - space: IntegrationTestsImmutable - externalId: Template - containerPropertyIdentifier: visibility - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Visibility of node (PUBLIC, PRIVATE, PROTECTED) - lastUpdatedTime: 1699196213142 - createdTime: 1699196213142 -- space: IntegrationTestsImmutable - externalId: TemplateItem - name: Template item - description: The template item view is designed for creating individual maintenance - and inspection tasks within a template. It specifies the execution order, associated - assets, measurements, schedules, and other relevant details for each task. - implements: [] - version: v3 - writable: true - usedFor: node - isGlobal: false - properties: - asset: - container: - space: IntegrationTestsImmutable - externalId: TemplateItem - containerPropertyIdentifier: asset - type: - list: false - type: direct - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Associated asset - createdBy: - container: - space: IntegrationTestsImmutable - externalId: TemplateItem - containerPropertyIdentifier: createdBy - type: - list: false - type: direct - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Who created this node? - description: - container: - space: IntegrationTestsImmutable - externalId: TemplateItem - containerPropertyIdentifier: description - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Long description of the node - isArchived: - container: - space: IntegrationTestsImmutable - externalId: TemplateItem - containerPropertyIdentifier: isArchived - type: - list: false - type: boolean - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Is this item archived, and therefore hidden from most UIs? - labels: - container: - space: IntegrationTestsImmutable - externalId: TemplateItem - containerPropertyIdentifier: labels - type: - list: true - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Text based labels for generic use - measurements: - type: - space: IntegrationTestsImmutable - externalId: referenceMeasurements - source: - space: IntegrationTestsImmutable - externalId: MeasurementReading - version: v3 - type: view - name: null - description: List of associated measurements - edgeSource: null - direction: outwards - connectionType: multi_edge_connection - order: - container: - space: IntegrationTestsImmutable - externalId: TemplateItem - containerPropertyIdentifier: order - type: - list: false - type: int32 - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: The execution order of the template item - schedules: - type: - space: IntegrationTestsImmutable - externalId: referenceSchedules - source: - space: IntegrationTestsImmutable - externalId: Schedule - version: v3 - type: view - name: null - description: List of associated schedules - edgeSource: null - direction: outwards - connectionType: multi_edge_connection - title: - container: - space: IntegrationTestsImmutable - externalId: TemplateItem - containerPropertyIdentifier: title - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Title or name of the node - updatedBy: - container: - space: IntegrationTestsImmutable - externalId: TemplateItem - containerPropertyIdentifier: updatedBy - type: - list: false - type: direct - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Who was the last person to update this node? - visibility: - container: - space: IntegrationTestsImmutable - externalId: TemplateItem - containerPropertyIdentifier: visibility - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: null - description: Visibility of node (PUBLIC, PRIVATE, PROTECTED) - lastUpdatedTime: 1699196213142 - createdTime: 1699196213142 -isGlobal: false -lastUpdatedTime: 1699197495077 -createdTime: 1699196213952 diff --git a/tests/data_models/ApmAppData/views/Asset.view.yaml b/tests/data_models/ApmAppData/views/Asset.view.yaml deleted file mode 100644 index ab519c4fa..000000000 --- a/tests/data_models/ApmAppData/views/Asset.view.yaml +++ /dev/null @@ -1,53 +0,0 @@ -space: IntegrationTestsImmutable -externalId: Asset -version: v1 -properties: - description: - container: - space: IntegrationTestsImmutable - externalId: Asset - type: container - containerPropertyIdentifier: description - description: Long description of the node - labels: - container: - space: IntegrationTestsImmutable - externalId: Asset - type: container - containerPropertyIdentifier: labels - description: Text based labels for generic use - parent: - container: - space: IntegrationTestsImmutable - externalId: Asset - type: container - containerPropertyIdentifier: parent - description: Parent of this asset - root: - container: - space: IntegrationTestsImmutable - externalId: Asset - type: container - containerPropertyIdentifier: root - description: Root location - asset at the top of the hierarchy. - source: - container: - space: IntegrationTestsImmutable - externalId: Asset - type: container - containerPropertyIdentifier: source - description: Name of the source system node comes from - sourceId: - container: - space: IntegrationTestsImmutable - externalId: Asset - type: container - containerPropertyIdentifier: sourceId - description: ID as the node appears in the Source system - title: - container: - space: IntegrationTestsImmutable - externalId: Asset - type: container - containerPropertyIdentifier: title - description: Title or name of the node diff --git a/tests/data_models/ApmAppData/views/CDF_User.view.yaml b/tests/data_models/ApmAppData/views/CDF_User.view.yaml deleted file mode 100644 index 33cf88cb4..000000000 --- a/tests/data_models/ApmAppData/views/CDF_User.view.yaml +++ /dev/null @@ -1,25 +0,0 @@ -space: IntegrationTestsImmutable -externalId: CDF_User -version: v1 -properties: - email: - container: - space: IntegrationTestsImmutable - externalId: CDF_User - type: container - containerPropertyIdentifier: email - description: Email of user - name: - container: - space: IntegrationTestsImmutable - externalId: CDF_User - type: container - containerPropertyIdentifier: name - description: Name of user - preferences: - container: - space: IntegrationTestsImmutable - externalId: CDF_User - type: container - containerPropertyIdentifier: preferences - description: Holds user preferences across and within applications diff --git a/tests/data_models/ApmAppData/views/CDF_UserPreferences.view.yaml b/tests/data_models/ApmAppData/views/CDF_UserPreferences.view.yaml deleted file mode 100644 index ce40cab77..000000000 --- a/tests/data_models/ApmAppData/views/CDF_UserPreferences.view.yaml +++ /dev/null @@ -1,18 +0,0 @@ -space: IntegrationTestsImmutable -externalId: CDF_UserPreferences -version: v1 -properties: - apmAppConfig: - container: - space: IntegrationTestsImmutable - externalId: CDF_UserPreferences - type: container - containerPropertyIdentifier: apmAppConfig - description: User preferences related to APM apps, like selected config - language: - container: - space: IntegrationTestsImmutable - externalId: CDF_UserPreferences - type: container - containerPropertyIdentifier: language - description: The users selected language diff --git a/tests/data_models/ApmAppData/views/Checklist.view.yaml b/tests/data_models/ApmAppData/views/Checklist.view.yaml deleted file mode 100644 index a5c01db03..000000000 --- a/tests/data_models/ApmAppData/views/Checklist.view.yaml +++ /dev/null @@ -1,125 +0,0 @@ -space: IntegrationTestsImmutable -externalId: Checklist -description: The Checklist view provides functionality for executing maintenance and - inspection work. It maintains a list of checklist items (tasks) associated with - specific maintenance and inspection activities. -name: Checklist -version: v3 -properties: - assignedTo: - container: - space: IntegrationTestsImmutable - externalId: Checklist - type: container - containerPropertyIdentifier: assignedTo - description: List of users or disciplines assigned to the checklist - checklistItems: - type: - space: IntegrationTestsImmutable - externalId: referenceChecklistItems - source: - space: IntegrationTestsImmutable - externalId: ChecklistItem - version: v3 - type: view - direction: outwards - description: List of checklist items / tasks within the checklist - connectionType: multi_edge_connection - createdBy: - container: - space: IntegrationTestsImmutable - externalId: Checklist - type: container - containerPropertyIdentifier: createdBy - description: Who created this node? - description: - container: - space: IntegrationTestsImmutable - externalId: Checklist - type: container - containerPropertyIdentifier: description - description: Long description of the node - endTime: - container: - space: IntegrationTestsImmutable - externalId: Checklist - type: container - containerPropertyIdentifier: endTime - description: End time of node - isArchived: - container: - space: IntegrationTestsImmutable - externalId: Checklist - type: container - containerPropertyIdentifier: isArchived - description: Is this item archived, and therefore hidden from most UIs? - labels: - container: - space: IntegrationTestsImmutable - externalId: Checklist - type: container - containerPropertyIdentifier: labels - description: Text based labels for generic use - rootLocation: - container: - space: IntegrationTestsImmutable - externalId: Checklist - type: container - containerPropertyIdentifier: rootLocation - description: External ID of the root location associated with the checklist - source: - container: - space: IntegrationTestsImmutable - externalId: Checklist - type: container - containerPropertyIdentifier: source - description: Name of the source system node comes from - sourceId: - container: - space: IntegrationTestsImmutable - externalId: Checklist - type: container - containerPropertyIdentifier: sourceId - description: ID as the node appears in the Source system - startTime: - container: - space: IntegrationTestsImmutable - externalId: Checklist - type: container - containerPropertyIdentifier: startTime - description: Start time of node - status: - container: - space: IntegrationTestsImmutable - externalId: Checklist - type: container - containerPropertyIdentifier: status - description: The status of the checklist - title: - container: - space: IntegrationTestsImmutable - externalId: Checklist - type: container - containerPropertyIdentifier: title - description: Title or name of the node - type: - container: - space: IntegrationTestsImmutable - externalId: Checklist - type: container - containerPropertyIdentifier: type - description: The type of the checklist, eg Maintenance, Inspection, etc. - updatedBy: - container: - space: IntegrationTestsImmutable - externalId: Checklist - type: container - containerPropertyIdentifier: updatedBy - description: Who was the last person to update this node? - visibility: - container: - space: IntegrationTestsImmutable - externalId: Checklist - type: container - containerPropertyIdentifier: visibility - description: Visibility of node (PUBLIC, PRIVATE, PROTECTED) diff --git a/tests/data_models/ApmAppData/views/ChecklistItem.view.yaml b/tests/data_models/ApmAppData/views/ChecklistItem.view.yaml deleted file mode 100644 index 164796ee2..000000000 --- a/tests/data_models/ApmAppData/views/ChecklistItem.view.yaml +++ /dev/null @@ -1,144 +0,0 @@ -space: IntegrationTestsImmutable -externalId: ChecklistItem -description: The checklist item view is used for managing individual maintenance and - inspection tasks within a checklist. It allows users to track the execution order, - status, notes, associated assets, and related observations for each task. -name: Checklist item -version: v3 -properties: - asset: - container: - space: IntegrationTestsImmutable - externalId: ChecklistItem - type: container - containerPropertyIdentifier: asset - description: External ID of the associated CDF Asset - createdBy: - container: - space: IntegrationTestsImmutable - externalId: ChecklistItem - type: container - containerPropertyIdentifier: createdBy - description: Who created this node? - description: - container: - space: IntegrationTestsImmutable - externalId: ChecklistItem - type: container - containerPropertyIdentifier: description - description: Long description of the node - endTime: - container: - space: IntegrationTestsImmutable - externalId: ChecklistItem - type: container - containerPropertyIdentifier: endTime - description: End time of node - files: - container: - space: IntegrationTestsImmutable - externalId: ChecklistItem - type: container - containerPropertyIdentifier: files - description: List of associated files - isArchived: - container: - space: IntegrationTestsImmutable - externalId: ChecklistItem - type: container - containerPropertyIdentifier: isArchived - description: Is this item archived, and therefore hidden from most UIs? - labels: - container: - space: IntegrationTestsImmutable - externalId: ChecklistItem - type: container - containerPropertyIdentifier: labels - description: Text based labels for generic use - measurements: - type: - space: IntegrationTestsImmutable - externalId: referenceMeasurements - source: - space: IntegrationTestsImmutable - externalId: MeasurementReading - version: v3 - type: view - direction: outwards - description: List of associated measurements - connectionType: multi_edge_connection - note: - container: - space: IntegrationTestsImmutable - externalId: ChecklistItem - type: container - containerPropertyIdentifier: note - description: Additional notes for the checklist item - observations: - type: - space: IntegrationTestsImmutable - externalId: referenceObservations - source: - space: IntegrationTestsImmutable - externalId: Observation - version: v3 - type: view - direction: outwards - description: List of observations associated with the checklist item - connectionType: multi_edge_connection - order: - container: - space: IntegrationTestsImmutable - externalId: ChecklistItem - type: container - containerPropertyIdentifier: order - description: The execution order of the checklist item - source: - container: - space: IntegrationTestsImmutable - externalId: ChecklistItem - type: container - containerPropertyIdentifier: source - description: Name of the source system node comes from - sourceId: - container: - space: IntegrationTestsImmutable - externalId: ChecklistItem - type: container - containerPropertyIdentifier: sourceId - description: ID as the node appears in the Source system - startTime: - container: - space: IntegrationTestsImmutable - externalId: ChecklistItem - type: container - containerPropertyIdentifier: startTime - description: Start time of node - status: - container: - space: IntegrationTestsImmutable - externalId: ChecklistItem - type: container - containerPropertyIdentifier: status - description: The status of the checklist item - title: - container: - space: IntegrationTestsImmutable - externalId: ChecklistItem - type: container - containerPropertyIdentifier: title - description: Title or name of the node - updatedBy: - container: - space: IntegrationTestsImmutable - externalId: ChecklistItem - type: container - containerPropertyIdentifier: updatedBy - description: Who was the last person to update this node? - visibility: - container: - space: IntegrationTestsImmutable - externalId: ChecklistItem - type: container - containerPropertyIdentifier: visibility - description: Visibility of node (PUBLIC, PRIVATE, PROTECTED) diff --git a/tests/data_models/ApmAppData/views/MeasurementReading.view.yaml b/tests/data_models/ApmAppData/views/MeasurementReading.view.yaml deleted file mode 100644 index cbedad1d3..000000000 --- a/tests/data_models/ApmAppData/views/MeasurementReading.view.yaml +++ /dev/null @@ -1,100 +0,0 @@ -space: IntegrationTestsImmutable -externalId: MeasurementReading -description: The Measurement reading view facilitates the collection of field data - by making readings. It supports various measurement types (e.g., numerical, label) - and includes information about execution order, associated time series, value ranges, - and the timestamp of the last reading. -name: Measurement reading -version: v3 -properties: - createdBy: - container: - space: IntegrationTestsImmutable - externalId: MeasurementReading - type: container - containerPropertyIdentifier: createdBy - description: Who created this node? - isArchived: - container: - space: IntegrationTestsImmutable - externalId: MeasurementReading - type: container - containerPropertyIdentifier: isArchived - description: Is this item archived, and therefore hidden from most UIs? - max: - container: - space: IntegrationTestsImmutable - externalId: MeasurementReading - type: container - containerPropertyIdentifier: max - description: Max range of the reading, reading higher than `max` is possibly bad - measuredAt: - container: - space: IntegrationTestsImmutable - externalId: MeasurementReading - type: container - containerPropertyIdentifier: measuredAt - description: Timestamp of when the last reading was made - min: - container: - space: IntegrationTestsImmutable - externalId: MeasurementReading - type: container - containerPropertyIdentifier: min - description: Min range of the reading, reading lower than `min` is possibly bad - numericReading: - container: - space: IntegrationTestsImmutable - externalId: MeasurementReading - type: container - containerPropertyIdentifier: numericReading - description: Value of the last reading if it was a numeric reading - options: - container: - space: IntegrationTestsImmutable - externalId: MeasurementReading - type: container - containerPropertyIdentifier: options - description: Configuring options for label measurements - order: - container: - space: IntegrationTestsImmutable - externalId: MeasurementReading - type: container - containerPropertyIdentifier: order - description: Determines the execution order - stringReading: - container: - space: IntegrationTestsImmutable - externalId: MeasurementReading - type: container - containerPropertyIdentifier: stringReading - description: Value of the last reading if it was a string reading - timeseries: - container: - space: IntegrationTestsImmutable - externalId: MeasurementReading - type: container - containerPropertyIdentifier: timeseries - description: Timeseries associated with the measurement - type: - container: - space: IntegrationTestsImmutable - externalId: MeasurementReading - type: container - containerPropertyIdentifier: type - description: Measurement type, eg numerical, label, etc. - updatedBy: - container: - space: IntegrationTestsImmutable - externalId: MeasurementReading - type: container - containerPropertyIdentifier: updatedBy - description: Who was the last person to update this node? - visibility: - container: - space: IntegrationTestsImmutable - externalId: MeasurementReading - type: container - containerPropertyIdentifier: visibility - description: Visibility of node (PUBLIC, PRIVATE, PROTECTED) diff --git a/tests/data_models/ApmAppData/views/Observation.view.yaml b/tests/data_models/ApmAppData/views/Observation.view.yaml deleted file mode 100644 index 33340cd0f..000000000 --- a/tests/data_models/ApmAppData/views/Observation.view.yaml +++ /dev/null @@ -1,121 +0,0 @@ -space: IntegrationTestsImmutable -externalId: Observation -description: The Observation view captures anomaly reports created by field operators. - It records information about the status, associated assets, related files, root - locations, troubleshooting details, priority, and the type of observation (e.g., - Malfunction report, Maintenance request). -name: Observation -version: v3 -properties: - asset: - container: - space: IntegrationTestsImmutable - externalId: Observation - type: container - containerPropertyIdentifier: asset - description: External ID of the associated CDF Asset - createdBy: - container: - space: IntegrationTestsImmutable - externalId: Observation - type: container - containerPropertyIdentifier: createdBy - description: Who created this node? - description: - container: - space: IntegrationTestsImmutable - externalId: Observation - type: container - containerPropertyIdentifier: description - description: Long description of the node - files: - container: - space: IntegrationTestsImmutable - externalId: Observation - type: container - containerPropertyIdentifier: files - description: List of associated files - isArchived: - container: - space: IntegrationTestsImmutable - externalId: Observation - type: container - containerPropertyIdentifier: isArchived - description: Is this item archived, and therefore hidden from most UIs? - labels: - container: - space: IntegrationTestsImmutable - externalId: Observation - type: container - containerPropertyIdentifier: labels - description: Text based labels for generic use - priority: - container: - space: IntegrationTestsImmutable - externalId: Observation - type: container - containerPropertyIdentifier: priority - description: Priority of the observation (Urgent, High ...) - rootLocation: - container: - space: IntegrationTestsImmutable - externalId: Observation - type: container - containerPropertyIdentifier: rootLocation - description: External ID of the root location associated with the observation - source: - container: - space: IntegrationTestsImmutable - externalId: Observation - type: container - containerPropertyIdentifier: source - description: Name of the source system node comes from - sourceId: - container: - space: IntegrationTestsImmutable - externalId: Observation - type: container - containerPropertyIdentifier: sourceId - description: ID as the node appears in the Source system - status: - container: - space: IntegrationTestsImmutable - externalId: Observation - type: container - containerPropertyIdentifier: status - description: The status of the observation (draft, completed, sent) - title: - container: - space: IntegrationTestsImmutable - externalId: Observation - type: container - containerPropertyIdentifier: title - description: Title or name of the node - troubleshooting: - container: - space: IntegrationTestsImmutable - externalId: Observation - type: container - containerPropertyIdentifier: troubleshooting - description: description of how the observation was troubleshooted - type: - container: - space: IntegrationTestsImmutable - externalId: Observation - type: container - containerPropertyIdentifier: type - description: The observation type (Malfunction report, Maintenance request, etc.) - updatedBy: - container: - space: IntegrationTestsImmutable - externalId: Observation - type: container - containerPropertyIdentifier: updatedBy - description: Who was the last person to update this node? - visibility: - container: - space: IntegrationTestsImmutable - externalId: Observation - type: container - containerPropertyIdentifier: visibility - description: Visibility of node (PUBLIC, PRIVATE, PROTECTED) diff --git a/tests/data_models/ApmAppData/views/Schedule.view.yaml b/tests/data_models/ApmAppData/views/Schedule.view.yaml deleted file mode 100644 index fb44065b0..000000000 --- a/tests/data_models/ApmAppData/views/Schedule.view.yaml +++ /dev/null @@ -1,107 +0,0 @@ -space: IntegrationTestsImmutable -externalId: Schedule -description: The Schedule view provides a flexible scheduling framework that can be - applied across different models, such as Templates, Robotics Missions, and Template - Tasks. It aligns with the ICS calendar format and offers features like status tracking, - time zone configuration, exception dates, frequency settings, and end date. -name: Schedule -version: v3 -properties: - byDay: - container: - space: IntegrationTestsImmutable - externalId: Schedule - type: container - containerPropertyIdentifier: byDay - description: Specifies the days of the week when the schedule occurs. Part of - the RRULE property in ICS format. - createdBy: - container: - space: IntegrationTestsImmutable - externalId: Schedule - type: container - containerPropertyIdentifier: createdBy - description: Who created this node? - endTime: - container: - space: IntegrationTestsImmutable - externalId: Schedule - type: container - containerPropertyIdentifier: endTime - description: End time of node - exceptionDates: - container: - space: IntegrationTestsImmutable - externalId: Schedule - type: container - containerPropertyIdentifier: exceptionDates - description: Specifies the dates where the schedule does not apply. Corresponds - to the EXDATE property in ICS format. - freq: - container: - space: IntegrationTestsImmutable - externalId: Schedule - type: container - containerPropertyIdentifier: freq - description: Defines the frequency of occurrence for the schedule (e.g., daily, - weekly). Part of the RRULE property in ICS format. - interval: - container: - space: IntegrationTestsImmutable - externalId: Schedule - type: container - containerPropertyIdentifier: interval - description: Defines the interval of the schedule, eg. biweekly, once every three - weeks, etc. Similar to the TZID parameter in ICS format. - isArchived: - container: - space: IntegrationTestsImmutable - externalId: Schedule - type: container - containerPropertyIdentifier: isArchived - description: Is this item archived, and therefore hidden from most UIs? - startTime: - container: - space: IntegrationTestsImmutable - externalId: Schedule - type: container - containerPropertyIdentifier: startTime - description: Start time of node - status: - container: - space: IntegrationTestsImmutable - externalId: Schedule - type: container - containerPropertyIdentifier: status - description: Indicates the current status of the schedule (e.g., confirmed, cancelled). - Similar to the STATUS property in ICS format. - timezone: - container: - space: IntegrationTestsImmutable - externalId: Schedule - type: container - containerPropertyIdentifier: timezone - description: Defines the time zone for the start and end date/time. Similar to - the TZID parameter in ICS format. - until: - container: - space: IntegrationTestsImmutable - externalId: Schedule - type: container - containerPropertyIdentifier: until - description: Indicates the date and time until which the schedule is valid. Part - of the RRULE property in ICS format. - updatedBy: - container: - space: IntegrationTestsImmutable - externalId: Schedule - type: container - containerPropertyIdentifier: updatedBy - description: Who was the last person to update this node? - visibility: - container: - space: IntegrationTestsImmutable - externalId: Schedule - type: container - containerPropertyIdentifier: visibility - description: Visibility of node (PUBLIC, PRIVATE, PROTECTED) diff --git a/tests/data_models/ApmAppData/views/Template.view.yaml b/tests/data_models/ApmAppData/views/Template.view.yaml deleted file mode 100644 index 5b2391055..000000000 --- a/tests/data_models/ApmAppData/views/Template.view.yaml +++ /dev/null @@ -1,91 +0,0 @@ -space: IntegrationTestsImmutable -externalId: Template -description: The Template view is used for creating standardized maintenance and inspection - tasks. It defines the status of the template (e.g., draft, ready) and includes a - list of template items (tasks) that can be reused for various maintenance and inspection - activities. -name: Template -version: v3 -properties: - assignedTo: - container: - space: IntegrationTestsImmutable - externalId: Template - type: container - containerPropertyIdentifier: assignedTo - description: List of users or disciplines assigned to the template - createdBy: - container: - space: IntegrationTestsImmutable - externalId: Template - type: container - containerPropertyIdentifier: createdBy - description: Who created this node? - description: - container: - space: IntegrationTestsImmutable - externalId: Template - type: container - containerPropertyIdentifier: description - description: Long description of the node - isArchived: - container: - space: IntegrationTestsImmutable - externalId: Template - type: container - containerPropertyIdentifier: isArchived - description: Is this item archived, and therefore hidden from most UIs? - labels: - container: - space: IntegrationTestsImmutable - externalId: Template - type: container - containerPropertyIdentifier: labels - description: Text based labels for generic use - rootLocation: - container: - space: IntegrationTestsImmutable - externalId: Template - type: container - containerPropertyIdentifier: rootLocation - description: Root location (asset) associated with the checklist - status: - container: - space: IntegrationTestsImmutable - externalId: Template - type: container - containerPropertyIdentifier: status - description: Status of the template eg. draft, ready, etc. - templateItems: - type: - space: IntegrationTestsImmutable - externalId: referenceTemplateItems - source: - space: IntegrationTestsImmutable - externalId: TemplateItem - version: v3 - type: view - direction: outwards - description: List of template items / tasks within the template - connectionType: multi_edge_connection - title: - container: - space: IntegrationTestsImmutable - externalId: Template - type: container - containerPropertyIdentifier: title - description: Title or name of the node - updatedBy: - container: - space: IntegrationTestsImmutable - externalId: Template - type: container - containerPropertyIdentifier: updatedBy - description: Who was the last person to update this node? - visibility: - container: - space: IntegrationTestsImmutable - externalId: Template - type: container - containerPropertyIdentifier: visibility - description: Visibility of node (PUBLIC, PRIVATE, PROTECTED) diff --git a/tests/data_models/ApmAppData/views/TemplateItem.view.yaml b/tests/data_models/ApmAppData/views/TemplateItem.view.yaml deleted file mode 100644 index d197928d9..000000000 --- a/tests/data_models/ApmAppData/views/TemplateItem.view.yaml +++ /dev/null @@ -1,95 +0,0 @@ -space: IntegrationTestsImmutable -externalId: TemplateItem -description: The template item view is designed for creating individual maintenance - and inspection tasks within a template. It specifies the execution order, associated - assets, measurements, schedules, and other relevant details for each task. -name: Template item -version: v3 -properties: - asset: - container: - space: IntegrationTestsImmutable - externalId: TemplateItem - type: container - containerPropertyIdentifier: asset - description: Associated asset - createdBy: - container: - space: IntegrationTestsImmutable - externalId: TemplateItem - type: container - containerPropertyIdentifier: createdBy - description: Who created this node? - description: - container: - space: IntegrationTestsImmutable - externalId: TemplateItem - type: container - containerPropertyIdentifier: description - description: Long description of the node - isArchived: - container: - space: IntegrationTestsImmutable - externalId: TemplateItem - type: container - containerPropertyIdentifier: isArchived - description: Is this item archived, and therefore hidden from most UIs? - labels: - container: - space: IntegrationTestsImmutable - externalId: TemplateItem - type: container - containerPropertyIdentifier: labels - description: Text based labels for generic use - measurements: - type: - space: IntegrationTestsImmutable - externalId: referenceMeasurements - source: - space: IntegrationTestsImmutable - externalId: MeasurementReading - version: v3 - type: view - direction: outwards - description: List of associated measurements - connectionType: multi_edge_connection - order: - container: - space: IntegrationTestsImmutable - externalId: TemplateItem - type: container - containerPropertyIdentifier: order - description: The execution order of the template item - schedules: - type: - space: IntegrationTestsImmutable - externalId: referenceSchedules - source: - space: IntegrationTestsImmutable - externalId: Schedule - version: v3 - type: view - direction: outwards - description: List of associated schedules - connectionType: multi_edge_connection - title: - container: - space: IntegrationTestsImmutable - externalId: TemplateItem - type: container - containerPropertyIdentifier: title - description: Title or name of the node - updatedBy: - container: - space: IntegrationTestsImmutable - externalId: TemplateItem - type: container - containerPropertyIdentifier: updatedBy - description: Who was the last person to update this node? - visibility: - container: - space: IntegrationTestsImmutable - externalId: TemplateItem - type: container - containerPropertyIdentifier: visibility - description: Visibility of node (PUBLIC, PRIVATE, PROTECTED) diff --git a/tests/data_models/ApmSimple/containers/Asset.container.yaml b/tests/data_models/ApmSimple/containers/Asset.container.yaml deleted file mode 100644 index 732b47663..000000000 --- a/tests/data_models/ApmSimple/containers/Asset.container.yaml +++ /dev/null @@ -1,126 +0,0 @@ -space: tutorial_apm_simple -externalId: Asset -name: Asset -usedFor: node -properties: - parent: - type: - type: direct - nullable: true - autoIncrement: false - name: parent - tag: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: tag - description: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: description - sourceDb: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: source data - description: '@name source data' - areaId: - type: - list: false - type: int32 - nullable: true - autoIncrement: false - name: area identification - description: '@name area identification' - categoryId: - type: - list: false - type: int32 - nullable: true - autoIncrement: false - name: category identification - description: '@name category identification' - createdDate: - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - name: created date - description: '@name created date' - isCriticalLine: - type: - list: false - type: boolean - nullable: true - autoIncrement: false - name: critical line - description: '@name critical line' - isActive: - type: - list: false - type: boolean - nullable: true - autoIncrement: false - name: active - description: '@name active' - updatedDate: - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - name: updated date - description: '@name updated date' - metrics: - type: - list: true - type: timeseries - nullable: true - autoIncrement: false - name: metrics - documents: - type: - list: true - type: file - nullable: true - autoIncrement: false - name: documents - pressure: - type: - list: false - type: timeseries - nullable: true - autoIncrement: false - name: pressure - specification: - type: - list: false - type: file - nullable: true - autoIncrement: false - name: specification - measurements: - type: - list: true - type: sequence - nullable: true - autoIncrement: false - name: measurements - trajectory: - type: - list: false - type: sequence - nullable: true - autoIncrement: false - name: trajectory diff --git a/tests/data_models/ApmSimple/containers/Cdf3dConnectionProperties.container.yaml b/tests/data_models/ApmSimple/containers/Cdf3dConnectionProperties.container.yaml deleted file mode 100644 index b6201ee38..000000000 --- a/tests/data_models/ApmSimple/containers/Cdf3dConnectionProperties.container.yaml +++ /dev/null @@ -1,22 +0,0 @@ -space: cdf_3d_schema -externalId: Cdf3dConnectionProperties -usedFor: edge -properties: - revisionId: - type: - list: false - type: int64 - nullable: false - autoIncrement: false - revisionNodeId: - type: - list: false - type: int64 - nullable: false - autoIncrement: false -constraints: - uniqueNodeRevisionConstraint: - properties: - - revisionId - - revisionNodeId - constraintType: uniqueness diff --git a/tests/data_models/ApmSimple/containers/Cdf3dModel.container.yaml b/tests/data_models/ApmSimple/containers/Cdf3dModel.container.yaml deleted file mode 100644 index 9c567c60a..000000000 --- a/tests/data_models/ApmSimple/containers/Cdf3dModel.container.yaml +++ /dev/null @@ -1,11 +0,0 @@ -space: cdf_3d_schema -externalId: Cdf3dModel -usedFor: node -properties: - name: - type: - list: false - collation: ucs_basic - type: text - nullable: false - autoIncrement: false diff --git a/tests/data_models/ApmSimple/containers/WorkItem.container.yaml b/tests/data_models/ApmSimple/containers/WorkItem.container.yaml deleted file mode 100644 index 78dd78118..000000000 --- a/tests/data_models/ApmSimple/containers/WorkItem.container.yaml +++ /dev/null @@ -1,77 +0,0 @@ -space: tutorial_apm_simple -externalId: WorkItem -name: Work item -usedFor: node -properties: - title: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: title - description: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: description - method: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: method - itemInfo: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: item information - description: '@name item information' - itemName: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: item name - description: '@name item name' - isCompleted: - type: - list: false - type: boolean - nullable: true - autoIncrement: false - name: completed - description: '@name completed' - toBeDone: - type: - list: false - type: boolean - nullable: true - autoIncrement: false - name: to be done - description: '@name to be done' - criticality: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: criticality - workOrder: - type: - type: direct - nullable: true - autoIncrement: false - name: workOrder diff --git a/tests/data_models/ApmSimple/containers/WorkOrder.container.yaml b/tests/data_models/ApmSimple/containers/WorkOrder.container.yaml deleted file mode 100644 index 4a7d094ed..000000000 --- a/tests/data_models/ApmSimple/containers/WorkOrder.container.yaml +++ /dev/null @@ -1,161 +0,0 @@ -space: tutorial_apm_simple -externalId: WorkOrder -name: Work order -usedFor: node -properties: - startTime: - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - name: start time - description: '@name start time' - endTime: - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - name: end time - description: '@name end time' - title: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: title - description: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: description - programNumber: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: program number - description: '@name program number' - workOrderNumber: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: work order number - description: '@name work order number' - status: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: status - dueDate: - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - name: due date - description: '@name due date' - isActive: - type: - list: false - type: boolean - nullable: true - autoIncrement: false - name: active - description: '@name active' - workPackageNumber: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: work package number - description: '@name work package number' - createdDate: - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - name: created date - description: '@name created date' - plannedStart: - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - name: planned start - description: '@name planned start' - priorityDescription: - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - name: priority description - description: '@name priority description' - durationHours: - type: - list: false - type: int32 - nullable: true - autoIncrement: false - name: duration (hours) - description: '@name duration (hours)' - actualHours: - type: - list: false - type: int32 - nullable: true - autoIncrement: false - name: actual (hours) - description: '@name actual (hours)' - isCancelled: - type: - list: false - type: boolean - nullable: true - autoIncrement: false - name: cancelled - description: '@name cancelled' - isCompleted: - type: - list: false - type: boolean - nullable: true - autoIncrement: false - name: completed - description: '@name completed' - percentageProgress: - type: - list: false - type: int32 - nullable: true - autoIncrement: false - name: percentage progress - description: '@name percentage progress' - isSafetyCritical: - type: - list: false - type: boolean - nullable: true - autoIncrement: false - name: safety critical - description: '@name safety critical' diff --git a/tests/data_models/ApmSimple/model.yaml b/tests/data_models/ApmSimple/model.yaml deleted file mode 100644 index 7a3588189..000000000 --- a/tests/data_models/ApmSimple/model.yaml +++ /dev/null @@ -1,869 +0,0 @@ -space: tutorial_apm_simple -externalId: ApmSimple -name: ApmSimple -description: Bug from Lars -version: '6' -views: -- space: tutorial_apm_simple - externalId: Asset - name: Asset - implements: - - space: cdf_3d_schema - externalId: Cdf3dEntity - version: '1' - type: view - version: beb2bebdcbb4ad - writable: true - usedFor: node - isGlobal: false - properties: - areaId: - container: - space: tutorial_apm_simple - externalId: Asset - containerPropertyIdentifier: areaId - type: - list: false - type: int32 - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: area identification - description: '@name area identification' - categoryId: - container: - space: tutorial_apm_simple - externalId: Asset - containerPropertyIdentifier: categoryId - type: - list: false - type: int32 - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: category identification - description: '@name category identification' - children: - type: - space: tutorial_apm_simple - externalId: Asset.children - source: - space: tutorial_apm_simple - externalId: Asset - version: beb2bebdcbb4ad - type: view - name: children - description: null - edgeSource: null - direction: outwards - connectionType: multi_edge_connection - createdDate: - container: - space: tutorial_apm_simple - externalId: Asset - containerPropertyIdentifier: createdDate - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: created date - description: '@name created date' - description: - container: - space: tutorial_apm_simple - externalId: Asset - containerPropertyIdentifier: description - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: description - description: null - documents: - container: - space: tutorial_apm_simple - externalId: Asset - containerPropertyIdentifier: documents - type: - list: true - type: file - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: documents - description: null - inModel3d: - type: - space: cdf_3d_schema - externalId: cdf3dEntityConnection - source: - space: cdf_3d_schema - externalId: Cdf3dModel - version: '1' - type: view - name: null - description: Cdf3dModel the Cdf3dEntity is part of - edgeSource: - space: cdf_3d_schema - externalId: Cdf3dConnectionProperties - version: '1' - type: view - direction: outwards - connectionType: multi_edge_connection - isActive: - container: - space: tutorial_apm_simple - externalId: Asset - containerPropertyIdentifier: isActive - type: - list: false - type: boolean - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: active - description: '@name active' - isCriticalLine: - container: - space: tutorial_apm_simple - externalId: Asset - containerPropertyIdentifier: isCriticalLine - type: - list: false - type: boolean - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: critical line - description: '@name critical line' - measurements: - container: - space: tutorial_apm_simple - externalId: Asset - containerPropertyIdentifier: measurements - type: - list: true - type: sequence - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: measurements - description: null - metrics: - container: - space: tutorial_apm_simple - externalId: Asset - containerPropertyIdentifier: metrics - type: - list: true - type: timeseries - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: metrics - description: null - parent: - container: - space: tutorial_apm_simple - externalId: Asset - containerPropertyIdentifier: parent - type: - list: false - type: direct - source: - space: tutorial_apm_simple - externalId: Asset - version: beb2bebdcbb4ad - nullable: true - autoIncrement: false - defaultValue: null - name: parent - description: null - pressure: - container: - space: tutorial_apm_simple - externalId: Asset - containerPropertyIdentifier: pressure - type: - list: false - type: timeseries - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: pressure - description: null - sourceDb: - container: - space: tutorial_apm_simple - externalId: Asset - containerPropertyIdentifier: sourceDb - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: source data - description: '@name source data' - specification: - container: - space: tutorial_apm_simple - externalId: Asset - containerPropertyIdentifier: specification - type: - list: false - type: file - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: specification - description: null - tag: - container: - space: tutorial_apm_simple - externalId: Asset - containerPropertyIdentifier: tag - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: tag - description: null - trajectory: - container: - space: tutorial_apm_simple - externalId: Asset - containerPropertyIdentifier: trajectory - type: - list: false - type: sequence - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: trajectory - description: null - updatedDate: - container: - space: tutorial_apm_simple - externalId: Asset - containerPropertyIdentifier: updatedDate - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: updated date - description: '@name updated date' - lastUpdatedTime: 1694865892001 - createdTime: 1694865892001 -- space: cdf_3d_schema - externalId: Cdf3dConnectionProperties - implements: [] - version: '1' - writable: true - usedFor: edge - isGlobal: true - properties: - revisionId: - container: - space: cdf_3d_schema - externalId: Cdf3dConnectionProperties - containerPropertyIdentifier: revisionId - type: - list: false - type: int64 - nullable: false - autoIncrement: false - source: null - defaultValue: null - name: null - description: null - revisionNodeId: - container: - space: cdf_3d_schema - externalId: Cdf3dConnectionProperties - containerPropertyIdentifier: revisionNodeId - type: - list: false - type: int64 - nullable: false - autoIncrement: false - source: null - defaultValue: null - name: null - description: null - lastUpdatedTime: 1712744636257 - createdTime: 1690467703871 -- space: cdf_3d_schema - externalId: Cdf3dEntity - implements: [] - version: '1' - writable: false - usedFor: all - isGlobal: true - properties: - inModel3d: - type: - space: cdf_3d_schema - externalId: cdf3dEntityConnection - source: - space: cdf_3d_schema - externalId: Cdf3dModel - version: '1' - type: view - name: null - description: Cdf3dModel the Cdf3dEntity is part of - edgeSource: - space: cdf_3d_schema - externalId: Cdf3dConnectionProperties - version: '1' - type: view - direction: outwards - connectionType: multi_edge_connection - lastUpdatedTime: 1712744636257 - createdTime: 1690467703871 -- space: cdf_3d_schema - externalId: Cdf3dModel - implements: [] - version: '1' - writable: true - usedFor: node - isGlobal: true - properties: - entities: - type: - space: cdf_3d_schema - externalId: cdf3dEntityConnection - source: - space: cdf_3d_schema - externalId: Cdf3dEntity - version: '1' - type: view - name: null - description: Collection of Cdf3dEntity that are part of this Cdf3dModel - edgeSource: - space: cdf_3d_schema - externalId: Cdf3dConnectionProperties - version: '1' - type: view - direction: inwards - connectionType: multi_edge_connection - name: - container: - space: cdf_3d_schema - externalId: Cdf3dModel - containerPropertyIdentifier: name - type: - list: false - collation: ucs_basic - type: text - nullable: false - autoIncrement: false - source: null - defaultValue: null - name: null - description: null - lastUpdatedTime: 1712744636257 - createdTime: 1690467703871 -- space: tutorial_apm_simple - externalId: WorkItem - name: Work item - description: '@name Work item' - implements: [] - version: 18ac48abbe96aa - writable: true - usedFor: node - isGlobal: false - properties: - criticality: - container: - space: tutorial_apm_simple - externalId: WorkItem - containerPropertyIdentifier: criticality - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: criticality - description: null - description: - container: - space: tutorial_apm_simple - externalId: WorkItem - containerPropertyIdentifier: description - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: description - description: null - isCompleted: - container: - space: tutorial_apm_simple - externalId: WorkItem - containerPropertyIdentifier: isCompleted - type: - list: false - type: boolean - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: completed - description: '@name completed' - itemInfo: - container: - space: tutorial_apm_simple - externalId: WorkItem - containerPropertyIdentifier: itemInfo - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: item information - description: '@name item information' - itemName: - container: - space: tutorial_apm_simple - externalId: WorkItem - containerPropertyIdentifier: itemName - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: item name - description: '@name item name' - linkedAssets: - type: - space: tutorial_apm_simple - externalId: WorkItem.linkedAssets - source: - space: tutorial_apm_simple - externalId: Asset - version: beb2bebdcbb4ad - type: view - name: linkedAssets - description: null - edgeSource: null - direction: outwards - connectionType: multi_edge_connection - method: - container: - space: tutorial_apm_simple - externalId: WorkItem - containerPropertyIdentifier: method - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: method - description: null - title: - container: - space: tutorial_apm_simple - externalId: WorkItem - containerPropertyIdentifier: title - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: title - description: null - toBeDone: - container: - space: tutorial_apm_simple - externalId: WorkItem - containerPropertyIdentifier: toBeDone - type: - list: false - type: boolean - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: to be done - description: '@name to be done' - workOrder: - container: - space: tutorial_apm_simple - externalId: WorkItem - containerPropertyIdentifier: workOrder - type: - list: false - type: direct - source: - space: tutorial_apm_simple - externalId: WorkOrder - version: 6f36e59c3c4896 - nullable: true - autoIncrement: false - defaultValue: null - name: workOrder - description: null - lastUpdatedTime: 1694865892001 - createdTime: 1694865892001 -- space: tutorial_apm_simple - externalId: WorkOrder - name: Work order - description: '@name Work order' - implements: [] - version: 6f36e59c3c4896 - writable: true - usedFor: node - isGlobal: false - properties: - actualHours: - container: - space: tutorial_apm_simple - externalId: WorkOrder - containerPropertyIdentifier: actualHours - type: - list: false - type: int32 - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: actual (hours) - description: '@name actual (hours)' - createdDate: - container: - space: tutorial_apm_simple - externalId: WorkOrder - containerPropertyIdentifier: createdDate - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: created date - description: '@name created date' - description: - container: - space: tutorial_apm_simple - externalId: WorkOrder - containerPropertyIdentifier: description - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: description - description: null - dueDate: - container: - space: tutorial_apm_simple - externalId: WorkOrder - containerPropertyIdentifier: dueDate - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: due date - description: '@name due date' - durationHours: - container: - space: tutorial_apm_simple - externalId: WorkOrder - containerPropertyIdentifier: durationHours - type: - list: false - type: int32 - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: duration (hours) - description: '@name duration (hours)' - endTime: - container: - space: tutorial_apm_simple - externalId: WorkOrder - containerPropertyIdentifier: endTime - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: end time - description: '@name end time' - isActive: - container: - space: tutorial_apm_simple - externalId: WorkOrder - containerPropertyIdentifier: isActive - type: - list: false - type: boolean - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: active - description: '@name active' - isCancelled: - container: - space: tutorial_apm_simple - externalId: WorkOrder - containerPropertyIdentifier: isCancelled - type: - list: false - type: boolean - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: cancelled - description: '@name cancelled' - isCompleted: - container: - space: tutorial_apm_simple - externalId: WorkOrder - containerPropertyIdentifier: isCompleted - type: - list: false - type: boolean - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: completed - description: '@name completed' - isSafetyCritical: - container: - space: tutorial_apm_simple - externalId: WorkOrder - containerPropertyIdentifier: isSafetyCritical - type: - list: false - type: boolean - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: safety critical - description: '@name safety critical' - linkedAssets: - type: - space: tutorial_apm_simple - externalId: WorkOrder.linkedAssets - source: - space: tutorial_apm_simple - externalId: Asset - version: beb2bebdcbb4ad - type: view - name: linkedAssets - description: null - edgeSource: null - direction: outwards - connectionType: multi_edge_connection - percentageProgress: - container: - space: tutorial_apm_simple - externalId: WorkOrder - containerPropertyIdentifier: percentageProgress - type: - list: false - type: int32 - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: percentage progress - description: '@name percentage progress' - plannedStart: - container: - space: tutorial_apm_simple - externalId: WorkOrder - containerPropertyIdentifier: plannedStart - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: planned start - description: '@name planned start' - priorityDescription: - container: - space: tutorial_apm_simple - externalId: WorkOrder - containerPropertyIdentifier: priorityDescription - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: priority description - description: '@name priority description' - programNumber: - container: - space: tutorial_apm_simple - externalId: WorkOrder - containerPropertyIdentifier: programNumber - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: program number - description: '@name program number' - startTime: - container: - space: tutorial_apm_simple - externalId: WorkOrder - containerPropertyIdentifier: startTime - type: - list: false - type: timestamp - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: start time - description: '@name start time' - status: - container: - space: tutorial_apm_simple - externalId: WorkOrder - containerPropertyIdentifier: status - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: status - description: null - title: - container: - space: tutorial_apm_simple - externalId: WorkOrder - containerPropertyIdentifier: title - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: title - description: null - workItems: - type: - space: tutorial_apm_simple - externalId: WorkOrder.workItems - source: - space: tutorial_apm_simple - externalId: WorkItem - version: 18ac48abbe96aa - type: view - name: workItems - description: null - edgeSource: null - direction: outwards - connectionType: multi_edge_connection - workOrderNumber: - container: - space: tutorial_apm_simple - externalId: WorkOrder - containerPropertyIdentifier: workOrderNumber - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: work order number - description: '@name work order number' - workPackageNumber: - container: - space: tutorial_apm_simple - externalId: WorkOrder - containerPropertyIdentifier: workPackageNumber - type: - list: false - collation: ucs_basic - type: text - nullable: true - autoIncrement: false - source: null - defaultValue: null - name: work package number - description: '@name work package number' - lastUpdatedTime: 1694865892001 - createdTime: 1694865892001 -isGlobal: false -lastUpdatedTime: 1694865893740 -createdTime: 1694865893740 diff --git a/tests/data_models/ApmSimple/views/Asset.view.yaml b/tests/data_models/ApmSimple/views/Asset.view.yaml deleted file mode 100644 index f7ad0f0a5..000000000 --- a/tests/data_models/ApmSimple/views/Asset.view.yaml +++ /dev/null @@ -1,163 +0,0 @@ -space: tutorial_apm_simple -externalId: Asset -name: Asset -implements: -- space: cdf_3d_schema - externalId: Cdf3dEntity - version: '1' - type: view -version: beb2bebdcbb4ad -properties: - areaId: - container: - space: tutorial_apm_simple - externalId: Asset - type: container - containerPropertyIdentifier: areaId - name: area identification - description: '@name area identification' - categoryId: - container: - space: tutorial_apm_simple - externalId: Asset - type: container - containerPropertyIdentifier: categoryId - name: category identification - description: '@name category identification' - children: - type: - space: tutorial_apm_simple - externalId: Asset.children - source: - space: tutorial_apm_simple - externalId: Asset - version: beb2bebdcbb4ad - type: view - direction: outwards - name: children - connectionType: multi_edge_connection - createdDate: - container: - space: tutorial_apm_simple - externalId: Asset - type: container - containerPropertyIdentifier: createdDate - name: created date - description: '@name created date' - description: - container: - space: tutorial_apm_simple - externalId: Asset - type: container - containerPropertyIdentifier: description - name: description - documents: - container: - space: tutorial_apm_simple - externalId: Asset - type: container - containerPropertyIdentifier: documents - name: documents - inModel3d: - type: - space: cdf_3d_schema - externalId: cdf3dEntityConnection - source: - space: cdf_3d_schema - externalId: Cdf3dModel - version: '1' - type: view - direction: outwards - description: Cdf3dModel the Cdf3dEntity is part of - edgeSource: - space: cdf_3d_schema - externalId: Cdf3dConnectionProperties - version: '1' - type: view - connectionType: multi_edge_connection - isActive: - container: - space: tutorial_apm_simple - externalId: Asset - type: container - containerPropertyIdentifier: isActive - name: active - description: '@name active' - isCriticalLine: - container: - space: tutorial_apm_simple - externalId: Asset - type: container - containerPropertyIdentifier: isCriticalLine - name: critical line - description: '@name critical line' - measurements: - container: - space: tutorial_apm_simple - externalId: Asset - type: container - containerPropertyIdentifier: measurements - name: measurements - metrics: - container: - space: tutorial_apm_simple - externalId: Asset - type: container - containerPropertyIdentifier: metrics - name: metrics - parent: - container: - space: tutorial_apm_simple - externalId: Asset - type: container - containerPropertyIdentifier: parent - name: parent - source: - space: tutorial_apm_simple - externalId: Asset - version: beb2bebdcbb4ad - type: view - pressure: - container: - space: tutorial_apm_simple - externalId: Asset - type: container - containerPropertyIdentifier: pressure - name: pressure - sourceDb: - container: - space: tutorial_apm_simple - externalId: Asset - type: container - containerPropertyIdentifier: sourceDb - name: source data - description: '@name source data' - specification: - container: - space: tutorial_apm_simple - externalId: Asset - type: container - containerPropertyIdentifier: specification - name: specification - tag: - container: - space: tutorial_apm_simple - externalId: Asset - type: container - containerPropertyIdentifier: tag - name: tag - trajectory: - container: - space: tutorial_apm_simple - externalId: Asset - type: container - containerPropertyIdentifier: trajectory - name: trajectory - updatedDate: - container: - space: tutorial_apm_simple - externalId: Asset - type: container - containerPropertyIdentifier: updatedDate - name: updated date - description: '@name updated date' diff --git a/tests/data_models/ApmSimple/views/Cdf3dConnectionProperties.view.yaml b/tests/data_models/ApmSimple/views/Cdf3dConnectionProperties.view.yaml deleted file mode 100644 index e03f6a175..000000000 --- a/tests/data_models/ApmSimple/views/Cdf3dConnectionProperties.view.yaml +++ /dev/null @@ -1,16 +0,0 @@ -space: cdf_3d_schema -externalId: Cdf3dConnectionProperties -version: '1' -properties: - revisionId: - container: - space: cdf_3d_schema - externalId: Cdf3dConnectionProperties - type: container - containerPropertyIdentifier: revisionId - revisionNodeId: - container: - space: cdf_3d_schema - externalId: Cdf3dConnectionProperties - type: container - containerPropertyIdentifier: revisionNodeId diff --git a/tests/data_models/ApmSimple/views/Cdf3dEntity.view.yaml b/tests/data_models/ApmSimple/views/Cdf3dEntity.view.yaml deleted file mode 100644 index 1b50bdd82..000000000 --- a/tests/data_models/ApmSimple/views/Cdf3dEntity.view.yaml +++ /dev/null @@ -1,21 +0,0 @@ -space: cdf_3d_schema -externalId: Cdf3dEntity -version: '1' -properties: - inModel3d: - type: - space: cdf_3d_schema - externalId: cdf3dEntityConnection - source: - space: cdf_3d_schema - externalId: Cdf3dModel - version: '1' - type: view - direction: outwards - description: Cdf3dModel the Cdf3dEntity is part of - edgeSource: - space: cdf_3d_schema - externalId: Cdf3dConnectionProperties - version: '1' - type: view - connectionType: multi_edge_connection diff --git a/tests/data_models/ApmSimple/views/Cdf3dModel.view.yaml b/tests/data_models/ApmSimple/views/Cdf3dModel.view.yaml deleted file mode 100644 index af9040e71..000000000 --- a/tests/data_models/ApmSimple/views/Cdf3dModel.view.yaml +++ /dev/null @@ -1,27 +0,0 @@ -space: cdf_3d_schema -externalId: Cdf3dModel -version: '1' -properties: - entities: - type: - space: cdf_3d_schema - externalId: cdf3dEntityConnection - source: - space: cdf_3d_schema - externalId: Cdf3dEntity - version: '1' - type: view - direction: inwards - description: Collection of Cdf3dEntity that are part of this Cdf3dModel - edgeSource: - space: cdf_3d_schema - externalId: Cdf3dConnectionProperties - version: '1' - type: view - connectionType: multi_edge_connection - name: - container: - space: cdf_3d_schema - externalId: Cdf3dModel - type: container - containerPropertyIdentifier: name diff --git a/tests/data_models/ApmSimple/views/WorkItem.view.yaml b/tests/data_models/ApmSimple/views/WorkItem.view.yaml deleted file mode 100644 index 4da0d43df..000000000 --- a/tests/data_models/ApmSimple/views/WorkItem.view.yaml +++ /dev/null @@ -1,90 +0,0 @@ -space: tutorial_apm_simple -externalId: WorkItem -description: '@name Work item' -name: Work item -version: 18ac48abbe96aa -properties: - criticality: - container: - space: tutorial_apm_simple - externalId: WorkItem - type: container - containerPropertyIdentifier: criticality - name: criticality - description: - container: - space: tutorial_apm_simple - externalId: WorkItem - type: container - containerPropertyIdentifier: description - name: description - isCompleted: - container: - space: tutorial_apm_simple - externalId: WorkItem - type: container - containerPropertyIdentifier: isCompleted - name: completed - description: '@name completed' - itemInfo: - container: - space: tutorial_apm_simple - externalId: WorkItem - type: container - containerPropertyIdentifier: itemInfo - name: item information - description: '@name item information' - itemName: - container: - space: tutorial_apm_simple - externalId: WorkItem - type: container - containerPropertyIdentifier: itemName - name: item name - description: '@name item name' - linkedAssets: - type: - space: tutorial_apm_simple - externalId: WorkItem.linkedAssets - source: - space: tutorial_apm_simple - externalId: Asset - version: beb2bebdcbb4ad - type: view - direction: outwards - name: linkedAssets - connectionType: multi_edge_connection - method: - container: - space: tutorial_apm_simple - externalId: WorkItem - type: container - containerPropertyIdentifier: method - name: method - title: - container: - space: tutorial_apm_simple - externalId: WorkItem - type: container - containerPropertyIdentifier: title - name: title - toBeDone: - container: - space: tutorial_apm_simple - externalId: WorkItem - type: container - containerPropertyIdentifier: toBeDone - name: to be done - description: '@name to be done' - workOrder: - container: - space: tutorial_apm_simple - externalId: WorkItem - type: container - containerPropertyIdentifier: workOrder - name: workOrder - source: - space: tutorial_apm_simple - externalId: WorkOrder - version: 6f36e59c3c4896 - type: view diff --git a/tests/data_models/ApmSimple/views/WorkOrder.view.yaml b/tests/data_models/ApmSimple/views/WorkOrder.view.yaml deleted file mode 100644 index d9152f13b..000000000 --- a/tests/data_models/ApmSimple/views/WorkOrder.view.yaml +++ /dev/null @@ -1,179 +0,0 @@ -space: tutorial_apm_simple -externalId: WorkOrder -description: '@name Work order' -name: Work order -version: 6f36e59c3c4896 -properties: - actualHours: - container: - space: tutorial_apm_simple - externalId: WorkOrder - type: container - containerPropertyIdentifier: actualHours - name: actual (hours) - description: '@name actual (hours)' - createdDate: - container: - space: tutorial_apm_simple - externalId: WorkOrder - type: container - containerPropertyIdentifier: createdDate - name: created date - description: '@name created date' - description: - container: - space: tutorial_apm_simple - externalId: WorkOrder - type: container - containerPropertyIdentifier: description - name: description - dueDate: - container: - space: tutorial_apm_simple - externalId: WorkOrder - type: container - containerPropertyIdentifier: dueDate - name: due date - description: '@name due date' - durationHours: - container: - space: tutorial_apm_simple - externalId: WorkOrder - type: container - containerPropertyIdentifier: durationHours - name: duration (hours) - description: '@name duration (hours)' - endTime: - container: - space: tutorial_apm_simple - externalId: WorkOrder - type: container - containerPropertyIdentifier: endTime - name: end time - description: '@name end time' - isActive: - container: - space: tutorial_apm_simple - externalId: WorkOrder - type: container - containerPropertyIdentifier: isActive - name: active - description: '@name active' - isCancelled: - container: - space: tutorial_apm_simple - externalId: WorkOrder - type: container - containerPropertyIdentifier: isCancelled - name: cancelled - description: '@name cancelled' - isCompleted: - container: - space: tutorial_apm_simple - externalId: WorkOrder - type: container - containerPropertyIdentifier: isCompleted - name: completed - description: '@name completed' - isSafetyCritical: - container: - space: tutorial_apm_simple - externalId: WorkOrder - type: container - containerPropertyIdentifier: isSafetyCritical - name: safety critical - description: '@name safety critical' - linkedAssets: - type: - space: tutorial_apm_simple - externalId: WorkOrder.linkedAssets - source: - space: tutorial_apm_simple - externalId: Asset - version: beb2bebdcbb4ad - type: view - direction: outwards - name: linkedAssets - connectionType: multi_edge_connection - percentageProgress: - container: - space: tutorial_apm_simple - externalId: WorkOrder - type: container - containerPropertyIdentifier: percentageProgress - name: percentage progress - description: '@name percentage progress' - plannedStart: - container: - space: tutorial_apm_simple - externalId: WorkOrder - type: container - containerPropertyIdentifier: plannedStart - name: planned start - description: '@name planned start' - priorityDescription: - container: - space: tutorial_apm_simple - externalId: WorkOrder - type: container - containerPropertyIdentifier: priorityDescription - name: priority description - description: '@name priority description' - programNumber: - container: - space: tutorial_apm_simple - externalId: WorkOrder - type: container - containerPropertyIdentifier: programNumber - name: program number - description: '@name program number' - startTime: - container: - space: tutorial_apm_simple - externalId: WorkOrder - type: container - containerPropertyIdentifier: startTime - name: start time - description: '@name start time' - status: - container: - space: tutorial_apm_simple - externalId: WorkOrder - type: container - containerPropertyIdentifier: status - name: status - title: - container: - space: tutorial_apm_simple - externalId: WorkOrder - type: container - containerPropertyIdentifier: title - name: title - workItems: - type: - space: tutorial_apm_simple - externalId: WorkOrder.workItems - source: - space: tutorial_apm_simple - externalId: WorkItem - version: 18ac48abbe96aa - type: view - direction: outwards - name: workItems - connectionType: multi_edge_connection - workOrderNumber: - container: - space: tutorial_apm_simple - externalId: WorkOrder - type: container - containerPropertyIdentifier: workOrderNumber - name: work order number - description: '@name work order number' - workPackageNumber: - container: - space: tutorial_apm_simple - externalId: WorkOrder - type: container - containerPropertyIdentifier: workPackageNumber - name: work package number - description: '@name work package number' diff --git a/tests/modules/models/data_models/windturbine/containers/WindTurbine.container.yaml b/tests/modules/models/data_models/windturbine/containers/WindTurbine.container.yaml index d644feb4b..8fbcb4e92 100644 --- a/tests/modules/models/data_models/windturbine/containers/WindTurbine.container.yaml +++ b/tests/modules/models/data_models/windturbine/containers/WindTurbine.container.yaml @@ -21,14 +21,6 @@ properties: autoIncrement: false immutable: false name: windfarm - capacity: - type: - list: false - type: float64 - nullable: true - autoIncrement: false - immutable: false - name: capacity rotor: type: type: direct