{
	"openapi": "3.1.0",
	"info": {
		"title": "InNeed AI Public API",
		"description": "Machine-readable public information about InNeed AI.",
		"version": "1.0.0"
	},
	"servers": [
		{
			"url": "https://inneed.ai"
		}
	],
	"paths": {
		"/api/site-info": {
			"get": {
				"summary": "Get InNeed AI site information",
				"operationId": "getSiteInfo",
				"responses": {
					"200": {
						"description": "InNeed AI site information",
						"content": {
							"application/json": {
								"schema": {
									"type": "object",
									"properties": {
										"name": {
											"type": "string"
										},
										"homepage": {
											"type": "string",
											"format": "uri"
										},
										"about": {
											"type": "string",
											"format": "uri"
										},
										"solutions": {
											"type": "array",
											"items": {
												"type": "string"
											}
										}
									},
									"required": [
										"name",
										"homepage",
										"about",
										"solutions"
									]
								}
							}
						}
					}
				}
			}
		}
	}
}