﻿{
  "openapi": "3.0.4",
  "info": {
    "title": "Test API",
    "version": "V1"
  },
  "paths": {
    "/resource": {
      "post": {
        "operationId": "OperationIdSetInMetadata",
        "requestBody": {
          "content": {
            "application/someMediaType": {
              "schema": {
                "type": "object",
                "properties": {
                  "param": {
                    "type": "array",
                    "items": {
                      "type": "string",
                      "format": "binary"
                    }
                  }
                }
              },
              "encoding": {
                "param": {
                  "style": "form"
                }
              }
            }
          }
        },
        "responses": { }
      }
    }
  },
  "components": { }
}