Properties
| Name | Type | Description |
|---|---|---|
| type | string | The `json` type value. |
| input | object | An object that contains a valid JSON OpenAPI definition. For more information, read the [OpenAPI documentation](https://swagger.io/docs/specification/basic-structure/). |
| options | object | An object that contains advanced creation options and their values. You can find a complete list of properties and their values in Postman's [OpenAPI to Postman Collection Converter OPTIONS documentat |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/jsonSchema",
"title": "JSON Schema",
"type": "object",
"required": [
"type",
"input"
],
"properties": {
"type": {
"type": "string",
"description": "The `json` type value.",
"enum": [
"json"
],
"example": "json"
},
"input": {
"type": "object",
"description": "An object that contains a valid JSON OpenAPI definition. For more information, read the [OpenAPI documentation](https://swagger.io/docs/specification/basic-structure/)."
},
"options": {
"type": "object",
"additionalProperties": true,
"description": "An object that contains advanced creation options and their values. You can find a complete list of properties and their values in Postman's [OpenAPI to Postman Collection Converter OPTIONS documentation](https://github.com/postmanlabs/openapi-to-postman/blob/develop/OPTIONS.md). These properties are case-sensitive."
}
}
}