Skip to content

Json representation of BOD OAGIS specification V9

License

Notifications You must be signed in to change notification settings

dilbertside/BOD

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Release Build Status

Business Object Document

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.

Maven

To use it in your Maven build add:

Repository

<repositories>
  <repository>
      <id>jitpack.io</id>
      <url>https://jitpack.io</url>
  </repository>
</repositories>

Dependency:

  <dependency>
    <groupId>com.github.dilbertside</groupId>
    <artifactId>BOD</artifactId>
    <version>0.2.6</version>
  </dependency>

Gradle

To use it in your Gradle project add:

Repository

repositories {
    mavenLocal()
    mavenCentral()
    maven { url "https://jitpack.io" }
}

Dependency:

  implementation group: 'com.github.dilbertside', name: 'BOD', version: '0.2.6'