{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://catalog.lintel.tools/schemas/schemastore/speakeasy-generation-config-file/_shared/latest--postman.schema.json",
  "title": "postman Configuration Schema",
  "description": "Schema for configuration specific to a postman SDK",
  "x-lintel": {
    "source": "https://raw.githubusercontent.com/speakeasy-api/sdk-gen-config/main/schemas/languages/postman.schema.json",
    "sourceSha256": "870b6423ea63eabb407a9fab1dd184c8eb6522873f6fc0ca42629e4017847200"
  },
  "type": "object",
  "properties": {
    "fileName": {
      "description": "The collection file name. If not file name is provided the packageName is used in the `{example}_postman_collection.json` if no file name is provided.",
      "pattern": "^[\\w0-9\\-~]([\\w0-9.\\-_\\/~]*[\\w0-9\\-~])?$"
    },
    "inputModelSuffix": {
      "description": "The suffix to add to models with writeOnly fields that are created as input models",
      "pattern": "^[\\w0-9.\\-_]+$",
      "type": "string"
    },
    "outputModelSuffix": {
      "description": "The suffix to add to models with writeOnly fields that are created as input models",
      "pattern": "^[\\w0-9.\\-_]+$",
      "type": "string"
    },
    "packageName": {
      "description": "The name of the Postman collection. This show as the name when imported into Postman. This is also used as the file name in `{example}_postman_collection.json` if no file name is provided.",
      "pattern": "^[\\w0-9\\-~]([\\w0-9.\\-_\\/~]*[\\w0-9\\-~])?$",
      "type": "string"
    }
  },
  "required": [
    "packageName"
  ],
  "additionalProperties": true
}
