schema
stringclasses 471
values | key
stringlengths 0
203
| description
stringlengths 0
4.37k
| object
stringlengths 2
322k
|
---|---|---|---|
box.schema.json | directory | Install directory where this package should be placed once installed. If not defined, it installs were the CommandBox command was executed. | {"type": "string", "default": ""} |
box.schema.json | createPackageDirectory | This determines if the container directory will contain a sub-directory according to the package slug name. The default is true | {"type": "boolean", "default": true} |
box.schema.json | packageDirectory | This name will be used for the package sub-directory instead of the slug name | {"type": "string", "default": ""} |
box.schema.json | homepage | Project homepage URL | {"type": "string", "format": "uri"} |
box.schema.json | documentation | Documentation URL | {"type": "string", "format": "uri"} |
box.schema.json | repository | Source repository | {"type": "object", "properties": {"type": {"type": "string", "default": ""}, "url": {"type": "string", "format": "uri"}}} |
box.schema.json | type | The version control system. Popular examples are git, svn, or mercurial | {"type": "string", "default": ""} |
box.schema.json | url | The URL at which the repository resides | {"type": "string", "format": "uri"} |
box.schema.json | bugs | Bug issue management URL | {"type": "string", "format": "uri"} |
box.schema.json | shortDescription | ForgeBox short description | {"type": "string", "default": ""} |
box.schema.json | description | ForgeBox big description. If not set, it can be taken from a Readme.md, Readme, or Readme.txt | {"type": "string", "default": ""} |
box.schema.json | instructions | Install instructions. If not set, it can be taken from a instructions.md, instructions, or instructions.txt | {"type": "string", "default": ""} |
box.schema.json | changelog | Change log. If not set, it can be taken from a changelog.md, changelog, or changelog.txt | {"type": "string", "default": ""} |
box.schema.json | type | ForgeBox contribution type | {"type": "string", "enum": ["caching", "cf-engines", "cfbuilder-extensions", "cfwheels-plugins", "cms", "commandbox-commands", "commandbox-modules", "commandbox-recipes", "contentbox-modules", "contentbox-themes", "contentbox-widgets", "demos", "di", "interceptors", "logging", "lucee-extensions", "messaging-queues", "modules", "mvc", "nosql", "plugins", "preside-extensions", "preside-skeletons", "projects", "testing", "wirebox-aspects", "wirebox-listeners"]} |
box.schema.json | keywords | ForgeBox keywords | {"type": ["array", "string"], "items": {"type": "string"}, "default": []} |
box.schema.json | items | ForgeBox keyword | {"type": "string"} |
box.schema.json | private | Designates the package as a private ForgeBox package. Private packages are not publicly accessible, but still offer all the benefits of ForgeBox. | {"type": "boolean", "default": false} |
box.schema.json | engines | CFML engines the package supports | {"type": "array", "items": {}, "default": []} |
box.schema.json | defaultEngine | The name of the default CFML engine for the `start` command to use. | {"type": "string"} |
box.schema.json | defaultPort | Deprecated. The HTTP port the server will be started on when you use the start command. Use `port` in `server.json` instead. | {"type": "number"} |
box.schema.json | projectURL | Default project URL if not using CommandBox start server commands | {"type": "string", "format": "uri"} |
box.schema.json | license | List of licenses the package can have | {"type": "array", "items": {"type": "object", "properties": {"type": {"type": "string", "default": ""}, "url": {"type": "string", "format": "uri"}}}, "default": []} |
box.schema.json | items | A license the package can have | {"type": "object", "properties": {"type": {"type": "string", "default": ""}, "url": {"type": "string", "format": "uri"}}} |
box.schema.json | type | The license type. For example, MIT. | {"type": "string", "default": ""} |
box.schema.json | url | The URL at which the license resides | {"type": "string", "format": "uri"} |
box.schema.json | contributors | Contributors to the package | {"type": "array", "items": {}, "default": []} |
box.schema.json | installPaths | Tracks install locations so uninstall can work. The key is the package name/slug and the value is the path | {"type": "object", "additionalProperties": {"type": "string"}, "default": {}} |
box.schema.json | scripts | Set of script commands that correspond to the interception points in CommandBox or arbitrary names that can be run with the `run-script` command | {"type": "object", "properties": {"preInstall": {"type": "string"}, "onInstall": {"type": "string"}, "postInstall": {"type": "string"}, "preUninstall": {"type": "string"}, "postUninstall": {"type": "string"}, "preVersion": {"type": "string"}, "postVersion": {"type": "string"}, "onRelease": {"type": "string"}, "prePublish": {"type": "string"}, "postPublish": {"type": "string"}}, "additionalProperties": {"type": "string"}, "default": {}} |
box.schema.json | preInstall | Run BEFORE the package is installed | {"type": "string"} |
box.schema.json | onInstall | Run WHILE the package is installed | {"type": "string"} |
box.schema.json | postInstall | Run AFTER the package is installed | {"type": "string"} |
box.schema.json | preUninstall | Run BEFORE the package is uninstalled | {"type": "string"} |
box.schema.json | postUninstall | Run AFTER the package is uninstalled | {"type": "string"} |
box.schema.json | preVersion | Run BEFORE bump the package version | {"type": "string"} |
box.schema.json | postVersion | Run AFTER bump the package version, but BEFORE Git repo is tagged | {"type": "string"} |
box.schema.json | onRelease | Run AFTER bump the package version and AFTER Git repo is tagged | {"type": "string"} |
box.schema.json | prePublish | Run BEFORE the package is published | {"type": "string"} |
box.schema.json | postPublish | Run AFTER the package is published | {"type": "string"} |
box.schema.json | ignore | List of file globs to ignore when installing the package similar to .gitignore patterns | {"type": "array", "items": {"type": "string"}, "default": []} |
box.schema.json | items | Ignore glob pattern | {"type": "string"} |
box.schema.json | testbox | TestBox integration | {"type": "object", "properties": {"runner": {"type": ["string", "array"], "items": {"type": "object", "additionalProperties": {"type": "string", "format": "uri"}}, "format": "uri"}, "labels": {"type": ["string", "array"], "items": {"type": "string"}}, "excludes": {"type": ["string", "array"], "items": {"type": "string"}}}} |
box.schema.json | runner | The URI location of the test runner for an app or several with slug names | {"type": ["string", "array"], "items": {"type": "object", "additionalProperties": {"type": "string", "format": "uri"}}, "format": "uri"} |
box.schema.json | items | The runner URIs mapped to slug names | {"type": "object", "additionalProperties": {"type": "string", "format": "uri"}} |
box.schema.json | labels | A list of labels to only include when running the tests | {"type": ["string", "array"], "items": {"type": "string"}} |
box.schema.json | items | A label a spec must have to be ran | {"type": "string"} |
box.schema.json | excludes | A list of labels to exclude when running the tests | {"type": ["string", "array"], "items": {"type": "string"}} |
box.schema.json | items | A label to be excluded from the test run | {"type": "string"} |
box.schema.json | cfmigrations | Configuration object for CF Migration database settings. | {"type": "object", "properties": {"migrationsDirectory": {"type": "string"}, "schema": {"type": "string"}, "connectionInfo": {"type": "object", "properties": {"password": {"type": "string"}, "connectionString": {"type": "string"}, "class": {"type": "string"}, "username": {"type": "string"}}}, "defaultGrammar": {"type": "string", "enum": ["AutoDiscover@qb", "BaseGrammar@qb", "MySQLGrammar@qb", "OracleGrammar@qb", "PostgresGrammar@qb", "SqlServerGrammar@qb"]}}} |
box.schema.json | migrationsDirectory | Location of generated migration files that migration commands will use. | {"type": "string"} |
box.schema.json | connectionInfo | Location of generated migration files that migration commands will use. | {"type": "object", "properties": {"password": {"type": "string"}, "connectionString": {"type": "string"}, "class": {"type": "string"}, "username": {"type": "string"}}} |
box.schema.json | defaultGrammar | Name of the qb service to use for grammar. | {"type": "string", "enum": ["AutoDiscover@qb", "BaseGrammar@qb", "MySQLGrammar@qb", "OracleGrammar@qb", "PostgresGrammar@qb", "SqlServerGrammar@qb"]} |
package-configuration-schema.json | The OSS-Review-Toolkit (ORT) provides a possibility to define path excludes and license finding curations for a specific package (dependency) and provenance in a package configuration file. A full list of all available options can be found at https://github.com/oss-review-toolkit/ort/blob/main/docs/config-file-package-configuration-yml.md. | {"$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "properties": {"id": {"type": "string"}, "license_finding_curations": {"items": {}, "type": "array"}, "path_excludes": {"items": {"properties": {"comment": {"type": "string"}, "pattern": {"type": "string"}, "reason": {}}, "required": ["pattern", "reason"], "type": "object"}, "type": "array"}, "vcs": {}, "source_artifact_url": {"type": "string"}}, "definitions": {"licenseFindingCurationReason": {"enum": ["CODE", "DATA_OF", "DOCUMENTATION_OF", "INCORRECT", "NOT_DETECTED", "REFERENCE"]}, "licenseFindingCurations": {"properties": {"comment": {"type": "string"}, "concluded_license": {"type": "string"}, "detected_license": {"type": "string"}, "line_count": {"type": "integer"}, "path": {"type": "string"}, "reason": {}, "start_lines": {"type": ["integer", "string"]}}, "required": ["path", "concluded_license", "reason"], "type": "object"}, "pathExcludeReason": {"enum": ["BUILD_TOOL_OF", "DATA_FILE_OF", "DOCUMENTATION_OF", "EXAMPLE_OF", "OPTIONAL_COMPONENT_OF", "OTHER", "PROVIDED_BY", "TEST_OF", "TEST_TOOL_OF"]}, "vcsMatcher": {"anyOf": [{"required": ["type"]}, {"required": ["url"]}, {"required": ["revision"]}, {"required": ["path"]}], "properties": {"path": {"type": "string"}, "revision": {"type": "string"}, "type": {"type": "string"}, "url": {"type": "string"}}, "type": "object"}}, "required": ["id"], "oneOf": [{"required": ["vcs"]}, {"required": ["source_artifact_url"]}]} |
|
webhook.json | Discord Webhook JSON Schema | {"$schema": "https://json-schema.org/draft-07/schema", "definitions": {"string": {"type": "string", "default": ""}, "boolean": {"type": "boolean", "default": false}, "url": {"pattern": "^https?://"}, "id": {"pattern": "^\\d+$"}}, "type": "object", "additionalProperties": false, "anyOf": [{"required": ["content"]}, {"required": ["embeds"]}], "properties": {"$schema": {}, "content": {"maxLength": 2000}, "username": {"pattern": "^((?!(c|C)(l|L)(y|Y)(d|D)(e|E)).)*$", "maxLength": 80}, "avatar_url": {}, "tts": {}, "embeds": {"type": "array", "items": {"type": "object", "additionalProperties": false, "properties": {"url": {}, "timestamp": {"format": "date-time"}, "color": {"type": "integer", "default": 2105893, "minimum": 0, "maximum": 16777215}, "footer": {"type": "object", "additionalProperties": false, "required": ["text"], "properties": {"text": {"type": "string", "default": "", "maxLength": 2048}, "icon_url": {}}}, "image": {"type": "object", "additionalProperties": false, "required": ["url"], "properties": {"url": {}}}, "thumbnail": {"type": "object", "additionalProperties": false, "required": ["url"], "properties": {"url": {}}}, "author": {"type": "object", "additionalProperties": false, "required": ["name"], "properties": {"name": {"maxLength": 256}, "url": {}, "icon_url": {}}}, "fields": {"type": "array", "items": {"type": "object", "additionalProperties": false, "required": ["name", "value"], "properties": {"name": {"minLength": 1, "maxLength": 256}, "value": {"minLength": 1, "maxLength": 1024}, "inline": {}}}}}}}, "allowed_mentions": {"type": "object", "minProperties": 1, "additionalProperties": false, "properties": {"parse": {"type": "array", "default": [], "items": {"type": "string", "enum": ["roles", "users", "everyone"]}}, "roles": {"type": ["array", "null"], "default": [], "uniqueItems": true, "maxItems": 100, "items": {}}, "users": {"type": ["array", "null"], "default": [], "uniqueItems": true, "maxItems": 100, "items": {}}}}}} |
|
webhook.json | $schema | Allow $schema because additionalProperties is false | {} |
webhook.json | content | The message contents
Max is 2000 characters | {"maxLength": 2000} |
webhook.json | username | Override the default username of the webhook
Name cannot contain "clyde" | {"pattern": "^((?!(c|C)(l|L)(y|Y)(d|D)(e|E)).)*$", "maxLength": 80} |
webhook.json | avatar_url | Override the default avatar of the webhook | {} |
webhook.json | tts | Whether or not this message will play in TTS
Default is false | {} |
webhook.json | embeds | Embedded rich content
Max is 6000 characters | {"type": "array", "items": {"type": "object", "additionalProperties": false, "properties": {"url": {}, "timestamp": {"format": "date-time"}, "color": {"type": "integer", "default": 2105893, "minimum": 0, "maximum": 16777215}, "footer": {"type": "object", "additionalProperties": false, "required": ["text"], "properties": {"text": {"type": "string", "default": "", "maxLength": 2048}, "icon_url": {}}}, "image": {"type": "object", "additionalProperties": false, "required": ["url"], "properties": {"url": {}}}, "thumbnail": {"type": "object", "additionalProperties": false, "required": ["url"], "properties": {"url": {}}}, "author": {"type": "object", "additionalProperties": false, "required": ["name"], "properties": {"name": {"maxLength": 256}, "url": {}, "icon_url": {}}}, "fields": {"type": "array", "items": {"type": "object", "additionalProperties": false, "required": ["name", "value"], "properties": {"name": {"minLength": 1, "maxLength": 256}, "value": {"minLength": 1, "maxLength": 1024}, "inline": {}}}}}}} |
webhook.json | title | Title of embed
Max is 256 characters | {"maxLength": 256} |
webhook.json | description | Description of embed
Max is 4096 characters | {"maxLength": 4096} |
webhook.json | url | URL of embed
Only support http / https | {} |
webhook.json | timestamp | Timestamp of embed content
ISO8601 Timestamp | {"format": "date-time"} |
webhook.json | color | Color code of the embed
Only support color in decimal
To match embed background color, use 3092790
Default is 2105893 | {"type": "integer", "default": 2105893, "minimum": 0, "maximum": 16777215} |
webhook.json | footer | Footer information | {"type": "object", "additionalProperties": false, "required": ["text"], "properties": {"text": {"type": "string", "default": "", "maxLength": 2048}, "icon_url": {}}} |
webhook.json | text | Footer text
Max is 2048 characters | {"type": "string", "default": "", "maxLength": 2048} |
webhook.json | icon_url | URL of footer icon
Only support http / https | {} |
webhook.json | image | Image information | {"type": "object", "additionalProperties": false, "required": ["url"], "properties": {"url": {}}} |
webhook.json | url | Source url of image
Only support http / https | {} |
webhook.json | thumbnail | Thumbnail information | {"type": "object", "additionalProperties": false, "required": ["url"], "properties": {"url": {}}} |
webhook.json | url | Source url of thumbnail
Only support http / https | {} |
webhook.json | author | Author information | {"type": "object", "additionalProperties": false, "required": ["name"], "properties": {"name": {"maxLength": 256}, "url": {}, "icon_url": {}}} |
webhook.json | name | Name of author
Max is 256 characters | {"maxLength": 256} |
webhook.json | url | URL of author
Only support http / https | {} |
webhook.json | icon_url | URL of author icon
Only support http / https | {} |
webhook.json | fields | Fields information | {"type": "array", "items": {"type": "object", "additionalProperties": false, "required": ["name", "value"], "properties": {"name": {"minLength": 1, "maxLength": 256}, "value": {"minLength": 1, "maxLength": 1024}, "inline": {}}}} |
webhook.json | items | Fields information | {"type": "object", "additionalProperties": false, "required": ["name", "value"], "properties": {"name": {"minLength": 1, "maxLength": 256}, "value": {"minLength": 1, "maxLength": 1024}, "inline": {}}} |
webhook.json | name | Name of the field
REQUIRED Max is 256 | {"minLength": 1, "maxLength": 256} |
webhook.json | value | Value of the field
REQUIRED Max is 1024 | {"minLength": 1, "maxLength": 1024} |
webhook.json | inline | Whether or not this field should display inline
Default is false | {} |
webhook.json | allowed_mentions | Allowed mentions for the message | {"type": "object", "minProperties": 1, "additionalProperties": false, "properties": {"parse": {"type": "array", "default": [], "items": {"type": "string", "enum": ["roles", "users", "everyone"]}}, "roles": {"type": ["array", "null"], "default": [], "uniqueItems": true, "maxItems": 100, "items": {}}, "users": {"type": ["array", "null"], "default": [], "uniqueItems": true, "maxItems": 100, "items": {}}}} |
webhook.json | parse | An array of allowed mention types to parse from the content. | {"type": "array", "default": [], "items": {"type": "string", "enum": ["roles", "users", "everyone"]}} |
webhook.json | roles | Array of role_ids to mention
Max is 100 of role_ids
Mutually exclusive with parse roles | {"type": ["array", "null"], "default": [], "uniqueItems": true, "maxItems": 100, "items": {}} |
webhook.json | users | Array of user_ids to mention
Max is 100 of user_ids
Mutually exclusive with parse users | {"type": ["array", "null"], "default": [], "uniqueItems": true, "maxItems": 100, "items": {}} |
geojson.json | This object represents a geometry, feature, or collection of features. | {"$schema": "http://json-schema.org/draft-04/schema#", "additionalProperties": true, "definitions": {"coordinates": {"type": "array", "items": {"oneOf": [{"type": "array"}, {"type": "number"}]}}, "geometry": {"properties": {"type": {"enum": ["Point", "MultiPoint", "LineString", "MultiLineString", "Polygon", "MultiPolygon", "GeometryCollection"]}}}, "feature": {"required": ["geometry", "properties"], "properties": {"type": {"enum": ["Feature"]}, "geometry": {"oneOf": [{}, {"type": "null"}]}, "properties": {"oneOf": [{"type": "object"}, {"type": "null"}]}, "id": {}}}, "linearRingCoordinates": {"allOf": [{}, {"minItems": 4}]}, "lineStringCoordinates": {"allOf": [{}, {"minLength": 2, "items": {}}]}, "polygonCoordinates": {"allOf": [{}, {"items": {}}]}, "position": {"type": "array", "minItems": 2, "items": {"type": "number"}}}, "id": "https://json.schemastore.org/geojson", "oneOf": [{"required": ["coordinates"], "properties": {"type": {"enum": ["Point"]}, "coordinates": {"allOf": [{}, {}]}}, "allOf": [{}]}, {"required": ["coordinates"], "properties": {"type": {"enum": ["MultiPoint"]}, "coordinates": {"allOf": [{}, {"items": {}}]}}, "allOf": [{}]}, {"required": ["coordinates"], "properties": {"type": {"enum": ["LineString"]}, "coordinates": {}}, "allOf": [{}]}, {"required": ["coordinates"], "properties": {"type": {"enum": ["MultiLineString"]}, "coordinates": {"allOf": [{}, {"items": {}}]}}, "allOf": [{}]}, {"required": ["coordinates"], "properties": {"type": {"enum": ["Polygon"]}, "coordinates": {}}, "allOf": [{}]}, {"required": ["coordinates"], "properties": {"type": {"enum": ["MultiPolygon"]}, "coordinates": {"allOf": [{}, {"items": {}}]}}, "allOf": [{}]}, {"required": ["geometries"], "properties": {"type": {"enum": ["GeometryCollection"]}, "geometries": {"type": "array", "items": {}}}, "allOf": [{}]}, {}, {"required": ["features"], "properties": {"type": {"enum": ["FeatureCollection"]}, "features": {"type": "array", "items": {}}}}], "properties": {"type": {"type": "string", "enum": ["Point", "MultiPoint", "LineString", "MultiLineString", "Polygon", "MultiPolygon", "GeometryCollection", "Feature", "FeatureCollection"]}, "crs": {"oneOf": [{"type": "null"}, {"type": "object", "required": ["type", "properties"], "properties": {"type": {"type": "string", "minLength": 1}, "properties": {"type": "object"}}}], "not": {"anyOf": [{"properties": {"type": {"enum": ["name"]}, "properties": {"not": {"required": ["name"], "properties": {"name": {"type": "string", "minLength": 1}}}}}}, {"properties": {"type": {"enum": ["link"]}, "properties": {"not": {"type": "object", "required": ["href"], "properties": {"href": {"type": "string", "format": "uri"}, "type": {"type": "string"}}}}}}]}}, "bbox": {"type": "array", "minItems": 4, "items": {"type": "number"}}}, "required": ["type"], "type": "object"} |
|
geojson.json | geometry | A geometry is a GeoJSON object where the type member's value is one of the following strings: `Point`, `MultiPoint`, `LineString`, `MultiLineString`, `Polygon`, `MultiPolygon`, or `GeometryCollection`. | {"properties": {"type": {"enum": ["Point", "MultiPoint", "LineString", "MultiLineString", "Polygon", "MultiPolygon", "GeometryCollection"]}}} |
geojson.json | feature | A GeoJSON object with the type `Feature` is a feature object.
* A feature object must have a member with the name `geometry`. The value of the geometry member is a geometry object as defined above or a JSON null value.
* A feature object must have a member with the name `properties`. The value of the properties member is an object (any JSON object or a JSON null value).
* If a feature has a commonly used identifier, that identifier should be included as a member of the feature object with the name `id`. | {"required": ["geometry", "properties"], "properties": {"type": {"enum": ["Feature"]}, "geometry": {"oneOf": [{}, {"type": "null"}]}, "properties": {"oneOf": [{"type": "object"}, {"type": "null"}]}, "id": {}}} |
geojson.json | linearRingCoordinates | A LinearRing is closed LineString with 4 or more positions. The first and last positions are equivalent (they represent equivalent points). Though a LinearRing is not explicitly represented as a GeoJSON geometry type, it is referred to in the Polygon geometry type definition. | {"allOf": [{}, {"minItems": 4}]} |
geojson.json | lineStringCoordinates | For type `LineString`, the `coordinates` member must be an array of two or more positions. | {"allOf": [{}, {"minLength": 2, "items": {}}]} |
geojson.json | polygonCoordinates | For type `Polygon`, the `coordinates` member must be an array of LinearRing coordinate arrays. For Polygons with multiple rings, the first must be the exterior ring and any others must be interior rings or holes. | {"allOf": [{}, {"items": {}}]} |
geojson.json | position | A position is the fundamental geometry construct. The `coordinates` member of a geometry object is composed of one position (in the case of a Point geometry), an array of positions (LineString or MultiPoint geometries), an array of arrays of positions (Polygons, MultiLineStrings), or a multidimensional array of positions (MultiPolygon).
A position is represented by an array of numbers. There must be at least two elements, and may be more. The order of elements must follow x, y, z order (easting, northing, altitude for coordinates in a projected coordinate reference system, or longitude, latitude, altitude for coordinates in a geographic coordinate reference system). Any number of additional elements are allowed -- interpretation and meaning of additional elements is beyond the scope of this specification. | {"type": "array", "minItems": 2, "items": {"type": "number"}} |
geojson.json | For type `Point`, the `coordinates` member must be a single position. | {"required": ["coordinates"], "properties": {"type": {"enum": ["Point"]}, "coordinates": {"allOf": [{}, {}]}}, "allOf": [{}]} |
|
geojson.json | For type `MultiPoint`, the `coordinates` member must be an array of positions. | {"required": ["coordinates"], "properties": {"type": {"enum": ["MultiPoint"]}, "coordinates": {"allOf": [{}, {"items": {}}]}}, "allOf": [{}]} |
|
geojson.json | For type `LineString`, the `coordinates` member must be an array of two or more positions.
A LinearRing is closed LineString with 4 or more positions. The first and last positions are equivalent (they represent equivalent points). Though a LinearRing is not explicitly represented as a GeoJSON geometry type, it is referred to in the Polygon geometry type definition. | {"required": ["coordinates"], "properties": {"type": {"enum": ["LineString"]}, "coordinates": {}}, "allOf": [{}]} |
|
geojson.json | For type `MultiLineString`, the `coordinates` member must be an array of LineString coordinate arrays. | {"required": ["coordinates"], "properties": {"type": {"enum": ["MultiLineString"]}, "coordinates": {"allOf": [{}, {"items": {}}]}}, "allOf": [{}]} |
|
geojson.json | For type `Polygon`, the `coordinates` member must be an array of LinearRing coordinate arrays. For Polygons with multiple rings, the first must be the exterior ring and any others must be interior rings or holes. | {"required": ["coordinates"], "properties": {"type": {"enum": ["Polygon"]}, "coordinates": {}}, "allOf": [{}]} |
|
geojson.json | For type `MultiPolygon`, the `coordinates` member must be an array of Polygon coordinate arrays. | {"required": ["coordinates"], "properties": {"type": {"enum": ["MultiPolygon"]}, "coordinates": {"allOf": [{}, {"items": {}}]}}, "allOf": [{}]} |
|
geojson.json | A GeoJSON object with type `GeometryCollection` is a geometry object which represents a collection of geometry objects.
A geometry collection must have a member with the name `geometries`. The value corresponding to `geometries` is an array. Each element in this array is a GeoJSON geometry object. | {"required": ["geometries"], "properties": {"type": {"enum": ["GeometryCollection"]}, "geometries": {"type": "array", "items": {}}}, "allOf": [{}]} |
|
geojson.json | A GeoJSON object with the type `FeatureCollection` is a feature collection object.
An object of type `FeatureCollection` must have a member with the name `features`. The value corresponding to `features` is an array. Each element in the array is a feature object as defined above. | {"required": ["features"], "properties": {"type": {"enum": ["FeatureCollection"]}, "features": {"type": "array", "items": {}}}} |
|
geojson.json | type | The type of GeoJSON object. | {"type": "string", "enum": ["Point", "MultiPoint", "LineString", "MultiLineString", "Polygon", "MultiPolygon", "GeometryCollection", "Feature", "FeatureCollection"]} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.