~ubuntu-branches/ubuntu/wily/openvswitch/wily

« back to all changes in this revision

Viewing changes to tests/idltest2.ovsschema

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2015-08-10 11:35:15 UTC
  • mfrom: (1.1.30)
  • Revision ID: package-import@ubuntu.com-20150810113515-575vj06oq29emxsn
Tags: 2.4.0~git20150810.97bab95-0ubuntu1
* New upstream snapshot from 2.4 branch:
  - d/*: Align any relevant packaging changes with upstream.
* d/*: wrap-and-sort.
* d/openvswitch-{common,vswitch}.install: Correct install location for
  bash completion files.
* d/tests/openflow.py: Explicitly use ovs-testcontroller as provided
  by 2.4.0 release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{
 
2
  "name": "idltest",
 
3
  "version": "1.2.3",
 
4
  "tables": {
 
5
    "link1": {
 
6
      "columns": {
 
7
        "i": {
 
8
          "type": "integer"
 
9
        },
 
10
        "k": {
 
11
          "type": {
 
12
            "key": {
 
13
              "type": "uuid",
 
14
              "refTable": "link1"
 
15
            }
 
16
          }
 
17
        },
 
18
        "ka": {
 
19
          "type": {
 
20
            "key": {
 
21
              "type": "uuid",
 
22
              "refTable": "link1"
 
23
            },
 
24
            "max": "unlimited",
 
25
            "min": 0
 
26
          }
 
27
        }
 
28
      }
 
29
    },
 
30
    "simple": {
 
31
      "columns": {
 
32
        "b": {
 
33
          "type": "boolean"
 
34
        },
 
35
        "ba": {
 
36
          "type": {
 
37
            "key": "boolean",
 
38
            "max": 1,
 
39
            "min": 0
 
40
          }
 
41
        },
 
42
        "i": {
 
43
          "type": "integer"
 
44
        },
 
45
        "ia": {
 
46
          "type": {
 
47
            "key": "integer",
 
48
            "max": "unlimited",
 
49
            "min": 0
 
50
          }
 
51
        },
 
52
        "r": {
 
53
          "type": "real"
 
54
        },
 
55
        "ra": {
 
56
          "type": {
 
57
            "key": "real",
 
58
            "max": "unlimited",
 
59
            "min": 0
 
60
          }
 
61
        },
 
62
        "s": {
 
63
          "type": "string"
 
64
        },
 
65
        "sa": {
 
66
          "type": {
 
67
            "key": "string",
 
68
            "max": "unlimited",
 
69
            "min": 0
 
70
          }
 
71
        },
 
72
        "u": {
 
73
          "type": "uuid"
 
74
        },
 
75
        "ua": {
 
76
          "type": {
 
77
            "key": "uuid",
 
78
            "max": "unlimited",
 
79
            "min": 0
 
80
          }
 
81
        }
 
82
      }
 
83
    }
 
84
  }
 
85
}