{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://json.schemastore.org/partial-fastapi.json", "type": "object", "properties": { "entrypoint": { "type": "string", "title": "Application Entrypoint", "description": "Import string entrypoint for the **FastAPI** application, in the format: \n```\nimportable.module:attribute\n```\n\nFor example, for an app like:\n\n ```python\nfrom fastapi import FastAPI\n\napp = FastAPI()\n```\n\nin a file at `backend/main.py`\n the config could look like:\n\n```toml\n[tool.fastapi]\nentrypoint = \"backend.main:app\"\n```\n\nDocs: https://fastapi.tiangolo.com/fastapi-cli/", "examples": ["main:app", "backend.main:app"] } }, "additionalProperties": false }