derived

Package Version Hex Docs

A Gleam library for parsing and generating code from Gleam custom types marked with special !derived() directives in their docstrings. Use it to build code generators for serialization, validation, documentation, and more.

Features

Quick Start

gleam add derived

Code Generation

pub fn main() -> Nil {
  let example_types =
    "
/// A simple user type
/// !derived(json_schema)
pub type User {
  /// A regular user account
  User(name: String, age: Int, email: String)
  /// An admin user account
  Admin(name: String, permissions: List(String))
}
"

  let assert Ok(result) =
    derived.generate(example_types, "json_schema", generate_json_schema)
  io.println(result)
}

fn generate_json_schema(derived_type: ast.DerivedType) -> Result(String, Nil) {
  let schema = build_json_schema(derived_type.parsed_type)
  Ok(
    "const "
    <> string.lowercase(derived_type.parsed_type.name)
    <> "_schema = \""
    <> escape_gleam_string(schema)
    <> "\"",
  )
}

The output of this function is the same input that has a new string with a json schema embedded in it:

/// A simple user type
/// !derived(json_schema)
pub type User {
  /// A regular user account
  User(name: String, age: Int, email: String)
  /// An admin user account
  Admin(name: String, permissions: List(String))
}

// ---- BEGIN DERIVED json_schema for User DO NOT MODIFY ---- //
const user_schema = "{
  \"type\": \"object\",
  \"title\": \"User\",
  \"oneOf\": [
    {
      \"type\": \"object\",
      \"title\": \"User\",
      \"description\": \"A regular user account\",
      \"properties\": {
        \"type\": { \"const\": \"User\" },
        \"name\": { \"type\": \"string\" },
        \"age\": { \"type\": \"integer\" },
        \"email\": { \"type\": \"string\" }
      },
      \"required\": [\"type\", \"name\", \"age\", \"email\"]
    },
    {
      \"type\": \"object\",
      \"title\": \"Admin\",
      \"description\": \"An admin user account\",
      \"properties\": {
        \"type\": { \"const\": \"Admin\" },
        \"name\": { \"type\": \"string\" },
        \"permissions\": { \"type\": \"array\", \"items\": { \"type\": \"string\" } }
      },
      \"required\": [\"type\", \"name\", \"permissions\"]
    }
  ]
}"
// ---- END DERIVED json_schema for User //

Basic Parsing

If you need more control over what happens after the AST has been parsed, you can use the parse function, which returns a list of DerivedType records that you can introspect as you see fit:

import derived

pub fn main() -> Nil {
  let gleam_source = "
    /// A custom type for demonstration
    /// !derived(json)
    pub type Person {
      Person(name: String, age: Int)
    }
  "

  let derived_types = derived.parse(gleam_source)
  // Returns a list of DerivedType records containing parsed type information
}

Examples

I had claude throw together a quick JSON Schema Generator

Documentation

API documentation can be found at https://hexdocs.pm/derived.

Development

gleam run   # Run the project
gleam test  # Run the tests

FAQ

You should!

I wrote this because glance doesn’t currently support docstrings in types. Issue here When that issue is closed, I’ll switch this project to use Glance and remove the AST module.

You should!

For one thing, it’s two fewer characters to type! Think of the LLM tokens you’ll save!

To be honest, I didn’t know deriv existed when I started this. I think this package handles documentation strings better than deriv (because it doesn’t depend on glance), but it probably has some AST parsing bugs (also because it doesn’t depend on glance).

This package also supports comment markers in code so you can regenerate output when you change the type.

Maybe? In gleam, derive is a reserved keyword so the dev team is obviously thinking about it. This project is a chance to explore ho that might might look and what use cases it can solve.

Anywhere you want to generate code based on types. Some ideas I’ve had:

Search Document