From e857edffe4c8257d4614078bb33fcca4a267a1ad Mon Sep 17 00:00:00 2001 From: Manfredi Pistone <30775241+manfredipist@users.noreply.github.com> Date: Wed, 13 Nov 2024 12:53:39 +0100 Subject: [PATCH 1/6] fixed schemas --- dataModel.AAS/TimeSeries/ADOPTERS.yaml | 12 +- dataModel.AAS/TimeSeries/schema.json | 66 ++++----- dataModel.OPCUA/MachineTool/ADOPTERS.yaml | 12 +- dataModel.OPCUA/MachineTool/schema.json | 168 +++++++++++----------- 4 files changed, 129 insertions(+), 129 deletions(-) diff --git a/dataModel.AAS/TimeSeries/ADOPTERS.yaml b/dataModel.AAS/TimeSeries/ADOPTERS.yaml index 0c4396ceb..96f8c6744 100644 --- a/dataModel.AAS/TimeSeries/ADOPTERS.yaml +++ b/dataModel.AAS/TimeSeries/ADOPTERS.yaml @@ -1,10 +1,10 @@ description: This is a compilation list of the current adopters of the data model MachineTool of the Subject dataModel.OPCUA. All fields are non mandatory. More info at https://smart-data-models.github.io/data-models/templates/dataModel/CURRENT_ADOPTERS.yaml currentAdopters: - - adopter: - description: - mail: - organization: - project: + adopter: ARISE TEFs + description: Testing and Experimentation Facilities for ARISE EU Project + mail: manfredi.pistone@eng.it + organization: Engineering Ingegneria Informatica S.p.A. + project: ARISE(https://arise-middleware.eu/) comments: - startDate: \ No newline at end of file + startDate: December 2024 \ No newline at end of file diff --git a/dataModel.AAS/TimeSeries/schema.json b/dataModel.AAS/TimeSeries/schema.json index c24c3fe12..be465d6c7 100644 --- a/dataModel.AAS/TimeSeries/schema.json +++ b/dataModel.AAS/TimeSeries/schema.json @@ -25,108 +25,108 @@ }, "timeSeries": { "type": "object", - "description": "Property. ", + "description": "Property. Main object for TimeSeries model", "properties": { "segments": { "type": "array", - "description": "Property. ", + "description": "Property. List of time series segments", "items": { "type": "object", "properties": { "name": { "type": "string", - "description": "Property. " + "description": "Property. Name of the time series segment" }, "description": { "type": "string", - "description": "Property. " + "description": "Property. Description of the time series segment" }, "recordCount": { "type": "integer", - "description": "Property. " + "description": "Property. Indicates how many records are present in a segment" }, "startTime": { "type": "string", - "description": "Property. " + "description": "Property. Contains the first recorded timestamp of the time series segment" }, "endTime": { "type": "string", - "description": "Property. " + "description": "Property. Contains the last recorded timestamp of the time series segment" }, "duration": { "type": "string", - "description": "Property. " + "description": "Property. Period covered by the segment, represented according to ISO 8601" }, "samplingInterval": { "type": "integer", - "description": "Property. " + "description": "Property. The time period between two time series records" }, "samplingRate": { "type": "integer", - "description": "Property. " + "description": "Property. Defines the number of samples per second for a regular time series in Hz" }, "state": { "type": "integer", - "description": "Property. " + "description": "Property. State of the time series related to its progress" }, "lastUpdate": { "type": "string", - "description": "Property. " + "description": "Property. Time of the last chance" }, "externalSegment": { "type": "object", - "description": "Property. ", + "description": "Property. Reference to a file of data points in sequential order over a period of time", "properties": { "data": { "type": "string", - "description": "Property. " + "description": "Property. Sequence of data points in sequential order over a period of time " } } }, "linkedSegment": { "type": "object", - "description": "Property. ", + "description": "Property. Reference to an endpoint of data points in sequential order over a period of time", "properties": { "endpoint": { "type": "string", - "description": "Property. " + "description": "Property. Specifies a location of a resource on an API server through which time series can be requested " }, "query": { "type": "string", - "description": "Property. " + "description": "Property. Generic query component to read time series data from an API" } } }, "internalSegment": { "type": "object", - "description": "Property. ", + "description": "Property. Grouped sequence of data points in successive order over a specified period of time", "properties": { "records": { "type": "array", - "description": "Property. ", + "description": "Property. List of data points in successive order over a specified period of time", "items": { "type": "object", - "description": "Property. ", + "description": "Property. Items of the record", "properties": { "record00": { "type": "object", - "description": "Property. ", + "description": "Property. A time series record is unique by its ID within the time series and contains the timestamps and variable values referenced to the ID", "properties": { "time": { "type": "string", - "description": "Property. " + "description": "Property. Time of time series record" }, "sampleAccelerationX": { "type": "number", - "description": "Property. " + "description": "Property. Acceleration along the x-axis " }, "sampleAccelerationY": { "type": "number", - "description": "Property. " + "description": "Property. Acceleration along the y-axis" }, "sampleAccelerationZ": { "type": "number", - "description": "Property. " + "description": "Property. Acceleration along the z-axis" } } } @@ -140,35 +140,35 @@ }, "metadata": { "type": "object", - "description": "Property. ", + "description": "Property. A set of data describing and providing information about the time series", "properties": { "name": { "type": "string", - "description": "Property. " + "description": "Property. Meaningful name for labeling" }, "description": { "type": "string", - "description": "Property. " + "description": "Property. Short description of the time series" }, "record": { "type": "object", - "description": "Property. ", + "description": "Property. A time series record is unique by its ID within the time series and contains the timestamps and variable values referenced to the ID", "properties": { "time": { "type": "string", - "description": "Property. " + "description": "Property. Time of time series record" }, "sampleAccelerationX": { "type": "number", - "description": "Property. " + "description": "Property. Acceleration along the x-axis" }, "sampleAccelerationY": { "type": "number", - "description": "Property. " + "description": "Property. Acceleration along the y-axis" }, "sampleAccelerationZ": { "type": "number", - "description": "Property. " + "description": "Property. Acceleration along the z-axis" } } } diff --git a/dataModel.OPCUA/MachineTool/ADOPTERS.yaml b/dataModel.OPCUA/MachineTool/ADOPTERS.yaml index 0c4396ceb..96f8c6744 100644 --- a/dataModel.OPCUA/MachineTool/ADOPTERS.yaml +++ b/dataModel.OPCUA/MachineTool/ADOPTERS.yaml @@ -1,10 +1,10 @@ description: This is a compilation list of the current adopters of the data model MachineTool of the Subject dataModel.OPCUA. All fields are non mandatory. More info at https://smart-data-models.github.io/data-models/templates/dataModel/CURRENT_ADOPTERS.yaml currentAdopters: - - adopter: - description: - mail: - organization: - project: + adopter: ARISE TEFs + description: Testing and Experimentation Facilities for ARISE EU Project + mail: manfredi.pistone@eng.it + organization: Engineering Ingegneria Informatica S.p.A. + project: ARISE(https://arise-middleware.eu/) comments: - startDate: \ No newline at end of file + startDate: December 2024 \ No newline at end of file diff --git a/dataModel.OPCUA/MachineTool/schema.json b/dataModel.OPCUA/MachineTool/schema.json index 136080d4a..63c52a13f 100644 --- a/dataModel.OPCUA/MachineTool/schema.json +++ b/dataModel.OPCUA/MachineTool/schema.json @@ -25,39 +25,39 @@ }, "myMachine": { "type": "array", - "description": "Property. ", + "description": "Property. It represents the list of entire machine tool interface of the information model", "items": { "type": "object", - "description": "Property. ", + "description": "Property. It represents the entire machine tool interface of the information model", "properties": { "notification": { "type": "object", - "description": "Property. ", + "description": "Property. It is used to structure information given in the MachineTool. It groups the messages and alerts of the machine and contains the prognoses for the machining operation.", "properties": { "messages": { "type": "array", - "description": "Property. ", + "description": "Property. It is used to define the object sending events. These events are used for errors, warnings and messages.", "items": { "type": "object", - "description": "Property. ", + "description": "Property. It is used to define the object event. This event is used for errors, warnings and messages.", "properties": { "alertType": { "type": "object", - "description": "Property. ", + "description": "Property. It defines an alert type", "properties": { "errorCode": { "type": "string", - "description": "Property. " + "description": "Property. Identifies an error code" } } }, "notificationEventType": { "type": "object", - "description": "Property. ", + "description": "Property. Defines an Event Notification Type", "properties": { "identifier": { "type": "string", - "description": "Property. " + "description": "Property. Identifies an Event Notification Type" } } } @@ -66,24 +66,24 @@ }, "prognoses": { "type": "array", - "description": "Property. ", + "description": "Property. It contains a list of the current prognoses for machine operation. Reliability for any prognosis in the list will rely on the specific case and cannot be guaranteed to be precise.", "items": { "type": "object", - "description": "Property. ", + "description": "Property. It contains a prognosis for machine operation.", "properties": { "prognosisN": { "type": "object", - "description": "Property. ", + "description": "Property. It contains a prognosis N for machine operation.", "properties": { "predictedTime": { "type": "string", - "description": "Property. " + "description": "Property. It is used to indicate the point in time the predicted user interaction will become necessary. " } } }, "nodeVersion": { "type": "string", - "description": "Property. " + "description": "Property. Identifies a node version" } } } @@ -92,109 +92,109 @@ }, "production": { "type": "object", - "description": "Property. ", + "description": "Property. It is used to structure information given in the MachineTool. It groups the information about the production plan and the production statistics.", "properties": { "activeProgram": { "type": "object", - "description": "Property. ", + "description": "Property. It is used to represent programs that are currently running within the machine.", "properties": { "jobNodeId": { "type": "integer", - "description": "Property. " + "description": "Property. It contains the NodeId of the Production Object instance this program is used in." }, "jobIdentifier": { "type": "string", - "description": "Property. " + "description": "Property. It holds the same content as the Identifier Property of the Production Object instance this program is used in." }, "state": { "type": "integer", - "description": "Property. " + "description": "Property. It is inherited from the Production Program Type and override to be mandatory." } } }, "productionPlan": { "type": "array", - "description": "Property. ", + "description": "Property. It is a type used for structuring objects of Production Job Type in an ordered list structure. ", "items": { "type": "object", - "description": "Property. ", + "description": "Property. It provides aggregated production data for running a sequence to produce several parts after one preparation mounting.", "properties": { "customerOrderIdentifier": { "type": "string", - "description": "Property. " + "description": "Property. It is used to reference the customer order this job belongs to. This information often originates from an external system handling production organisation " }, "identifier": { "type": "string", - "description": "Property. " + "description": "Property. It is the identifier of the job " }, "orderIdentifier": { "type": "string", - "description": "Property. " + "description": "Property. It is used to reference a company internal order the job belongs to. This information often originates from an external system handling production organisation" }, "partsCompleted": { "type": "integer", - "description": "Property. " + "description": "Property. It indicates how many parts have been completed in the current job including all runs. This counter does not give any indication about the part quality. " }, "partSets": { "type": "array", - "description": "Property. ", + "description": "Property. It contains a list of Production Part Set Type nodes related to the job. It is a list of the part sets, which contain the parts produced in the current run of the job. ", "items": { "type": "object", - "description": "Property. ", + "description": "Property. It is used to group parts within a production job. It also contains information about the parts in the group.", "properties": { "partSetN": { "type": "object", - "description": "Property. ", + "description": "Property. It describes parts-N within a production job.", "properties": { "name": { "type": "string", - "description": "Property. " + "description": "Property. It is used to specify the type of parts in a group." }, "partsPlannedPerRun": { "type": "integer", - "description": "Property. " + "description": "Property. It indicates how many of the parts in this group are intended to be produced in one run of a job." }, "partsCompletedPerRun": { "type": "integer", - "description": "Property. " + "description": "Property. It indicates how many parts of this group have been completed in the current run of the job. This counter does not give any indication about the part quality." }, "partsPerRun": { "type": "array", - "description": "Property. ", + "description": "Property. It contains a list of the parts in the current run of the job", "items": { "type": "object", - "description": "Property. ", + "description": "Property. It represents a part. A part is the workpiece of the machine which is treated in the purpose of the machine. ", "properties": { "customerOrderIdentifier": { "type": "string", - "description": "Property. " + "description": "Property. It is used to reference the customer order this job belongs to. This information often originates from an external system handling production organisation" }, "name": { "type": "string", - "description": "Property. " + "description": "Property. It is used to name a part in production in a machine. This name can be specific to the part (e.g. “MBL30/PartNo32001”) or to the type of part " }, "identifier": { "type": "string", - "description": "Property. " + "description": "Property. It is used to distinguish and identify an individual part in production in a machine. It shall be unique." }, "partQuality": { "type": "integer", - "description": "Property. " + "description": "Property. It indicates the part quality" }, "processIrregularity": { "type": "integer", - "description": "Property. " + "description": "Property. It is used to tell if a process irregularity has been detected. A process irregularity might for example be the breakage of a tool, or exceeding a temperature limit on coolant." }, "state": { "type": "integer", - "description": "Property. " + "description": "Property. It indicates the current state in manufacturing the part is in and the transition used to get into this state. " } } } }, "containsMixedParts": { "type": "boolean", - "description": "Property. " + "description": "Property. It indicates if the parts in a Production Part Set may be different from each other (True) or if they are parts of the same type (False)." } } } @@ -203,51 +203,51 @@ }, "partsGood": { "type": "integer", - "description": "Property. " + "description": "Property. It indicates how many good parts have been completed in the current job including all runs." }, "productionPrograms": { "type": "object", - "description": "Property. ", + "description": "Property. It contains a list of Production Program nodes representing the programs used in the job. ", "properties": { "name": { "type": "string", - "description": "Property. " + "description": "Property. It is used to distinguish and identify programs on a machine." }, "numberInList": { "type": "integer", - "description": "Property. " + "description": "Property. It is used to enumerate Production Program instances used as list elements. This index shall be 0 for the first list element and increase by one for each subsequent list element. If nodes are deleted from the list or inserted into the list, the NumberInList has to be adjusted for all following nodes in the list, such that the NumberInList elements always form a sequential series of numbers." }, "state": { "type": "integer", - "description": "Property. " + "description": "Property. It indicates the current state the job is in and the transition used to get into this state. " } } }, "runsCompleted": { "type": "integer", - "description": "Property. " + "description": "Property. It is a counter that increases after each completed run of the job. This means, the run was not aborted and finished regularly. This counter does not give any indication about the part quality." }, "runsPlanned": { "type": "integer", - "description": "Property. " + "description": "Property. It indicates how many times a job should be executed. " }, "state": { "type": "integer", - "description": "Property. " + "description": "Property. It indicates the current state the job is in and the transition used to get into this state." } } } }, "statistics": { "type": "array", - "description": "Property. ", + "description": "Property. It is the object that contains statistics information related to production. ", "items": { "type": "object", - "description": "Property. ", + "description": "Property. Item statistic", "properties": { "partsProducedInLifetime": { "type": "integer", - "description": "Property. " + "description": "Property. It is the counter for the total number of produced parts during the machine’s lifetime. The exact way this number is acquired may differ between different machines. " } } } @@ -256,45 +256,45 @@ }, "identification": { "type": "object", - "description": "Property. ", + "description": "Property. It describes the Machine Tools information model holds static data which shall uniquely identify a machine tool among a pool of the machine tool operating entity.", "properties": { "softwareIdentification": { "type": "object", - "description": "Property. ", + "description": "Property. It contains the machine tool’s software identification information. It allows to add multiple software items, e.g. one for each of PLC, NC and HMI.", "properties": { "machineSoftware": { "type": "object", - "description": "Property. ", + "description": "Property. It identifies a machine software", "properties": { "softwareRevision": { "type": "string", - "description": "Property. " + "description": "Property. It provides a string representation of the version or revision level of the software component, the software/firmware of a hardware component. Examples are: “PLL01 1.10.0.3”, “V05.01.01.15”, “3.1 R1293”, “70.0.1”" }, "identifier": { "type": "string", - "description": "Property. " + "description": "Property. It provides an identifier to distinguish the software component." }, "manufacturer": { "type": "string", - "description": "Property. " + "description": "Property. It refers to the manufacturer/producer of the software." } } }, "hmi": { "type": "object", - "description": "Property. ", + "description": "Property.It provides a description of the hmi ", "properties": { "softwareRevision": { "type": "string", - "description": "Property. " + "description": "Property. It provides a string representation of the version or revision level of the software component, the software/firmware of a hardware component. Examples are: “PLL01 1.10.0.3”, “V05.01.01.15”, “3.1 R1293”, “70.0.1” " }, "identifier": { "type": "string", - "description": "Property. " + "description": "Property. It provides an identifier to distinguish the software component. " }, "manufacturer": { "type": "string", - "description": "Property. " + "description": "Property. It refers to the manufacturer/producer of the software. " } } } @@ -312,38 +312,38 @@ }, "equipment": { "type": "object", - "description": "Property. ", + "description": "Property. It describes elements that are an inseparable part of the machine", "properties": { "tools": { "type": "array", - "description": "Property. ", + "description": "Property. It provides here shall contain the tools that are present in the machine and the magazines the machine has automated access to. ", "items": { "type": "object", - "description": "Property. ", + "description": "Property. It contains the description of the item", "properties": { "toolN": { "type": "object", - "description": "Property. ", + "description": "Property.It Identifies the tool-n", "properties": { "name": { "type": "string", - "description": "Property. " + "description": "Property. It is used to name a tool to ease recognition. " }, "identifier": { "type": "string", - "description": "Property. " + "description": "Property. It is a unique identifier for a tool. " }, "location": { "type": "object", - "description": "Property. ", + "description": "Property. It indicates where the tool is located, ", "properties": { "name": { "type": "string", - "description": "Property. " + "description": "Property. It specifies a name for the tool’s location (e.g. the tool magazine)" }, "placeNumber": { "type": "integer", - "description": "Property. " + "description": "Property. It identifies the place number at this location" } } } @@ -351,7 +351,7 @@ }, "nodeVersion": { "type": "string", - "description": "Property. " + "description": "Property. It identifies the version node" } } } @@ -360,58 +360,58 @@ }, "monitoring": { "type": "object", - "description": "Property. ", + "description": "Property. It contains the monitoring information of the machine tool and its subsystems.", "properties": { "monitoredElementN": { "type": "object", - "description": "Property. ", + "description": "Property. It describers the element-n monitored", "properties": { "name": { "type": "string", - "description": "Property. " + "description": "Property. It refers to a name of the element." } } }, "machineTool": { "type": "object", - "description": "Property. ", + "description": "Property. It provides overall monitoring information of the machine tool.", "properties": { "feedOverride": { "type": "integer", - "description": "Property. " + "description": "Property.It is the combined actual feed override value that is effective for the manufacturing program of the machine tool." }, "powerOnDuration": { "type": "integer", - "description": "Property. " + "description": "Property. It is the duration the machine has been powered, meaning all systems have line voltage. It is counted in full hours. This value only increases during the lifetime of the machine and is not reset when the machine is power cycled." }, "operationMode": { "type": "integer", - "description": "Property. " + "description": "Property.It contains a Machine Operation Mode value as defined. It is an enum derived from the MO modes of machinery functional safety standards. For a machine adhering to such a standard, this property shall show the respective mode. For a machine not adhering to such a standard, this property shall be filled with the appropriate mode available from the Machine Operation Mode Enum. " }, "isWarmUp": { "type": "boolean", - "description": "Property. " + "description": "Property. It being True indicates if the machine tool is performing a warmup task. A warmup is not used for production, it is the mode used to reach a stable operating point for the machine tool. An example is reaching the optimal operating temperature. This might be indicated by a hardware switch on the machine tool, a special control command, a special production program (referenced by program name) or otherwise." } } }, "stacklight": { "type": "array", - "description": "Property. ", + "description": "Property. It contains the information about a stacklight’s composition and status.", "items": { "type": "object", - "description": "Property. ", + "description": "Property. It describes one item ", "properties": { "signalOn": { "type": "boolean", - "description": "Property. " + "description": "Property. It specifies if the signal is On" }, "signalColor": { "type": "integer", - "description": "Property. " + "description": "Property. It specifies the color of the signal" }, "signalMode": { "type": "integer", - "description": "Property. " + "description": "Property. It specifies the mode of the signal" } } } From 244754c60beb008d3e1e89d24b8eab097ef208bb Mon Sep 17 00:00:00 2001 From: Smart Data Models Date: Fri, 27 Dec 2024 17:33:45 +0100 Subject: [PATCH 2/6] Zero Emissions buildings renamed directory --- {ZBE => ZEB}/CONTRIBUTORS.yaml | 0 {ZBE => ZEB}/Column/ADOPTERS.yaml | 0 {ZBE => ZEB}/Column/examples/example-normalized.json | 0 {ZBE => ZEB}/Column/examples/example-normalized.jsonld | 0 {ZBE => ZEB}/Column/examples/example.json | 0 {ZBE => ZEB}/Column/examples/example.jsonld | 0 {ZBE => ZEB}/Column/notes.yaml | 0 {ZBE => ZEB}/Column/schema.json | 0 {ZBE => ZEB}/Door/ADOPTERS.yaml | 0 {ZBE => ZEB}/Door/examples/example-normalized.json | 0 {ZBE => ZEB}/Door/examples/example-normalized.jsonld | 0 {ZBE => ZEB}/Door/examples/example.json | 0 {ZBE => ZEB}/Door/examples/example.jsonld | 0 {ZBE => ZEB}/Door/notes.yaml | 0 {ZBE => ZEB}/Door/schema.json | 0 {ZBE => ZEB}/Glass/ADOPTERS.yaml | 0 {ZBE => ZEB}/Glass/examples/example-normalized.json | 0 {ZBE => ZEB}/Glass/examples/example-normalized.jsonld | 0 {ZBE => ZEB}/Glass/examples/example.json | 0 {ZBE => ZEB}/Glass/examples/example.jsonld | 0 {ZBE => ZEB}/Glass/notes.yaml | 0 {ZBE => ZEB}/Glass/schema.json | 0 {ZBE => ZEB}/Material/ADOPTERS.yaml | 0 {ZBE => ZEB}/Material/examples/example-normalized.json | 0 {ZBE => ZEB}/Material/examples/example-normalized.jsonld | 0 {ZBE => ZEB}/Material/examples/example.json | 0 {ZBE => ZEB}/Material/examples/example.jsonld | 0 {ZBE => ZEB}/Material/notes.yaml | 0 {ZBE => ZEB}/Material/schema.json | 0 {ZBE => ZEB}/MaterialLayer/ADOPTERS.yaml | 0 {ZBE => ZEB}/MaterialLayer/examples/example-normalized.json | 0 {ZBE => ZEB}/MaterialLayer/examples/example-normalized.jsonld | 0 {ZBE => ZEB}/MaterialLayer/examples/example.json | 0 {ZBE => ZEB}/MaterialLayer/examples/example.jsonld | 0 {ZBE => ZEB}/MaterialLayer/notes.yaml | 0 {ZBE => ZEB}/MaterialLayer/schema.json | 0 {ZBE => ZEB}/Opening/ADOPTERS.yaml | 0 {ZBE => ZEB}/Opening/examples/example-normalized.json | 0 {ZBE => ZEB}/Opening/examples/example-normalized.jsonld | 0 {ZBE => ZEB}/Opening/examples/example.json | 0 {ZBE => ZEB}/Opening/examples/example.jsonld | 0 {ZBE => ZEB}/Opening/notes.yaml | 0 {ZBE => ZEB}/Opening/schema.json | 0 {ZBE => ZEB}/README.md | 0 {ZBE => ZEB}/Slab/ADOPTERS.yaml | 0 {ZBE => ZEB}/Slab/examples/example-normalized.json | 0 {ZBE => ZEB}/Slab/examples/example-normalized.jsonld | 0 {ZBE => ZEB}/Slab/examples/example.json | 0 {ZBE => ZEB}/Slab/examples/example.jsonld | 0 {ZBE => ZEB}/Slab/notes.yaml | 0 {ZBE => ZEB}/Slab/schema.json | 0 {ZBE => ZEB}/Stair/ADOPTERS.yaml | 0 {ZBE => ZEB}/Stair/examples/example-normalized.json | 0 {ZBE => ZEB}/Stair/examples/example-normalized.jsonld | 0 {ZBE => ZEB}/Stair/examples/example.json | 0 {ZBE => ZEB}/Stair/examples/example.jsonld | 0 {ZBE => ZEB}/Stair/notes.yaml | 0 {ZBE => ZEB}/Stair/schema.json | 0 {ZBE => ZEB}/Wall/ADOPTERS.yaml | 0 {ZBE => ZEB}/Wall/examples/example-normalized.json | 0 {ZBE => ZEB}/Wall/examples/example-normalized.jsonld | 0 {ZBE => ZEB}/Wall/examples/example.json | 0 {ZBE => ZEB}/Wall/examples/example.jsonld | 0 {ZBE => ZEB}/Wall/notes.yaml | 0 {ZBE => ZEB}/Wall/schema.json | 0 {ZBE => ZEB}/Window/ADOPTERS.yaml | 0 {ZBE => ZEB}/Window/examples/example-normalized.json | 0 {ZBE => ZEB}/Window/examples/example-normalized.jsonld | 0 {ZBE => ZEB}/Window/examples/example.json | 0 {ZBE => ZEB}/Window/examples/example.jsonld | 0 {ZBE => ZEB}/Window/notes.yaml | 0 {ZBE => ZEB}/Window/schema.json | 0 {ZBE => ZEB}/notes.yaml | 0 73 files changed, 0 insertions(+), 0 deletions(-) rename {ZBE => ZEB}/CONTRIBUTORS.yaml (100%) rename {ZBE => ZEB}/Column/ADOPTERS.yaml (100%) rename {ZBE => ZEB}/Column/examples/example-normalized.json (100%) rename {ZBE => ZEB}/Column/examples/example-normalized.jsonld (100%) rename {ZBE => ZEB}/Column/examples/example.json (100%) rename {ZBE => ZEB}/Column/examples/example.jsonld (100%) rename {ZBE => ZEB}/Column/notes.yaml (100%) rename {ZBE => ZEB}/Column/schema.json (100%) rename {ZBE => ZEB}/Door/ADOPTERS.yaml (100%) rename {ZBE => ZEB}/Door/examples/example-normalized.json (100%) rename {ZBE => ZEB}/Door/examples/example-normalized.jsonld (100%) rename {ZBE => ZEB}/Door/examples/example.json (100%) rename {ZBE => ZEB}/Door/examples/example.jsonld (100%) rename {ZBE => ZEB}/Door/notes.yaml (100%) rename {ZBE => ZEB}/Door/schema.json (100%) rename {ZBE => ZEB}/Glass/ADOPTERS.yaml (100%) rename {ZBE => ZEB}/Glass/examples/example-normalized.json (100%) rename {ZBE => ZEB}/Glass/examples/example-normalized.jsonld (100%) rename {ZBE => ZEB}/Glass/examples/example.json (100%) rename {ZBE => ZEB}/Glass/examples/example.jsonld (100%) rename {ZBE => ZEB}/Glass/notes.yaml (100%) rename {ZBE => ZEB}/Glass/schema.json (100%) rename {ZBE => ZEB}/Material/ADOPTERS.yaml (100%) rename {ZBE => ZEB}/Material/examples/example-normalized.json (100%) rename {ZBE => ZEB}/Material/examples/example-normalized.jsonld (100%) rename {ZBE => ZEB}/Material/examples/example.json (100%) rename {ZBE => ZEB}/Material/examples/example.jsonld (100%) rename {ZBE => ZEB}/Material/notes.yaml (100%) rename {ZBE => ZEB}/Material/schema.json (100%) rename {ZBE => ZEB}/MaterialLayer/ADOPTERS.yaml (100%) rename {ZBE => ZEB}/MaterialLayer/examples/example-normalized.json (100%) rename {ZBE => ZEB}/MaterialLayer/examples/example-normalized.jsonld (100%) rename {ZBE => ZEB}/MaterialLayer/examples/example.json (100%) rename {ZBE => ZEB}/MaterialLayer/examples/example.jsonld (100%) rename {ZBE => ZEB}/MaterialLayer/notes.yaml (100%) rename {ZBE => ZEB}/MaterialLayer/schema.json (100%) rename {ZBE => ZEB}/Opening/ADOPTERS.yaml (100%) rename {ZBE => ZEB}/Opening/examples/example-normalized.json (100%) rename {ZBE => ZEB}/Opening/examples/example-normalized.jsonld (100%) rename {ZBE => ZEB}/Opening/examples/example.json (100%) rename {ZBE => ZEB}/Opening/examples/example.jsonld (100%) rename {ZBE => ZEB}/Opening/notes.yaml (100%) rename {ZBE => ZEB}/Opening/schema.json (100%) rename {ZBE => ZEB}/README.md (100%) rename {ZBE => ZEB}/Slab/ADOPTERS.yaml (100%) rename {ZBE => ZEB}/Slab/examples/example-normalized.json (100%) rename {ZBE => ZEB}/Slab/examples/example-normalized.jsonld (100%) rename {ZBE => ZEB}/Slab/examples/example.json (100%) rename {ZBE => ZEB}/Slab/examples/example.jsonld (100%) rename {ZBE => ZEB}/Slab/notes.yaml (100%) rename {ZBE => ZEB}/Slab/schema.json (100%) rename {ZBE => ZEB}/Stair/ADOPTERS.yaml (100%) rename {ZBE => ZEB}/Stair/examples/example-normalized.json (100%) rename {ZBE => ZEB}/Stair/examples/example-normalized.jsonld (100%) rename {ZBE => ZEB}/Stair/examples/example.json (100%) rename {ZBE => ZEB}/Stair/examples/example.jsonld (100%) rename {ZBE => ZEB}/Stair/notes.yaml (100%) rename {ZBE => ZEB}/Stair/schema.json (100%) rename {ZBE => ZEB}/Wall/ADOPTERS.yaml (100%) rename {ZBE => ZEB}/Wall/examples/example-normalized.json (100%) rename {ZBE => ZEB}/Wall/examples/example-normalized.jsonld (100%) rename {ZBE => ZEB}/Wall/examples/example.json (100%) rename {ZBE => ZEB}/Wall/examples/example.jsonld (100%) rename {ZBE => ZEB}/Wall/notes.yaml (100%) rename {ZBE => ZEB}/Wall/schema.json (100%) rename {ZBE => ZEB}/Window/ADOPTERS.yaml (100%) rename {ZBE => ZEB}/Window/examples/example-normalized.json (100%) rename {ZBE => ZEB}/Window/examples/example-normalized.jsonld (100%) rename {ZBE => ZEB}/Window/examples/example.json (100%) rename {ZBE => ZEB}/Window/examples/example.jsonld (100%) rename {ZBE => ZEB}/Window/notes.yaml (100%) rename {ZBE => ZEB}/Window/schema.json (100%) rename {ZBE => ZEB}/notes.yaml (100%) diff --git a/ZBE/CONTRIBUTORS.yaml b/ZEB/CONTRIBUTORS.yaml similarity index 100% rename from ZBE/CONTRIBUTORS.yaml rename to ZEB/CONTRIBUTORS.yaml diff --git a/ZBE/Column/ADOPTERS.yaml b/ZEB/Column/ADOPTERS.yaml similarity index 100% rename from ZBE/Column/ADOPTERS.yaml rename to ZEB/Column/ADOPTERS.yaml diff --git a/ZBE/Column/examples/example-normalized.json b/ZEB/Column/examples/example-normalized.json similarity index 100% rename from ZBE/Column/examples/example-normalized.json rename to ZEB/Column/examples/example-normalized.json diff --git a/ZBE/Column/examples/example-normalized.jsonld b/ZEB/Column/examples/example-normalized.jsonld similarity index 100% rename from ZBE/Column/examples/example-normalized.jsonld rename to ZEB/Column/examples/example-normalized.jsonld diff --git a/ZBE/Column/examples/example.json b/ZEB/Column/examples/example.json similarity index 100% rename from ZBE/Column/examples/example.json rename to ZEB/Column/examples/example.json diff --git a/ZBE/Column/examples/example.jsonld b/ZEB/Column/examples/example.jsonld similarity index 100% rename from ZBE/Column/examples/example.jsonld rename to ZEB/Column/examples/example.jsonld diff --git a/ZBE/Column/notes.yaml b/ZEB/Column/notes.yaml similarity index 100% rename from ZBE/Column/notes.yaml rename to ZEB/Column/notes.yaml diff --git a/ZBE/Column/schema.json b/ZEB/Column/schema.json similarity index 100% rename from ZBE/Column/schema.json rename to ZEB/Column/schema.json diff --git a/ZBE/Door/ADOPTERS.yaml b/ZEB/Door/ADOPTERS.yaml similarity index 100% rename from ZBE/Door/ADOPTERS.yaml rename to ZEB/Door/ADOPTERS.yaml diff --git a/ZBE/Door/examples/example-normalized.json b/ZEB/Door/examples/example-normalized.json similarity index 100% rename from ZBE/Door/examples/example-normalized.json rename to ZEB/Door/examples/example-normalized.json diff --git a/ZBE/Door/examples/example-normalized.jsonld b/ZEB/Door/examples/example-normalized.jsonld similarity index 100% rename from ZBE/Door/examples/example-normalized.jsonld rename to ZEB/Door/examples/example-normalized.jsonld diff --git a/ZBE/Door/examples/example.json b/ZEB/Door/examples/example.json similarity index 100% rename from ZBE/Door/examples/example.json rename to ZEB/Door/examples/example.json diff --git a/ZBE/Door/examples/example.jsonld b/ZEB/Door/examples/example.jsonld similarity index 100% rename from ZBE/Door/examples/example.jsonld rename to ZEB/Door/examples/example.jsonld diff --git a/ZBE/Door/notes.yaml b/ZEB/Door/notes.yaml similarity index 100% rename from ZBE/Door/notes.yaml rename to ZEB/Door/notes.yaml diff --git a/ZBE/Door/schema.json b/ZEB/Door/schema.json similarity index 100% rename from ZBE/Door/schema.json rename to ZEB/Door/schema.json diff --git a/ZBE/Glass/ADOPTERS.yaml b/ZEB/Glass/ADOPTERS.yaml similarity index 100% rename from ZBE/Glass/ADOPTERS.yaml rename to ZEB/Glass/ADOPTERS.yaml diff --git a/ZBE/Glass/examples/example-normalized.json b/ZEB/Glass/examples/example-normalized.json similarity index 100% rename from ZBE/Glass/examples/example-normalized.json rename to ZEB/Glass/examples/example-normalized.json diff --git a/ZBE/Glass/examples/example-normalized.jsonld b/ZEB/Glass/examples/example-normalized.jsonld similarity index 100% rename from ZBE/Glass/examples/example-normalized.jsonld rename to ZEB/Glass/examples/example-normalized.jsonld diff --git a/ZBE/Glass/examples/example.json b/ZEB/Glass/examples/example.json similarity index 100% rename from ZBE/Glass/examples/example.json rename to ZEB/Glass/examples/example.json diff --git a/ZBE/Glass/examples/example.jsonld b/ZEB/Glass/examples/example.jsonld similarity index 100% rename from ZBE/Glass/examples/example.jsonld rename to ZEB/Glass/examples/example.jsonld diff --git a/ZBE/Glass/notes.yaml b/ZEB/Glass/notes.yaml similarity index 100% rename from ZBE/Glass/notes.yaml rename to ZEB/Glass/notes.yaml diff --git a/ZBE/Glass/schema.json b/ZEB/Glass/schema.json similarity index 100% rename from ZBE/Glass/schema.json rename to ZEB/Glass/schema.json diff --git a/ZBE/Material/ADOPTERS.yaml b/ZEB/Material/ADOPTERS.yaml similarity index 100% rename from ZBE/Material/ADOPTERS.yaml rename to ZEB/Material/ADOPTERS.yaml diff --git a/ZBE/Material/examples/example-normalized.json b/ZEB/Material/examples/example-normalized.json similarity index 100% rename from ZBE/Material/examples/example-normalized.json rename to ZEB/Material/examples/example-normalized.json diff --git a/ZBE/Material/examples/example-normalized.jsonld b/ZEB/Material/examples/example-normalized.jsonld similarity index 100% rename from ZBE/Material/examples/example-normalized.jsonld rename to ZEB/Material/examples/example-normalized.jsonld diff --git a/ZBE/Material/examples/example.json b/ZEB/Material/examples/example.json similarity index 100% rename from ZBE/Material/examples/example.json rename to ZEB/Material/examples/example.json diff --git a/ZBE/Material/examples/example.jsonld b/ZEB/Material/examples/example.jsonld similarity index 100% rename from ZBE/Material/examples/example.jsonld rename to ZEB/Material/examples/example.jsonld diff --git a/ZBE/Material/notes.yaml b/ZEB/Material/notes.yaml similarity index 100% rename from ZBE/Material/notes.yaml rename to ZEB/Material/notes.yaml diff --git a/ZBE/Material/schema.json b/ZEB/Material/schema.json similarity index 100% rename from ZBE/Material/schema.json rename to ZEB/Material/schema.json diff --git a/ZBE/MaterialLayer/ADOPTERS.yaml b/ZEB/MaterialLayer/ADOPTERS.yaml similarity index 100% rename from ZBE/MaterialLayer/ADOPTERS.yaml rename to ZEB/MaterialLayer/ADOPTERS.yaml diff --git a/ZBE/MaterialLayer/examples/example-normalized.json b/ZEB/MaterialLayer/examples/example-normalized.json similarity index 100% rename from ZBE/MaterialLayer/examples/example-normalized.json rename to ZEB/MaterialLayer/examples/example-normalized.json diff --git a/ZBE/MaterialLayer/examples/example-normalized.jsonld b/ZEB/MaterialLayer/examples/example-normalized.jsonld similarity index 100% rename from ZBE/MaterialLayer/examples/example-normalized.jsonld rename to ZEB/MaterialLayer/examples/example-normalized.jsonld diff --git a/ZBE/MaterialLayer/examples/example.json b/ZEB/MaterialLayer/examples/example.json similarity index 100% rename from ZBE/MaterialLayer/examples/example.json rename to ZEB/MaterialLayer/examples/example.json diff --git a/ZBE/MaterialLayer/examples/example.jsonld b/ZEB/MaterialLayer/examples/example.jsonld similarity index 100% rename from ZBE/MaterialLayer/examples/example.jsonld rename to ZEB/MaterialLayer/examples/example.jsonld diff --git a/ZBE/MaterialLayer/notes.yaml b/ZEB/MaterialLayer/notes.yaml similarity index 100% rename from ZBE/MaterialLayer/notes.yaml rename to ZEB/MaterialLayer/notes.yaml diff --git a/ZBE/MaterialLayer/schema.json b/ZEB/MaterialLayer/schema.json similarity index 100% rename from ZBE/MaterialLayer/schema.json rename to ZEB/MaterialLayer/schema.json diff --git a/ZBE/Opening/ADOPTERS.yaml b/ZEB/Opening/ADOPTERS.yaml similarity index 100% rename from ZBE/Opening/ADOPTERS.yaml rename to ZEB/Opening/ADOPTERS.yaml diff --git a/ZBE/Opening/examples/example-normalized.json b/ZEB/Opening/examples/example-normalized.json similarity index 100% rename from ZBE/Opening/examples/example-normalized.json rename to ZEB/Opening/examples/example-normalized.json diff --git a/ZBE/Opening/examples/example-normalized.jsonld b/ZEB/Opening/examples/example-normalized.jsonld similarity index 100% rename from ZBE/Opening/examples/example-normalized.jsonld rename to ZEB/Opening/examples/example-normalized.jsonld diff --git a/ZBE/Opening/examples/example.json b/ZEB/Opening/examples/example.json similarity index 100% rename from ZBE/Opening/examples/example.json rename to ZEB/Opening/examples/example.json diff --git a/ZBE/Opening/examples/example.jsonld b/ZEB/Opening/examples/example.jsonld similarity index 100% rename from ZBE/Opening/examples/example.jsonld rename to ZEB/Opening/examples/example.jsonld diff --git a/ZBE/Opening/notes.yaml b/ZEB/Opening/notes.yaml similarity index 100% rename from ZBE/Opening/notes.yaml rename to ZEB/Opening/notes.yaml diff --git a/ZBE/Opening/schema.json b/ZEB/Opening/schema.json similarity index 100% rename from ZBE/Opening/schema.json rename to ZEB/Opening/schema.json diff --git a/ZBE/README.md b/ZEB/README.md similarity index 100% rename from ZBE/README.md rename to ZEB/README.md diff --git a/ZBE/Slab/ADOPTERS.yaml b/ZEB/Slab/ADOPTERS.yaml similarity index 100% rename from ZBE/Slab/ADOPTERS.yaml rename to ZEB/Slab/ADOPTERS.yaml diff --git a/ZBE/Slab/examples/example-normalized.json b/ZEB/Slab/examples/example-normalized.json similarity index 100% rename from ZBE/Slab/examples/example-normalized.json rename to ZEB/Slab/examples/example-normalized.json diff --git a/ZBE/Slab/examples/example-normalized.jsonld b/ZEB/Slab/examples/example-normalized.jsonld similarity index 100% rename from ZBE/Slab/examples/example-normalized.jsonld rename to ZEB/Slab/examples/example-normalized.jsonld diff --git a/ZBE/Slab/examples/example.json b/ZEB/Slab/examples/example.json similarity index 100% rename from ZBE/Slab/examples/example.json rename to ZEB/Slab/examples/example.json diff --git a/ZBE/Slab/examples/example.jsonld b/ZEB/Slab/examples/example.jsonld similarity index 100% rename from ZBE/Slab/examples/example.jsonld rename to ZEB/Slab/examples/example.jsonld diff --git a/ZBE/Slab/notes.yaml b/ZEB/Slab/notes.yaml similarity index 100% rename from ZBE/Slab/notes.yaml rename to ZEB/Slab/notes.yaml diff --git a/ZBE/Slab/schema.json b/ZEB/Slab/schema.json similarity index 100% rename from ZBE/Slab/schema.json rename to ZEB/Slab/schema.json diff --git a/ZBE/Stair/ADOPTERS.yaml b/ZEB/Stair/ADOPTERS.yaml similarity index 100% rename from ZBE/Stair/ADOPTERS.yaml rename to ZEB/Stair/ADOPTERS.yaml diff --git a/ZBE/Stair/examples/example-normalized.json b/ZEB/Stair/examples/example-normalized.json similarity index 100% rename from ZBE/Stair/examples/example-normalized.json rename to ZEB/Stair/examples/example-normalized.json diff --git a/ZBE/Stair/examples/example-normalized.jsonld b/ZEB/Stair/examples/example-normalized.jsonld similarity index 100% rename from ZBE/Stair/examples/example-normalized.jsonld rename to ZEB/Stair/examples/example-normalized.jsonld diff --git a/ZBE/Stair/examples/example.json b/ZEB/Stair/examples/example.json similarity index 100% rename from ZBE/Stair/examples/example.json rename to ZEB/Stair/examples/example.json diff --git a/ZBE/Stair/examples/example.jsonld b/ZEB/Stair/examples/example.jsonld similarity index 100% rename from ZBE/Stair/examples/example.jsonld rename to ZEB/Stair/examples/example.jsonld diff --git a/ZBE/Stair/notes.yaml b/ZEB/Stair/notes.yaml similarity index 100% rename from ZBE/Stair/notes.yaml rename to ZEB/Stair/notes.yaml diff --git a/ZBE/Stair/schema.json b/ZEB/Stair/schema.json similarity index 100% rename from ZBE/Stair/schema.json rename to ZEB/Stair/schema.json diff --git a/ZBE/Wall/ADOPTERS.yaml b/ZEB/Wall/ADOPTERS.yaml similarity index 100% rename from ZBE/Wall/ADOPTERS.yaml rename to ZEB/Wall/ADOPTERS.yaml diff --git a/ZBE/Wall/examples/example-normalized.json b/ZEB/Wall/examples/example-normalized.json similarity index 100% rename from ZBE/Wall/examples/example-normalized.json rename to ZEB/Wall/examples/example-normalized.json diff --git a/ZBE/Wall/examples/example-normalized.jsonld b/ZEB/Wall/examples/example-normalized.jsonld similarity index 100% rename from ZBE/Wall/examples/example-normalized.jsonld rename to ZEB/Wall/examples/example-normalized.jsonld diff --git a/ZBE/Wall/examples/example.json b/ZEB/Wall/examples/example.json similarity index 100% rename from ZBE/Wall/examples/example.json rename to ZEB/Wall/examples/example.json diff --git a/ZBE/Wall/examples/example.jsonld b/ZEB/Wall/examples/example.jsonld similarity index 100% rename from ZBE/Wall/examples/example.jsonld rename to ZEB/Wall/examples/example.jsonld diff --git a/ZBE/Wall/notes.yaml b/ZEB/Wall/notes.yaml similarity index 100% rename from ZBE/Wall/notes.yaml rename to ZEB/Wall/notes.yaml diff --git a/ZBE/Wall/schema.json b/ZEB/Wall/schema.json similarity index 100% rename from ZBE/Wall/schema.json rename to ZEB/Wall/schema.json diff --git a/ZBE/Window/ADOPTERS.yaml b/ZEB/Window/ADOPTERS.yaml similarity index 100% rename from ZBE/Window/ADOPTERS.yaml rename to ZEB/Window/ADOPTERS.yaml diff --git a/ZBE/Window/examples/example-normalized.json b/ZEB/Window/examples/example-normalized.json similarity index 100% rename from ZBE/Window/examples/example-normalized.json rename to ZEB/Window/examples/example-normalized.json diff --git a/ZBE/Window/examples/example-normalized.jsonld b/ZEB/Window/examples/example-normalized.jsonld similarity index 100% rename from ZBE/Window/examples/example-normalized.jsonld rename to ZEB/Window/examples/example-normalized.jsonld diff --git a/ZBE/Window/examples/example.json b/ZEB/Window/examples/example.json similarity index 100% rename from ZBE/Window/examples/example.json rename to ZEB/Window/examples/example.json diff --git a/ZBE/Window/examples/example.jsonld b/ZEB/Window/examples/example.jsonld similarity index 100% rename from ZBE/Window/examples/example.jsonld rename to ZEB/Window/examples/example.jsonld diff --git a/ZBE/Window/notes.yaml b/ZEB/Window/notes.yaml similarity index 100% rename from ZBE/Window/notes.yaml rename to ZEB/Window/notes.yaml diff --git a/ZBE/Window/schema.json b/ZEB/Window/schema.json similarity index 100% rename from ZBE/Window/schema.json rename to ZEB/Window/schema.json diff --git a/ZBE/notes.yaml b/ZEB/notes.yaml similarity index 100% rename from ZBE/notes.yaml rename to ZEB/notes.yaml From 27033c738520da0b52c487dba08f65b8b88b7ce6 Mon Sep 17 00:00:00 2001 From: Alberto Abella Date: Thu, 16 Jan 2025 11:56:38 +0100 Subject: [PATCH 3/6] Update example-normalized.json error in type1 --- dataModel.AAS/TimeSeries/examples/example-normalized.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dataModel.AAS/TimeSeries/examples/example-normalized.json b/dataModel.AAS/TimeSeries/examples/example-normalized.json index 48002620b..27c154eaf 100644 --- a/dataModel.AAS/TimeSeries/examples/example-normalized.json +++ b/dataModel.AAS/TimeSeries/examples/example-normalized.json @@ -1,6 +1,6 @@ { "id": "TimeSeriesData", - "type": "TimeSeriesData", + "type": "TimeSeries", "timeSeries": { "type": "StructuredValue", "value": { From bd332a04444cf9b41b0c0487497ae3f002d440a1 Mon Sep 17 00:00:00 2001 From: Alberto Abella Date: Thu, 16 Jan 2025 11:56:59 +0100 Subject: [PATCH 4/6] Update example-normalized.jsonld error in type --- dataModel.AAS/TimeSeries/examples/example-normalized.jsonld | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dataModel.AAS/TimeSeries/examples/example-normalized.jsonld b/dataModel.AAS/TimeSeries/examples/example-normalized.jsonld index 8002a7838..50fb133a3 100644 --- a/dataModel.AAS/TimeSeries/examples/example-normalized.jsonld +++ b/dataModel.AAS/TimeSeries/examples/example-normalized.jsonld @@ -1,6 +1,6 @@ { "id": "urn:ngsi-ld:TimeSeriesData:TimeSeriesData", - "type": "TimeSeriesData", + "type": "TimeSeries", "timeSeries": { "type": "Property", "value": { From dba744961caa6b481a7a2e50e902927bba6069b4 Mon Sep 17 00:00:00 2001 From: Alberto Abella Date: Thu, 16 Jan 2025 11:57:14 +0100 Subject: [PATCH 5/6] Update example.json error in type --- dataModel.AAS/TimeSeries/examples/example.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dataModel.AAS/TimeSeries/examples/example.json b/dataModel.AAS/TimeSeries/examples/example.json index 9e13ccc0c..1fb351262 100644 --- a/dataModel.AAS/TimeSeries/examples/example.json +++ b/dataModel.AAS/TimeSeries/examples/example.json @@ -1,6 +1,6 @@ { "id": "TimeSeriesData", - "type": "TimeSeriesData", + "type": "TimeSeries", "timeSeries": { "segments": [ { From df5728c8ccb68f8414abff3be3e5aab11722e606 Mon Sep 17 00:00:00 2001 From: Alberto Abella Date: Thu, 16 Jan 2025 11:57:34 +0100 Subject: [PATCH 6/6] Update example.jsonld error in type --- dataModel.AAS/TimeSeries/examples/example.jsonld | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dataModel.AAS/TimeSeries/examples/example.jsonld b/dataModel.AAS/TimeSeries/examples/example.jsonld index 5bed80386..a62aa38cc 100644 --- a/dataModel.AAS/TimeSeries/examples/example.jsonld +++ b/dataModel.AAS/TimeSeries/examples/example.jsonld @@ -1,6 +1,6 @@ { "id": "urn:ngsi-ld:TimeSeriesData:TimeSeriesData", - "type": "TimeSeriesData", + "type": "TimeSeries", "timeSeries": { "segments": [