Quick Start

Build your first OAS-compliant organizational model in under 10 minutes.

A.M. TorlopovJanuary 15, 20261 min read

Quick Start

This guide will walk you through creating your first OAS organizational model.

Step 1: Initialize a Project

oas init my-organization
cd my-organization

Step 2: Define Your Organization

Edit organization.oas:

organization:
  id: "org.example"
  name: "Example Corp"
  version: "1.0.0"

  units:
    - id: "engineering"
      name: "Engineering"
      type: "department"

    - id: "product"
      name: "Product"
      type: "department"

  relations:
    - from: "product"
      to: "engineering"
      type: "depends-on"

Step 3: Validate

oas validate organization.oas

Step 4: Execute

oas run organization.oas

Done!

You have created and executed your first OAS model. Continue with the Core Concepts guides.