Index¶
- pydantic model controller.models.index.Index¶
Metadata returned by the external root URL of the application.
- Parameters:
data (
Any
)
Show JSON schema
{ "title": "Index", "description": "Metadata returned by the external root URL of the application.", "type": "object", "properties": { "metadata": { "$ref": "#/$defs/Metadata", "title": "Package metadata" } }, "$defs": { "Metadata": { "description": "Metadata about a package.", "properties": { "name": { "examples": [ "myapp" ], "title": "Application name", "type": "string" }, "version": { "examples": [ "1.0.0" ], "title": "Version", "type": "string" }, "description": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "examples": [ "Some package description" ], "title": "Description" }, "repository_url": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "examples": [ "https://example.com/" ], "title": "Repository URL" }, "documentation_url": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "examples": [ "https://example.com/" ], "title": "Documentation URL" } }, "required": [ "name", "version" ], "title": "Metadata", "type": "object" } }, "required": [ "metadata" ] }
- field metadata: Metadata [Required]¶