Giter Club home page Giter Club logo

Comments (4)

domoritz avatar domoritz commented on July 18, 2024

It works for me

export interface LogicalOperand<T> {
    foo: T;
}

export type Condition<T> = {
  selection: LogicalOperand<string>;
} & T;

export interface MyObject {
    bar: number;
}

export type MyType = Condition<MyObject>;
{
  "$ref": "#/definitions/MyType",
  "$schema": "http://json-schema.org/draft-04/schema#",
  "definitions": {
    "Condition<MyObject>": {
      "additionalProperties": false,
      "properties": {
        "bar": {
          "type": "number"
        },
        "selection": {
          "$ref": "#/definitions/LogicalOperand<string>"
        }
      },
      "required": [
        "bar",
        "selection"
      ],
      "type": "object"
    },
    "LogicalOperand<string>": {
      "additionalProperties": false,
      "properties": {
        "foo": {
          "type": "string"
        }
      },
      "required": [
        "foo"
      ],
      "type": "object"
    },
    "MyObject": {
      "additionalProperties": false,
      "properties": {
        "bar": {
          "type": "number"
        }
      },
      "required": [
        "bar"
      ],
      "type": "object"
    },
    "MyType": {
      "$ref": "#/definitions/Condition<MyObject>"
    }
  }
}

from ts-json-schema-generator.

kanitw avatar kanitw commented on July 18, 2024

export type MyType = Condition;

This doesn't have a union type inside Condition.

Try export type MyType = Condition<MyObject|TheirObject>; ?

from ts-json-schema-generator.

domoritz avatar domoritz commented on July 18, 2024
export type Condition<T> = {
  selection: T;
};

export interface A {
    foo: number;
    bar: number;
}

export interface B {
    bar: number;
    baz: number;
}

export type MyType = Condition<A | B>;
{
  "$ref": "#/definitions/MyType",
  "$schema": "http://json-schema.org/draft-04/schema#",
  "definitions": {
    "A": {
      "additionalProperties": false,
      "properties": {
        "bar": {
          "type": "number"
        },
        "foo": {
          "type": "number"
        }
      },
      "required": [
        "foo",
        "bar"
      ],
      "type": "object"
    },
    "B": {
      "additionalProperties": false,
      "properties": {
        "bar": {
          "type": "number"
        },
        "baz": {
          "type": "number"
        }
      },
      "required": [
        "bar",
        "baz"
      ],
      "type": "object"
    },
    "Condition<(A|B)>": {
      "additionalProperties": false,
      "properties": {
        "selection": {
          "anyOf": [
            {
              "$ref": "#/definitions/A"
            },
            {
              "$ref": "#/definitions/B"
            }
          ]
        }
      },
      "required": [
        "selection"
      ],
      "type": "object"
    },
    "MyType": {
      "$ref": "#/definitions/Condition<(A|B)>"
    }
  }
}

from ts-json-schema-generator.

domoritz avatar domoritz commented on July 18, 2024

See last comment. This works now.

from ts-json-schema-generator.

Related Issues (20)

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.