MCPcopy Index your code
hub / github.com/asyncapi/modelina

github.com/asyncapi/modelina @v5.10.1

Chat with this repo
repository ↗ · DeepWiki ↗ · release v5.10.1 ↗ · + Follow
2,205 symbols 4,694 edges 875 files 235 documented · 11%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

AsyncAPI Modelina Coverage Status Project Status: Active – The project has reached a stable, usable state and is being actively developed. Maintenance score Npm latest version License last commit Discussions Website Playground All Contributors

Your one-stop tool for generating accurate and well-tested models for representing the message payloads. Use it as a tool in your development workflow, or a library in a larger integrations, entirely in your control.


Installing Modelina

Install Modelina directly as a dependency to your project:

npm install @asyncapi/modelina

Or if you want to run Modelina, use the CLI.

modelina generate <language> ./asyncapi.json

What Does Modelina Do?

Modelina put YOU in control of your data models, here is how...

Modelina lets you generate data models from many types of inputs
const asyncapi = ...
const jsonschema = ...
const openapi = ... 
const metamodel = ... 
...
const models = await generator.generate(
  asyncapi | jsonschema | openapi | metamodel
);
Use the same inputs across a range of different generators
const generator = new TypeScriptGenerator();
const generator = new CsharpGenerator();
const generator = new JavaGenerator();
const generator = new RustGenerator();
...
const models = await generator.generate(input);
Easily let you interact with the generated models. - Want to show the generated models on a website? Sure! - Want to generate the models into files? Sure! - Want to combine all the models into one single file? Sure! Whatever interaction you need, you can create.
const models = await generator.generate(input);
for (const model in models) { 
  const generatedCode = model.result;
  const dependencies = model.dependencies;
  const modeltype = model.type;
  const modelName = model.modelName;
  ...
}
Easily modify how models are constrained into the output
const generator = new TypeScriptGenerator({
  constraints: {
    modelName: ({modelName}) => {
      // Implement your own constraining logic
      return modelName;
    }
  }
});
Seamlessly layer additional or replacement code on top of each other to customize the models to your use-case
const generator = new TypeScriptGenerator({
  presets: [
    {
      class: {
        additionalContent({ content }) {
          return `${content}
public myCustomFunction(): string {
  return 'A custom function for each class';
}`;
        },
      }
    }
  ]
});
const models = await generator.generate(input);
Seamlessly lets you combine multiple layers of additional or replacement code
const myCustomFunction1 = {
  class: {
    additionalContent({ content }) {
      return `${content}
public myCustomFunction(): string {
return 'A custom function for each class';
}`;
    },
  }
};
const myCustomFunction2 = {...};
const generator = new TypeScriptGenerator({
  presets: [
    myCustomFunction1,
    myCustomFunction2
  ]
});
const models = await generator.generate(input);

Features

The following table provides a short summary of available features for supported output languages. To see the complete feature list for each language, please click the individual links for each language.

Supported inputs
AsyncAPI We support the following AsyncAPI versions: 2.0.0 -> 3.0.0, which generates models for all the defined message payloads. It supports the following schemaFormats AsyncAPI Schema object, JSON Schema draft 7, AVRO 1.9, RAML 1.0 data type, and OpenAPI 3.0 Schema.
Avro Schema We support the following Avro versions: v1.x
JSON Schema We support the following JSON Schema versions: Draft-4, Draft-6 and Draft-7
OpenAPI We support the following OpenAPI versions: Swagger 2.0, OpenAPI 3.0 and 3.1, which generates models for all the defined request and response payloads.
XSD (XML Schema Definition) We support XML Schema Definition (XSD) with common elements including simple types, complex types, sequences, choices, attributes, and enumerations.
TypeScript We currently support TypeScript types as file input for model generation
Meta model This is the internal representation of a model for Modelina, it is what inputs gets converted to, and what generators are provided to generate code. Instead of relying on an input processor, you can create your own models from scratch and still take advantage on the generators and the features.

Supported outputs
Java Class and enum generation: generation of equals, hashCode, toString, Jackson annotation, custom indentation type and size, etc
TypeScript Class, interface and enum generation: generation of example code, un/marshal functions, custom indentation type and size, etc
C# Class and enum generation: generation of example code, serializer and deserializer functions, custom indentation type and size, etc
Go Struct and enum generation: custom indentation type and size, etc
JavaScript Class generation: custom indentation type and size, etc
Dart Class and enum generation: json_annotation
Rust Struct/tuple and enum generation: generation of `implement Default`, generate serde macros, custom indentation type and size, etc
Python Class and enum generation: custom indentation type and size, etc
Kotlin Class and enum generation: use of data classes where appropriate, custom indentation type and size, etc
C++ Class and enum generation: custom indentation type and size, etc
PHP Class and enum generation: custom indentation type and size, descriptions, etc
Scala Class and enum generation: custom indentation type and size, descriptions, etc

Requirements

The following are a requirement in order to use Modelina.

Documentation

A feature in Modelina cannot exists without an example and documentation for it. You can find all the documentation here.

Examples

Do you need to know how to use the library in certain scenarios?

We have gathered all the examples in a separate folder and they can be found under the examples folder.

Versioning and maintenance

As of version 1, Modelina has a very strict set of changes we are allowed to do before it requires a major version change. In short, any changes that change the generated outcome are not allowed as it's a breaking change for the consumer of the generated models.

Here is a list of changes we are allowed to do that would not require a breaking change: - Adding new features (that do not change existing output), such as generators, presets, input processors, etc. - Change existing features, by providing options that default to current behavior. This could be a preset that adapts the output based on options, as long as the API of Modelina and the API of the generated models does not have any breaking changes. - Bug fixes where the generated code is otherwise unusable (syntax errors, etc).

Breaking changes are allowed and expected at a frequent rate, of course where it makes sense we will try to bundle multiple changes together.

We of course will do our best to uphold this, but mistakes can happen, and if you notice any breaking changes please let us know!

Because of the number of the limited number of champions, only the most recent major version will be maintained.

Major versions are currently happening at a 3-month cadence (in a similar fashion as the AsyncAPI specification), this will happen in January, April, June, and September.

Development

We try to make it as easy for you as possible to set up your development environment to contribute to Modelina. You can find the development documentation here.

Contributing

Without contributions, Modelina would not exist, it's a community project we build together to create the best possible building blocks, and we do this through champions.

We have made quite a comprehensive contribution guide to give you a lending hand in how different features and changes are introduced.

If no documentation helps you, here is how you can reach out to get help: - On the official AsycnAPI slack under the #04_tooling channel - Tag a specific CODEOWNER in your PR - Generally, it's always a good idea to do everything in public, but in some cases, it might not be possible. In those circumstances you can contact the following: - jonaslagoni (on AsyncAPI Slack, Twitter, Email, LinkedIn)

Contributors

Thanks go out to these wonderful people (emoji key):

Extension points exported contracts — how you extend this code

AbstractFileGenerator (Interface)
(no doc) [13 implementers]
src/generators/AbstractFileGenerator.ts
ModelLoggingInterface (Interface)
(no doc) [2 implementers]
src/utils/LoggingInterface.ts
TestType (Interface)
(no doc)
test/utils/Partials.spec.ts
InnerData (Interface)
(no doc)
test/processors/TypeScriptInputProcessor/index.ts
Params (Interface)
(no doc)
modelina-website/src/types/index.ts
ApplyingTypesOptions (Interface)
(no doc)
src/helpers/ConstrainedTypes.ts
SimplificationOptions (Interface)
(no doc)
src/models/SimplificationOptions.ts
TypeScriptInputProcessorOptions (Interface)
(no doc)
src/processors/TypeScriptInputProcessor.ts

Core symbols most depended-on inside this repo

toCommonModel
called by 153
src/models/CommonModel.ts
toSchema
called by 149
src/models/XsdSchema.ts
indent
called by 88
src/helpers/FormatHelpers.ts
String
called by 84
src/generators/go/GoConstrainer.ts
mergeCommonModels
called by 67
src/models/CommonModel.ts
addDependency
called by 65
src/generators/scala/ScalaDependencyManager.ts
toRenderOutput
called by 65
src/models/RenderOutput.ts
constrainMetaModel
called by 64
src/helpers/ConstrainHelpers.ts

Shape

Function 1,043
Method 575
Class 396
Interface 186
Enum 5

Languages

TypeScript98%
Kotlin1%
C#1%
Java1%
Python1%
PHP1%

Modules by API surface

src/models/ConstrainedMetaModel.ts54 symbols
src/models/MetaModel.ts47 symbols
modelina-website/src/types/index.ts33 symbols
src/models/CommonModel.ts29 symbols
modelina-cli/src/errors/context-error.ts29 symbols
test/TestUtils/TestRenderers.ts26 symbols
modelina-cli/src/models/SpecificationFile.ts25 symbols
src/generators/rust/RustConstrainer.ts24 symbols
src/generators/rust/RustGenerator.ts23 symbols
src/models/XsdSchema.ts22 symbols
src/helpers/CommonModelToMetaModel.ts20 symbols
src/generators/java/renderers/ClassRenderer.ts20 symbols

For agents

$ claude mcp add modelina \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact