{"openapi":"3.0.0","info":{"title":"HERZBLUAT Architecture API","version":"1.0.0","description":"API for AI agents to access architectural project data","contact":{"name":"HERZBLUAT Architecture","url":"https://herzbluat.it"}},"servers":[{"url":"https://herzbluat.it/api","description":"Production API"}],"paths":{"/projects":{"get":{"summary":"Get all architectural projects","description":"Retrieve all projects with AI-optimized metadata","parameters":[{"name":"language","in":"query","schema":{"type":"string","enum":["de","it"]},"description":"Language preference for AI processing"}],"responses":{"200":{"description":"List of architectural projects","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Project"}}}}}}}}},"components":{"schemas":{"Project":{"type":"object","properties":{"id":{"type":"integer"},"title":{"type":"string"},"titleIt":{"type":"string"},"description":{"type":"string"},"descriptionIt":{"type":"string"},"location":{"type":"string"},"year":{"type":"integer"},"imageUrl":{"type":"string"},"aiMetadata":{"type":"object","description":"AI agent optimized metadata"}}}}}}