Skip to main content

intersystems_openapi3

A CLI tool that generates InterSystems IRIS CSP REST backend classes from an OpenAPI 3.1.x specification. Point it at a valid JSON spec and it produces two ready-to-import ObjectScript class files — a dispatch class that handles routing and validation, and an implementation stub where you fill in the business logic.

Requirements

  • Python 3.10+
  • A valid OpenAPI 3.1.x spec in JSON format

Installation

pip install intersystems_openapi3

Usage

Generate classes from a spec (output alongside the spec file):

intersystems_openapi3 /path/to/spec.json

Write output to a specific directory:

intersystems_openapi3 /path/to/spec.json -o /path/to/output/

Use a custom name for the generated classes:

intersystems_openapi3 /path/to/spec.json -n MyRestService

Other flags:

intersystems_openapi3 --version
intersystems_openapi3 --help

Output

Two ObjectScript class files are generated in the output directory:

File Description
{MyRestService}.disp.cls Dispatch class — handles URL routing, parameter validation, request body checks, and Accept header validation. Do not edit.
{MyRestService}.impl.cls Implementation class — one stub method per operation. Add your business logic here.

Import both files into your InterSystems IRIS instance to set up the REST API.

What gets generated

For each operation in the spec, the tool produces:

  • Typed method signatures — parameters are annotated with ObjectScript types derived from the OpenAPI schema (%String, %Integer, %Float, %Boolean)
  • Parameter validation — enforces constraints such as minLength, maxLength, pattern, minimum, maximum, and format-specific bounds (int32, int64)
  • Request body handling — validates that required bodies are present and checks Content-Type against declared media types
  • Response media type validation — validates Accept headers against declared response schemas
  • Auto-assigned operation IDs — if your spec omits operationId, one is generated from the HTTP method and path

Example

Given a spec with a GET /users/{id} operation, the tool generates a dispatch method that validates the id path parameter and calls through to an implementation stub:

/// GET /users/{id}
ClassMethod GetUsersId(id As %String) As %Status
{
    // Add your business logic here
    Quit $$$OK
}

Release files for intersystems-openapi3 0.2.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for intersystems-openapi3 0.2.1
File Size Uploaded
intersystems_openapi3-0.2.1.tar.gz 17.9 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for intersystems-openapi3 0.2.1
File Interpreter ABI Platform
intersystems_openapi3-0.2.1-py3-none-any.whl Python 3 none any Details

Total release size: 31.6 kB

Release files / intersystems_openapi3-0.2.1.tar.gz

Download URL intersystems_openapi3-0.2.1.tar.gz
Size 17.9 kB
Tags Source
SHA-256 checksum
How to use checksums
768ae4c89d539a11e2ef67cf6ae1bbf8e482f1d78ca911e412aa8d04fc839abd
BLAKE2b-256 checksum
How to use checksums
f87106c2479e40c72b0a93bef40411c2e2680c003cbc245d7eb3304997dacc18
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.13

Release files / intersystems_openapi3-0.2.1-py3-none-any.whl

Download URL intersystems_openapi3-0.2.1-py3-none-any.whl
Size 13.7 kB
Tags Python 3
SHA-256 checksum
How to use checksums
c1155bcaf0dd52c262391f3442e0ee855834aa07f6a9cbc050bff7a569a276f5
BLAKE2b-256 checksum
How to use checksums
91412d76ad0910abb451f8f67157756c260268d5825217a33b1ef410bc32974f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.13

Release history Release notifications | RSS feed

0.2.2

2 release files

This release

0.2.1 This release

2 release files

0.2.0

2 release files

0.1.0

2 release files

0.0.1

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page