You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
help="Maps a remote fiboa schema URL to a local file. First the URL, then the local file path. Separated with a comma character. Example: https://example.com/schema.yaml,/path/to/schema.yaml",
help="Maps a remote fiboa schema URL to a local file. First the URL, then the local file path. Separated with a comma character. Example: https://example.com/schema.yaml,/path/to/schema.yaml",
"--out", "-o", type=click.Path(exists=False), help="Path to write the file to.", required=True
205
210
)
206
211
@click.option(
207
-
"--collection",
208
-
"-c",
209
-
callback=valid_file_for_cli,
210
-
help="Points to the Collection that defines the fiboa version and extensions. Only applies if not provided in the GeoJSON file (embedded or as link).",
211
-
default=None,
212
-
)
213
-
@click.option(
214
-
"--schema",
212
+
"--schemas",
215
213
"-s",
216
-
type=click.Path(exists=True),
217
-
help="fiboa Schema to work against. If not provided, uses the fiboa version from the collection to load the schema for the released version.",
help="Applicable fiboa extensions as URLs. Can map a remote fiboa extension schema url to a local file by adding a local file path, separated by a comma. Example: https://example.com/schema.json,/path/to/schema.json",
225
-
)
226
-
@click.option(
227
-
"--fiboa-version",
228
-
"-f",
229
-
type=click.STRING,
230
-
help="The applicable fiboa version if no collection is provided.",
help="Maps a remote fiboa schema URL to a local file. First the URL, then the local file path. Separated with a comma character. Example: https://example.com/schema.yaml,/path/to/schema.yaml",
help="fiboa Schema to create the JSON Schema for. Can be a local file or a URL. If not provided, uses the fiboa version to load the schema for the released version.",
294
+
help=f"fiboa schema to create the JSON Schema for. Can be a local file or a URL. If not provided, loads the schema for fiboa version {fiboa_version_}.",
help=f"Schema for the fiboa GeoJSON datatypes. Can be a local file or a URL. If not provided, loads the GeoJSON datatypes for fiboa version {fiboa_version_}.",
0 commit comments