includes/nav cleanup
[disclosr.git] / schemas / agency.json.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
 
$schemas['agency'] = Array(
    "description" => "Representation of government agency and online transparency measures",
    "type" => "object",
    "properties" => Array(
        "name" => Array("type" => "string", "required" => true, "description" => "Agency Name, most recent and broadest"),
        "othernames" => Array("type" => "array", "required" => true, "description" => "Agency Names",
            "items" => Array("type" => "string")),
    ),
    /*"org":{"type":"object",
                "properties":{
                        "organizationName":{"type":"string"},
                        "organizationUnit":{"type":"string"}},
                }
        }*/
);
?>