diff --git a/conda_recipe_v2_schema/model.py b/conda_recipe_v2_schema/model.py index 39935c9..a3e6848 100644 --- a/conda_recipe_v2_schema/model.py +++ b/conda_recipe_v2_schema/model.py @@ -581,7 +581,6 @@ class About(StrictBaseModel): license_file: ConditionalList[PathNoBackslash] | None = Field( None, description="Paths to the license files of this package." ) - license_url: str | None = Field(None, description="A url that points to the license file.") # Text summary: str | None = Field(None, description="A short description of the package.") diff --git a/schema.json b/schema.json index dcc59d9..2d6062b 100644 --- a/schema.json +++ b/schema.json @@ -92,19 +92,6 @@ "description": "Paths to the license files of this package.", "title": "License File" }, - "license_url": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "null" - } - ], - "default": null, - "description": "A url that points to the license file.", - "title": "License Url" - }, "summary": { "anyOf": [ {