Nexeed
    • Introduction
    • User manual
      • General descriptions
        • Result lists
        • Scope Concept
      • Basic setup
        • Connection management
        • Scope Management
          • Configuration Scopes
          • Reporting Scopes
      • Traceability
        • Types of evaluations
        • Search Forms for creating an evaluation
        • Part Protocol
          • Quick Search
          • Extended Search
          • Part View
          • Process View
          • Component View
          • Part Information
          • Process Information
        • Forward Search
          • Quick Search
          • Extended Search
        • Backward Search
        • Tool Usage
        • Packaging Information
          • Quick Search
          • Extended Search
      • Archiving
        • Enable archiving
        • Monitoring
      • Quality Gate
        • Types of Quality Gate Checks
        • Working with Test Specifications
        • Testing of Test Specifications
          • Basic test client
          • Expert test client
          • JSON based test client
      • Terms and definitions
        • Archiving states
        • Connection states
        • Packaging data
        • Part blocks
        • Process data
        • SPC session data
        • Test Specifications
    • Operations manual
      • Overview
      • System architecture and interfaces
        • Data Collector Service
        • Data Browser Service
        • Archiving Bridge Adapter Service
        • Configuration Service
        • Quality Gate Service
        • Reporting Service
        • Quality Database (QDB)
        • Archiving Bridge Adapter Service database
      • System requirements
      • Migration from previous versions
        • Migration from MES QualityData
        • Part Traceability upgrades
      • Setup and configuration
        • Base configuration
        • Quick start configuration
        • Application and service account roles
        • Scope-based configurations
        • Data Collector Service
        • Data Browser Service
        • Archiving Bridge Adapter Service
        • Reporting Service
        • Quality Database (QDB)
        • Module database
        • Archiving Bridge Adapter Service database (QDAB)
        • Resources in Part Traceability
        • Dos and don’ts in databases
      • Start and shutdown
      • Regular operations
      • Failure handling
      • Backup and restore
      • Logging and monitoring
      • Known limitations
    • Developer documentation
      • Deep Dives
        • Forwarding via Data Publisher
        • Resolving of Scopes
      • Quality Gate Checks
        • Structuring of Test Specifications
        • Input and output parameters
          • Check Block List
          • Check Complete (location based)
          • Check Complete (process based)
          • Check Component
          • Bypass Check Complete
          • Check Trace Mapping
          • Check Characteristics
      • Troubleshooting
    • API documentation
      • Data Browser Service
      • Data Collector Service
        • Structure and content of telegrams
          • basicInfo
          • partDetails
          • componentTrace
          • additionalInfo
          • packaging
      • Quality Gate Service
      • Archiving Bridge Adapter Service
    • Glossary
Part Traceability
  • Industrial Application System
  • Core Services
    • Block Management
    • Deviation Processor
    • ID Builder
    • Multitenant Access Control
    • Notification Service
    • Ticket Management
    • Web Portal
  • Shopfloor Management
    • Andon Live
    • Global Production Overview
    • KPI Reporting
    • Operational Routines
    • Shift Book
    • Shopfloor Management Administration
  • Product & Quality
    • Product Setup Management
    • Part Traceability
    • Process Quality
    • Setup Specs
  • Execution
    • Line Control
    • Material Management
    • Order Management
    • Packaging Control
    • Rework Control
  • Intralogistics
    • AGV Control Center
    • Stock Management
    • Transport Management
  • Machine & Equipment
    • Condition Monitoring
    • Device Portal
    • Maintenance Management
    • Tool Management
  • Enterprise & Shopfloor Integration
    • Archiving Bridge
    • Data Publisher
    • Direct Data Link
    • Engineering UI
    • ERP Connectivity
    • Gateway
    • Information Router
    • Master Data Management
    • Orchestrator

Nexeed Learning Portal

  • Part Traceability
  • API documentation
  • Data Collector Service
  • Structure and content of telegrams
  • additionalInfo

additionalInfo

The additionalInfo data is directly linked to a product/component (1:1 relationship) and provides an extension to the actual part data. Additional part information can be either simple key-value pairs (with numeric or string values) or binary objects such as files/images.

Sample XML telegram

This document describes the additionalInfo section of XML telegrams used in Part Traceability.

Click to unfold sample XML telegram
...
<additionalInfo>
    <item name="WFS_TRANSFER_STATE" value="2" infoType="WFS" />
    <item name="AddInfo_01" value="0815" />
    <item name="AddInfo_02" value="Just some text" />
</additionalInfo>
...

XSD file

A additionalInfo XSD file is available for download.

Click to unfold additionalInfo XSD
<?xml version="1.0" encoding="utf-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
           targetNamespace="http://opcon.dc.modules.qualitydata/dtos/additional"
           xmlns="http://opcon.dc.modules.qualitydata/dtos/additional"
           elementFormDefault="qualified" attributeFormDefault="unqualified">

  <!-- Allowed string -->
  <xs:simpleType name="AllowedUnicodePlus">
    <xs:restriction base="xs:string">
      <xs:pattern value="[\p{L}\p{N} ._=/+%&amp;#*;\-{}]+"/>
      <xs:minLength value="1"/>
    </xs:restriction>
  </xs:simpleType>

  <xs:simpleType name="Str80">
    <xs:restriction base="AllowedUnicodePlus">
      <xs:maxLength value="80"/>
    </xs:restriction>
  </xs:simpleType>

  <xs:simpleType name="Str40">
    <xs:restriction base="AllowedUnicodePlus">
      <xs:maxLength value="40"/>
    </xs:restriction>
  </xs:simpleType>

  <xs:simpleType name="Str20">
    <xs:restriction base="AllowedUnicodePlus">
      <xs:maxLength value="20"/>
    </xs:restriction>
  </xs:simpleType>

  <!-- additionalInfo item -->
  <xs:complexType name="AdditionalInfoItem">
    <xs:attribute name="name" type="Str80" use="required"/> <!-- Unique name of the data element (per product) -->
    <xs:attribute name="value" type="Str80" use="optional"/> <!-- Value to be stored -->
    <xs:attribute name="infoType" type="Str20" use="optional"/> <!-- (Optional) Additional type definition for element categorization -->
  </xs:complexType>

  <xs:complexType name="AdditionalInfo">
    <xs:sequence>
      <xs:element name="item" type="AdditionalInfoItem" minOccurs="1" maxOccurs="unbounded"/>
    </xs:sequence>
  </xs:complexType>

  <!-- **** GLOBAL ELEMENT (required by master.xsd) **** -->
  <xs:element name="additionalInfo" type="AdditionalInfo"/>

</xs:schema>

Contents

© Robert Bosch Manufacturing Solutions GmbH 2023-2025, all rights reserved

Changelog Corporate information Legal notice Data protection notice Third party licenses