This file is indexed.

/usr/lib/python2.7/dist-packages/pywps/schemas/geojson/crs.json is in python-pywps 4.0.0-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
    "$schema": "http://json-schema.org/draft-04/schema#",
    "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": {
            "properties": {
                "type": { "enum": [ "name" ] },
                "properties": {
                    "required": [ "name" ],
                    "additionalProperties": false,
                    "properties": {
                        "name": {
                            "type": "string",
                            "FIXME": "semantic validation necessary"
                        }
                    }
                }
            }
        },
        "linkedObject": {
            "type": "object",
            "required": [ "href" ],
            "properties": {
                "href": {
                    "type": "string",
                    "format": "uri",
                    "FIXME": "spec says \"dereferenceable\", cannot enforce that"
                },
                "type": {
                    "type": "string",
                    "description": "Suggested values: proj4, ogjwkt, esriwkt"
                }
            }
        },
        "linkedCrs": {
            "properties": {
                "type": { "enum": [ "link" ] },
                "properties": { "$ref": "#/definitions/linkedObject" }
            }
        }
    }
}