This file is indexed.

/usr/share/pyshared/validictory-0.8.3.egg-info/PKG-INFO is in python-validictory 0.8.3-2.

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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
Metadata-Version: 1.0
Name: validictory
Version: 0.8.3
Summary: general purpose python data validator
Home-page: http://github.com/sunlightlabs/validictory
Author: James Turk
Author-email: jturk@sunlightfoundation.com
License: MIT License
Description: ===========
        validictory
        ===========
        
        A general purpose Python data validator.
        
        Works with Python 2.6+ (Including Python 3)
        
        Schema format based on JSON Schema Proposal (http://json-schema.org)
        
        Contains code derived from jsonschema, by Ian Lewis and Yusuke Muraoka.
        
        Usage
        =====
        
        JSON documents and schema must first be loaded into a Python dictionary type
        before it can be validated.
        
        Parsing a simple JSON document::
        
            >>> import validictory
            >>>
            >>> validictory.validate("simplejson", {"type":"string"})
        
        Parsing a more complex JSON document::
        
            >>> import simplejson
            >>> import validictory
            >>>
            >>> data = simplejson.loads('["foo", {"bar":["baz", null, 1.0, 2]}]')
            >>> schema = {
            ...   "type":"array",
            ...   "items":[
            ...     {"type":"string"},
            ...     {"type":"object",
            ...      "properties":{
            ...        "bar":{
            ...          "items":[
            ...            {"type":"string"},
            ...            {"type":"any"},
            ...            {"type":"number"},
            ...            {"type":"integer"}
            ...          ]
            ...        }
            ...      }
            ...    }
            ...   ]
            ... }
            >>> validictory.validate(data,schema)
        
        Catch ValueErrors to handle validation issues::
        
            >>> import validictory
            >>>
            >>> try:
            ...     validictory.validate("simplejson", {"type":"string","minLength":15})
            ... except ValueError, error:
            ...     print error
            ...
            Length of value 'simplejson' for field '_data' must be greater than or equal to 15
        
Platform: any