Sha256: 6e030a9f26ecd6e00e62b533d0932d8b63c2a62ecb1a040d6058531f6adafcf6

Contents?: true

Size: 1.7 KB

Versions: 5

Compression:

Stored size: 1.7 KB

Contents

{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "id": "crs.json#",
    "title": "crs",
    "description": "a Coordinate Reference System object",
    "type": [ "object", "null" ],
    "required": [ "type", "properties" ],
    "properties": {
        "type": { "type": "string" },
        "properties": { "type": "object" }
    },
    "additionalProperties": false,
    "oneOf": [
        { "$ref": "#/definitions/namedCrs" },
        { "$ref": "#/definitions/linkedCrs" }
    ],
    "definitions": {
        "namedCrs": {
            "title": "namedCrs",
            "properties": {
                "type": { "enum": [ "name" ] },
                "properties": {
                    "required": [ "name" ],
                    "additionalProperties": false,
                    "properties": {
                        "name": {
                            "type": "string",
                            "FIXME": "semantic validation necessary"
                        }
                    }
                }
            }
        },
        "linkedObject": {
            "type": "object",
            "title": "linkedObject",
            "required": [ "href" ],
            "properties": {
                "href": {
                  "$ref": "../../schema.json#/definitions/url"
                },
                "type": {
                    "type": "string",
                    "description": "Suggested values: proj4, ogjwkt, esriwkt"
                }
            }
        },
        "linkedCrs": {
            "title": "linkedCrs",
            "properties": {
                "type": { "enum": [ "link" ] },
                "properties": { "$ref": "#/definitions/linkedObject" }
            }
        }
    }
}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
adiwg-json_schemas-0.8.1 schema/schema/geojson/crs.json
adiwg-json_schemas-0.8.0 schema/schema/geojson/crs.json
adiwg-json_schemas-0.7.0 schema/schema/geojson/crs.json
adiwg-json_schemas-0.5.2 schema/schema/geojson/crs.json
adiwg-json_schemas-0.5.0 schema/schema/geojson/crs.json