Giter Site home page Giter Site logo

Comments (2)

tpoxa avatar tpoxa commented on June 22, 2024 1

That's awesome. Thanks @vearutop

from jsonschema-go.

vearutop avatar vearutop commented on June 22, 2024

There is an InterceptType option that allows schema customization based on its reflect.Value.
(All available options are listed at https://pkg.go.dev/github.com/swaggest/jsonschema-go#Reflector.Reflect)

https://go.dev/play/p/hZgF5vsks1R

package main

import (
	"encoding/json"
	"fmt"
	"reflect"

	"github.com/swaggest/jsonschema-go"
)

func main() {
	type CustomParameter interface{}

	// User is used as a base to provide tests for comments.
	type User struct {
		Param interface{} `json:"param" title:"Param"`

		// Unique sequential identifier.
		// Name of the user
		Dynamic CustomParameter `json:"dynamic" title:"Test"`
		//Some interface{} `json:"some,omitempty" jsonschema_extras:"requiredWhen=[1,2,3]"`
	}

	r := jsonschema.Reflector{}

	defs := map[string]jsonschema.Schema{}

	r.DefaultOptions = append(r.DefaultOptions,
		jsonschema.DefinitionsPrefix("#/$defs/"),
		jsonschema.CollectDefinitions(func(name string, schema jsonschema.Schema) {
			defs[name] = schema
		}),
		jsonschema.InterceptType(func(value reflect.Value, schema *jsonschema.Schema) (bool, error) {
			r := value.Type()

			// Nil interfaces arrive as pointer wraps.
			if r.Kind() == reflect.Ptr {
				r = r.Elem()
			}

			if r.Name() == "" {
				return false, nil
			}

			if r.Kind() == reflect.Interface {
				// Making new definition.
				s := jsonschema.Schema{}
				s.AddType(jsonschema.Object)
				s.WithExtraPropertiesItem("configurable", true)
				defs[r.Name()] = s

				// Replacing current schema with reference.
				rs := jsonschema.Schema{}
				rs.WithRef(fmt.Sprintf("#/$defs/%s", r.Name()))
				*schema = rs

				// Alternatively, in this case schema can be updated instead of replacing,
				// because it would be empty for an interface.
				//
				//schema.WithRef(fmt.Sprintf("#/$defs/%s", r.Name()))

				// True return disables further schema processing.
				return true, nil
			}

			return false, nil
		}))

	sh, _ := r.Reflect(User{})
	sh.WithExtraPropertiesItem("$defs", defs)

	j, _ := json.MarshalIndent(sh, "", " ")
	fmt.Println(string(j))
}
{
 "properties": {
  "dynamic": {
   "$ref": "#/$defs/CustomParameter",
   "title": "Test"
  },
  "param": {
   "title": "Param"
  }
 },
 "type": "object",
 "$defs": {
  "CustomParameter": {
   "type": "object",
   "configurable": true
  }
 }
}

from jsonschema-go.

Related Issues (19)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.