blob: b233a680a9e84a6119bc9c02cb854fac04f6d3f1 [file] [log] [blame]
Jian Li9b199162019-02-10 18:00:35 +09001{
2 "type": "object",
3 "description": "An IPAM object.",
4 "required": [
5 "ipamId",
6 "networkId",
7 "ipAddress"
8 ],
9 "properties": {
10 "ipamId": {
11 "type": "string",
12 "example": "sona-network-10.10.10.2",
13 "description": "The ID of the IPAM."
14 },
15 "networkId": {
16 "type": "string",
17 "example": "sona-network",
18 "description": "The ID of the attached network."
19 },
20 "ipAddress": {
21 "type": "string",
22 "example": "10.10.10.2",
23 "description": "The IP address of IPAM."
24 }
25 }
26}