In order to achieve inter-operability between disparate systems, disparate companies and disparate supply chains, there must be a common horizontal message architecture that provides a common understanding for all.
It is based on the OAGIS specification V9 http://www.oagi.org/oagis/9.0/Documentation/Architecture.html
Initially it is based on the XML schema definition.
This repository is a tentative to specify the BOD in a JSON like representation.
To use it in your Maven build add:
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependency>
<groupId>com.github.dilbertside</groupId>
<artifactId>BOD</artifactId>
<version>0.2.6</version>
</dependency>
To use it in your Gradle project add:
repositories {
mavenLocal()
mavenCentral()
maven { url "https://jitpack.io" }
}
implementation group: 'com.github.dilbertside', name: 'BOD', version: '0.2.6'