{ “openapi”: “3.1.0”, “info”: { “title”: “Create File Manifest”, “description”: “Creates a structured JSON manifest of a file package to be used as input for the RFQ workflow.”, “version”: “v1.0.0” }, “paths”: { “/createFileManifest”: { “get”: { “description”: “Formats a list of files into a standard JSON manifest object.”, “operationId”: “CreateFileManifest”, “parameters”: [ { “name”: “filePackage”, “in”: “query”, “description”: “A JSON array where each object represents a file in the project package.”, “required”: true, “schema”: { “type”: “array”, “items”: { “type”: “object”, “properties”: { “fileName”: { “type”: “string”, “description”: “The full name of the file, including its extension.” }, “fileId”: { “type”: “string”, “description”: “The unique ID or accessible path for the file provided by the system.” } } } } } ] } } } }