/** * @swagger {components.schemas} NullObject { "description": "Alternative representation of a `null`-value.", "type": "object" } */ /** Alternative representation of a `null`-value. */ export interface ShapeDiverNullObject { /** * @swagger {components.schemas.NullObject.properties} nullObj { "description": "The actual value of this property does not matter.", "type": "boolean" } * @swagger {components.schemas.NullObject} required [ "nullObj" ] */ /** The actual value of this property does not matter. */ nullObj: boolean; }