{"openapi":"3.0.0","info":{"title":"Buildum Blueprints API","version":"1.0.0","description":"API for managing document blueprints and templates"},"components":{"securitySchemes":{"bearerAuth":{"type":"http","scheme":"bearer","bearerFormat":"JWT"}},"schemas":{"Blueprint":{"type":"object","properties":{"id":{"type":"string","format":"uuid","description":"Unique identifier for the blueprint"},"organizationUuid":{"type":"string","format":"uuid","description":"UUID of the organization that owns this blueprint"},"name":{"type":"string","description":"Name of the blueprint"},"description":{"type":"string","description":"Description of the blueprint"},"category":{"type":"string","description":"Category of the blueprint"},"tags":{"type":"array","items":{"type":"string"},"description":"Tags associated with the blueprint"},"content":{"type":"object","description":"Content structure of the blueprint"},"version":{"type":"string","description":"Version of the blueprint"},"isTemplate":{"type":"boolean","description":"Whether this blueprint is a template"},"isPublic":{"type":"boolean","description":"Whether this blueprint is publicly accessible"},"status":{"type":"string","enum":["draft","published","archived"],"description":"Current status of the blueprint"},"createdAt":{"type":"string","format":"date-time","description":"Timestamp when the blueprint was created"},"updatedAt":{"type":"string","format":"date-time","description":"Timestamp when the blueprint was last updated"}},"required":["id","organizationUuid","name","status"]},"BlueprintCreate":{"type":"object","properties":{"organizationUuid":{"type":"string","format":"uuid","description":"UUID of the organization that owns this blueprint"},"name":{"type":"string","description":"Name of the blueprint"},"description":{"type":"string","description":"Description of the blueprint"},"category":{"type":"string","description":"Category of the blueprint"},"tags":{"type":"array","items":{"type":"string"},"description":"Tags associated with the blueprint"},"content":{"type":"object","description":"Content structure of the blueprint"},"version":{"type":"string","description":"Version of the blueprint"},"isTemplate":{"type":"boolean","description":"Whether this blueprint is a template"},"isPublic":{"type":"boolean","description":"Whether this blueprint is publicly accessible"},"status":{"type":"string","enum":["draft","published","archived"],"description":"Current status of the blueprint"}},"required":["organizationUuid","name"]},"Error":{"type":"object","properties":{"error":{"type":"string","description":"Error message"}}}}},"paths":{},"tags":[],"servers":[{"url":"https://flowos.scrumdesk.com/api/blueprints","description":"Production (third parties — use in Postman)"},{"url":"http://localhost:3005/api/blueprints","description":"Local module backend (direct on module port)"}]}