This file is indexed.

/usr/lib/python3/dist-packages/designateclient/resources/schemas/v1/domain.json is in python3-designateclient 2.9.0-0ubuntu1.

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
71
72
73
74
75
76
{
    "id": "domain",

    "$schema": "http://json-schema.org/draft-03/hyper-schema",

    "title": "domain",
    "description": "Domain",
    "additionalProperties": false,

    "properties": {
        "id": {
            "type": "string",
            "description": "Domain Identifier",
            "pattern": "^([0-9a-fA-F]){8}-([0-9a-fA-F]){4}-([0-9a-fA-F]){4}-([0-9a-fA-F]){4}-([0-9a-fA-F]){12}$",
            "readonly": true
        },
        "name": {
            "type": "string",
            "description": "Domain name",
            "format": "domain-name",
            "maxLength": 255,
            "required": true,
            "readonly": true
        },
        "email": {
            "type": "string",
            "description": "Hostmaster email address",
            "format": "email",
            "maxLength": 255,
            "required": true
        },
        "ttl": {
            "type": "integer",
            "description": "Time to live",
            "minimum": 1,
            "maximum": 2147483647
        },
        "serial": {
            "type": "integer",
            "description": "Serial Number",
            "minimum": 1,
            "maximum": 4294967295,
            "readonly": true
        },
        "description": {
            "type": ["string", "null"],
            "description": "Description for the Domain",
            "maxLength": 160
        },
        "created_at": {
            "type": "string",
            "description": "Date and time of domain creation",
            "format": "date-time",
            "readonly": true
        },
        "updated_at": {
            "type": ["string", "null"],
            "description": "Date and time of last domain update",
            "format": "date-time",
            "readonly": true
        }
    },
    "links": [{
        "rel": "self",
        "href": "/domains/{id}"
    }, {
        "rel": "records",
        "href": "/domains/{id}/records"
    }, {
        "rel": "servers",
        "href": "/domains/{id}/servers"
    }, {
        "rel": "collection",
        "href": "/domains"
    }]
}