DEV Community

Discussion on: Defining reusable components with the OpenAPI specification

Collapse
 
nikolaymartynov profile image
Nikolay Martynov

Personally, I've recently made a study to compare different options to define the structure of the data exchanged between the systems using JSON encoding. The final choice I had to make was not OpenAPI because:

  • I really want to be able to talk just about the data. It might be RPC. It might be messaging. But the data will be (mostly) the same. Of course, you also want to define transport thingies like paths and response codes as well once you get to it. But the data and its structure exchanged by the systems are largely independent of particular transport.

  • I fear that once unapproved workaround like empty paths is added, the tooling support could degrade rapidly. Again, talking about the data, I would like to be able to validate JSON file for compliance with defined structure. I want to be able to do this in runtime, during build time and when editing the schema or file with data. Most tools for OpenAPI are around REST and it is not quite trivial to validate chunk of data.

Thread Thread
 
ccristian profile image
Cristian Chiovari

So what was your choice ?

Thread Thread
 
nikolaymartynov profile image
Nikolay Martynov

Schema language for BLA-BLA-BLA unified format

Changes

  • 1.0 – Initial version

Executive summary

It is recommended to use JSON Schema to define JSON encoding of unified format of BLA-BLA-BLA.

Introduction

Unified format for BLA-BLA-BLA needs a formal protocol definition. For this, a schema definition language should be chosen. A universal schema definition language that can be used to define data structures that can later be expressed using several encoding formats like XML and JSON are preferred. However, this is not a mandatory requirement since industry moves away from XML while JSON adoption grows larger and larger. Thus, support for JSON is mandatory requirement while support for other technologies is optional.

Schema definition language should have good tooling support:

  • For schema authoring
  • For data authoring
  • For validating data compliance to schema (Java)

Schema definition language should have wide adoption in the industry to avoid usage of a dead or rare technology.

JSON Schema

Home

  1. json-schema.org/

Official learning

  1. json-schema.org/understanding-json...
  2. json-schema.org/learn/file-system....

Specification

  1. json-schema.org/latest/json-schema...
  2. json-schema.org/latest/json-schema...

Books

  1. learning.oreilly.com/library/view/...
  2. learning.oreilly.com/library/view/...
  3. learning.oreilly.com/library/view/...
  4. learning.oreilly.com/library/view/...
  5. learning.oreilly.com/library/view/...
  6. learning.oreilly.com/library/view/...

Tooling

Validate sample by schema – build

  1. github.com/alenkacz/gradle-json-va...

Validate sample by schema – runtime

  1. github.com/everit-org/json-schema
  2. github.com/leadpony/justify

Validate sample by schema – support

  1. jsonschemavalidator.net/
  2. jsonschemalint.com/#/version/draft...

Schema authoring

  1. jsonschema.net/

Data authoring

  1. IntelliJ IDEA supports JSON and validation by JSON Schema out of the box

Summary

3GPP TS 28.541 uses JSON Schema to define data model.

Very good candidate to describe JSON data format independent of API/RPC/etc. Tooling support is good enough. However, while it is widely adopted, the specification is not yet finalized. This creates a risk that specification might change in incompatible way and schema will have to be adjusted.

Yang

Home

  1. Not found reliable community home

Official learning

  1. Not found

Specification

  1. RFC 6020: YANG - A Data Modeling Language for the Network Configuration Protocol (NETCONF)
  2. RFC 6110: Mapping YANG to Document Schema Definition Languages and Validating NETCONF Content
  3. RFC 6991: Common YANG Data Types [obsoletes RFC 6021]
  4. RFC 7950: The YANG 1.1 Data Modeling Language [replaces RFC 6020]
  5. RFC 7951: JSON Encoding of Data Modeled with YANG
  6. RFC 7952: Defining and Using Metadata with YANG
  7. RFC 8342: Network Management Datastore Architecture (NMDA)
  8. RFC 8525: YANG Library [obsoletes RFC 7895]
  9. RFC 8528: YANG Schema Mount

Books

  1. learning.oreilly.com/library/view/...

Tooling

Validate sample by schema – build

  1. github.com/GianmarcoBruno/json-yang (uses Python)

Validate sample by schema – runtime

  1. Not found

Validate sample by schema – support

  1. Not found

Schema authoring

  1. sysrepo.org/YANG-Creator
  2. marketplace.eclipse.org/content/ya...

Data authoring

  1. marketplace.eclipse.org/content/ya...

Summary

3GPP TS 28.541 uses Yang to define data model.

While Yang model is independent of encoding and Yang supports both XML and JSON, it seems to be a bad choice. The reasons are:

  • Little adoption across industry
  • Poor tooling support
  • High complexity

OpenAPI

Home

  1. openapis.org/

Official learning

  1. swagger.io/docs/specification/about/

Specification

  1. github.com/OAI/OpenAPI-Specificati...

Books

  1. learning.oreilly.com/library/view/...
  2. learning.oreilly.com/library/view/...
  3. learning.oreilly.com/library/view/...
  4. learning.oreilly.com/library/view/...
  5. learning.oreilly.com/library/view/...

Tooling

Validate sample by schema – build

  1. gitlab.com/mmalawski/openapi-valid... (php)

Validate sample by schema – runtime

  1. github.com/RepreZen/KaiZen-OpenAPI...

Validate sample by schema – support

  1. Not found

Schema authoring

  1. studio.apicur.io/
  2. marketplace.eclipse.org/content/ka...
  3. editor.swagger.io/

Data authoring

  1. marketplace.eclipse.org/content/ka...
  2. editor.swagger.io/

Summary

Is not a data format definition language but API definition language. Requests to allow it to define the data are rejected. Quote: “It's meant to describe APIs, not catalogs of objects that can be used in APIs.” Source: github.com/OAI/OpenAPI-Specificati... While there are technical ways to circumvent this, this is discouraged by language designers. It is risky since the tools are unlikely to support validation once these workarounds are in place.

OpenAPI is based on JSON Schema but has additional restrictions to define APIs. One can be converted to another manually and using specialized tools.

OpenAPI is used to define 3GPP TS 28.532 and TMF 642 APIs.
Due to complexity and restrictions for usage as data format schema rather than API schema, it is recommended to use a better alternative when available.