Merge branch 'master' into vnffg
[osm/RO.git] / osm_ro / openmano_schemas.py
1 # -*- coding: utf-8 -*-
2
3 ##
4 # Copyright 2015 Telefónica Investigación y Desarrollo, S.A.U.
5 # This file is part of openmano
6 # All Rights Reserved.
7 #
8 # Licensed under the Apache License, Version 2.0 (the "License"); you may
9 # not use this file except in compliance with the License. You may obtain
10 # a copy of the License at
11 #
12 # http://www.apache.org/licenses/LICENSE-2.0
13 #
14 # Unless required by applicable law or agreed to in writing, software
15 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
16 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
17 # License for the specific language governing permissions and limitations
18 # under the License.
19 #
20 # For those usages not covered by the Apache License, Version 2.0 please
21 # contact with: nfvlabs@tid.es
22 ##
23
24 '''
25 JSON schemas used by openmano httpserver.py module to parse the different files and messages sent through the API
26 '''
27 __author__="Alfonso Tierno, Gerardo Garcia, Pablo Montes"
28 __date__ ="$09-oct-2014 09:09:48$"
29
30 #Basis schemas
31 patern_name="^[ -~]+$"
32 passwd_schema={"type" : "string", "minLength":1, "maxLength":60}
33 nameshort_schema={"type" : "string", "minLength":1, "maxLength":60, "pattern" : "^[^,;()'\"]+$"}
34 name_schema={"type" : "string", "minLength":1, "maxLength":255, "pattern" : "^[^,;()'\"]+$"}
35 xml_text_schema={"type" : "string", "minLength":1, "maxLength":1000, "pattern" : "^[^']+$"}
36 description_schema={"type" : ["string","null"], "maxLength":255, "pattern" : "^[^'\"]+$"}
37 id_schema_fake = {"type" : "string", "minLength":2, "maxLength":36 } #"pattern": "^[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}$"
38 id_schema = {"type" : "string", "pattern": "^[a-fA-F0-9]{8}(-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}$"}
39 pci_schema={"type":"string", "pattern":"^[0-9a-fA-F]{4}(:[0-9a-fA-F]{2}){2}\.[0-9a-fA-F]$"}
40 http_schema={"type":"string", "pattern":"^https?://[^'\"=]+$"}
41 bandwidth_schema={"type":"string", "pattern" : "^[0-9]+ *([MG]bps)?$"}
42 memory_schema={"type":"string", "pattern" : "^[0-9]+ *([MG]i?[Bb])?$"}
43 integer0_schema={"type":"integer","minimum":0}
44 integer1_schema={"type":"integer","minimum":1}
45 path_schema={"type":"string", "pattern":"^(\.){0,2}(/[^/\"':{}\(\)]+)+$"}
46 vlan_schema={"type":"integer","minimum":1,"maximum":4095}
47 vlan1000_schema={"type":"integer","minimum":1000,"maximum":4095}
48 mac_schema={"type":"string", "pattern":"^[0-9a-fA-F][02468aceACE](:[0-9a-fA-F]{2}){5}$"} #must be unicast LSB bit of MSB byte ==0
49 #mac_schema={"type":"string", "pattern":"^([0-9a-fA-F]{2}:){5}[0-9a-fA-F]{2}$"}
50 ip_schema={"type":"string","pattern":"^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$"}
51 ip_prefix_schema={"type":"string","pattern":"^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)/(30|[12]?[0-9])$"}
52 port_schema={"type":"integer","minimum":1,"maximum":65534}
53 object_schema={"type":"object"}
54 schema_version_2={"type":"integer","minimum":2,"maximum":2}
55 #schema_version_string={"type":"string","enum": ["0.1", "2", "0.2", "3", "0.3"]}
56 log_level_schema={"type":"string", "enum":["DEBUG", "INFO", "WARNING","ERROR","CRITICAL"]}
57 checksum_schema={"type":"string", "pattern":"^[0-9a-fA-F]{32}$"}
58 size_schema={"type":"integer","minimum":1,"maximum":100}
59
60 metadata_schema={
61 "type":"object",
62 "properties":{
63 "architecture": {"type":"string"},
64 "use_incremental": {"type":"string","enum":["yes","no"]},
65 "vpci": pci_schema,
66 "os_distro": {"type":"string"},
67 "os_type": {"type":"string"},
68 "os_version": {"type":"string"},
69 "bus": {"type":"string"},
70 "topology": {"type":"string", "enum": ["oneSocket"]}
71 }
72 }
73
74 #Schema for the configuration file
75 config_schema = {
76 "title":"configuration response information schema",
77 "$schema": "http://json-schema.org/draft-04/schema#",
78 "type":"object",
79 "properties":{
80 "http_port": port_schema,
81 "http_admin_port": port_schema,
82 "http_host": nameshort_schema,
83 "auto_push_VNF_to_VIMs": {"type":"boolean"},
84 "vnf_repository": path_schema,
85 "db_host": nameshort_schema,
86 "db_user": nameshort_schema,
87 "db_passwd": {"type":"string"},
88 "db_name": nameshort_schema,
89 "db_ovim_host": nameshort_schema,
90 "db_ovim_user": nameshort_schema,
91 "db_ovim_passwd": {"type":"string"},
92 "db_ovim_name": nameshort_schema,
93 # Next fields will disappear once the MANO API includes appropriate primitives
94 "vim_url": http_schema,
95 "vim_url_admin": http_schema,
96 "vim_name": nameshort_schema,
97 "vim_tenant_name": nameshort_schema,
98 "mano_tenant_name": nameshort_schema,
99 "mano_tenant_id": id_schema,
100 "http_console_proxy": {"type":"boolean"},
101 "http_console_host": nameshort_schema,
102 "http_console_ports": {
103 "type": "array",
104 "items": {"OneOf" : [
105 port_schema,
106 {"type":"object", "properties":{"from": port_schema, "to": port_schema}, "required": ["from","to"]}
107 ]}
108 },
109 "log_level": log_level_schema,
110 "log_socket_level": log_level_schema,
111 "log_level_db": log_level_schema,
112 "log_level_vim": log_level_schema,
113 "log_level_nfvo": log_level_schema,
114 "log_level_http": log_level_schema,
115 "log_level_console": log_level_schema,
116 "log_level_ovim": log_level_schema,
117 "log_file_db": path_schema,
118 "log_file_vim": path_schema,
119 "log_file_nfvo": path_schema,
120 "log_file_http": path_schema,
121 "log_file_console": path_schema,
122 "log_file_ovim": path_schema,
123 "log_socket_host": nameshort_schema,
124 "log_socket_port": port_schema,
125 "log_file": path_schema,
126 },
127 "required": ['db_user', 'db_passwd', 'db_name'],
128 "additionalProperties": False
129 }
130
131 tenant_schema = {
132 "title":"tenant information schema",
133 "$schema": "http://json-schema.org/draft-04/schema#",
134 "type":"object",
135 "properties":{
136 "tenant":{
137 "type":"object",
138 "properties":{
139 "name": nameshort_schema,
140 "description": description_schema,
141 },
142 "required": ["name"],
143 "additionalProperties": True
144 }
145 },
146 "required": ["tenant"],
147 "additionalProperties": False
148 }
149
150 tenant_edit_schema = {
151 "title":"tenant edit information schema",
152 "$schema": "http://json-schema.org/draft-04/schema#",
153 "type":"object",
154 "properties":{
155 "tenant":{
156 "type":"object",
157 "properties":{
158 "name": name_schema,
159 "description": description_schema,
160 },
161 "additionalProperties": False
162 }
163 },
164 "required": ["tenant"],
165 "additionalProperties": False
166 }
167
168 datacenter_schema_properties={
169 "name": name_schema,
170 "description": description_schema,
171 "type": nameshort_schema, #currently "openvim" or "openstack", can be enlarged with plugins
172 "vim_url": description_schema,
173 "vim_url_admin": description_schema,
174 "config": { "type":"object" }
175 }
176
177 datacenter_schema = {
178 "title":"datacenter information schema",
179 "$schema": "http://json-schema.org/draft-04/schema#",
180 "type":"object",
181 "properties":{
182 "datacenter":{
183 "type":"object",
184 "properties":datacenter_schema_properties,
185 "required": ["name", "vim_url"],
186 "additionalProperties": True
187 }
188 },
189 "required": ["datacenter"],
190 "additionalProperties": False
191 }
192
193
194 datacenter_edit_schema = {
195 "title":"datacenter edit nformation schema",
196 "$schema": "http://json-schema.org/draft-04/schema#",
197 "type":"object",
198 "properties":{
199 "datacenter":{
200 "type":"object",
201 "properties":datacenter_schema_properties,
202 "additionalProperties": False
203 }
204 },
205 "required": ["datacenter"],
206 "additionalProperties": False
207 }
208
209
210 netmap_new_schema = {
211 "title":"netmap new information schema",
212 "$schema": "http://json-schema.org/draft-04/schema#",
213 "type":"object",
214 "properties":{
215 "netmap":{ #delete from datacenter
216 "type":"object",
217 "properties":{
218 "name": name_schema, #name or uuid of net to change
219 "vim_id": id_schema,
220 "vim_name": name_schema
221 },
222 "minProperties": 1,
223 "additionalProperties": False
224 },
225 },
226 "required": ["netmap"],
227 "additionalProperties": False
228 }
229
230 netmap_edit_schema = {
231 "title":"netmap edit information schema",
232 "$schema": "http://json-schema.org/draft-04/schema#",
233 "type":"object",
234 "properties":{
235 "netmap":{ #delete from datacenter
236 "type":"object",
237 "properties":{
238 "name": name_schema, #name or uuid of net to change
239 },
240 "minProperties": 1,
241 "additionalProperties": False
242 },
243 },
244 "required": ["netmap"],
245 "additionalProperties": False
246 }
247
248 datacenter_action_schema = {
249 "title":"datacenter action information schema",
250 "$schema": "http://json-schema.org/draft-04/schema#",
251 "type":"object",
252 "properties":{
253 "net-update":{"type":"null",},
254 "net-edit":{
255 "type":"object",
256 "properties":{
257 "net": name_schema, #name or uuid of net to change
258 "name": name_schema,
259 "description": description_schema,
260 "shared": {"type": "boolean"}
261 },
262 "minProperties": 1,
263 "additionalProperties": False
264 },
265 "net-delete":{
266 "type":"object",
267 "properties":{
268 "net": name_schema, #name or uuid of net to change
269 },
270 "required": ["net"],
271 "additionalProperties": False
272 },
273 },
274 "minProperties": 1,
275 "maxProperties": 1,
276 "additionalProperties": False
277 }
278
279
280 datacenter_associate_schema={
281 "title":"datacenter associate information schema",
282 "$schema": "http://json-schema.org/draft-04/schema#",
283 "type":"object",
284 "properties":{
285 "datacenter":{
286 "type":"object",
287 "properties":{
288 "vim_tenant": name_schema,
289 "vim_tenant_name": name_schema,
290 "vim_username": nameshort_schema,
291 "vim_password": nameshort_schema,
292 "config": {"type": "object"}
293 },
294 # "required": ["vim_tenant"],
295 "additionalProperties": True
296 }
297 },
298 "required": ["datacenter"],
299 "additionalProperties": False
300 }
301
302 dhcp_schema = {
303 "title":"DHCP schema",
304 "$schema": "http://json-schema.org/draft-04/schema#",
305 "type":"object",
306 "properties":{
307 "enabled": {"type": "boolean"},
308 "start-address": ip_schema,
309 "count": integer1_schema
310 },
311 "required": ["enabled", "start-address", "count"],
312 }
313
314 ip_profile_schema = {
315 "title":"IP profile schema",
316 "$schema": "http://json-schema.org/draft-04/schema#",
317 "type":"object",
318 "properties":{
319 "ip-version": {"type": "string", "enum": ["IPv4","IPv6"]},
320 "subnet-address": ip_prefix_schema,
321 "gateway-address": ip_schema,
322 "dns-address": {"oneOf": [ip_schema, # for backward compatibility
323 {"type": "array", "items": ip_schema}]},
324 "dhcp": dhcp_schema
325 },
326 }
327
328 key_pair_schema = {
329 "title": "Key-pair schema for cloud-init configuration schema",
330 "$schema": "http://json-schema.org/draft-04/schema#",
331 "type":"object",
332 "properties":{
333 "name": name_schema,
334 "key": {"type":"string"}
335 },
336 "required": ["key"],
337 "additionalProperties": False
338 }
339
340 cloud_config_user_schema = {
341 "title": "User schema for cloud-init configuration schema",
342 "$schema": "http://json-schema.org/draft-04/schema#",
343 "type":"object",
344 "properties":{
345 "name": nameshort_schema,
346 "user-info": {"type":"string"},
347 #"key-pairs": {"type" : "array", "items": key_pair_schema}
348 "key-pairs": {"type" : "array", "items": {"type":"string"}}
349 },
350 "required": ["name"],
351 "additionalProperties": False
352 }
353
354 cloud_config_schema = {
355 "title": "Cloud-init configuration schema",
356 "$schema": "http://json-schema.org/draft-04/schema#",
357 "type":"object",
358 "properties":{
359 #"key-pairs": {"type" : "array", "items": key_pair_schema},
360 "key-pairs": {"type" : "array", "items": {"type":"string"}},
361 "users": {"type" : "array", "items": cloud_config_user_schema}
362 },
363 "additionalProperties": False
364 }
365
366 internal_connection_element_schema = {
367 "type":"object",
368 "properties":{
369 "VNFC": name_schema,
370 "local_iface_name": name_schema
371 }
372 }
373
374 internal_connection_element_schema_v02 = {
375 "type":"object",
376 "properties":{
377 "VNFC": name_schema,
378 "local_iface_name": name_schema,
379 "ip_address": ip_schema
380 }
381 }
382
383 internal_connection_schema = {
384 "type":"object",
385 "properties":{
386 "name": name_schema,
387 "description":description_schema,
388 "type":{"type":"string", "enum":["bridge","data","ptp"]},
389 "elements": {"type" : "array", "items": internal_connection_element_schema, "minItems":1}
390 },
391 "required": ["name", "type", "elements"],
392 "additionalProperties": False
393 }
394
395 internal_connection_schema_v02 = {
396 "type":"object",
397 "properties":{
398 "name": name_schema,
399 "description":description_schema,
400 "type": {"type": "string", "enum":["e-line", "e-lan"]},
401 "implementation": {"type": "string", "enum":["overlay", "underlay"]},
402 "ip-profile": ip_profile_schema,
403 "elements": {"type" : "array", "items": internal_connection_element_schema_v02, "minItems":1}
404 },
405 "required": ["name", "type", "implementation", "elements"],
406 "additionalProperties": False
407 }
408
409 external_connection_schema = {
410 "type":"object",
411 "properties":{
412 "name": name_schema,
413 "type":{"type":"string", "enum":["mgmt","bridge","data"]},
414 "VNFC": name_schema,
415 "local_iface_name": name_schema ,
416 "description":description_schema
417 },
418 "required": ["name", "type", "VNFC", "local_iface_name"],
419 "additionalProperties": False
420 }
421
422 #Not yet used
423 external_connection_schema_v02 = {
424 "type":"object",
425 "properties":{
426 "name": name_schema,
427 "mgmt": {"type":"boolean"},
428 "type": {"type": "string", "enum":["e-line", "e-lan"]},
429 "implementation": {"type": "string", "enum":["overlay", "underlay"]},
430 "VNFC": name_schema,
431 "local_iface_name": name_schema ,
432 "description":description_schema
433 },
434 "required": ["name", "type", "VNFC", "local_iface_name"],
435 "additionalProperties": False
436 }
437
438 interfaces_schema={
439 "type":"array",
440 "items":{
441 "type":"object",
442 "properties":{
443 "name":name_schema,
444 "dedicated":{"type":"string","enum":["yes","no","yes:sriov"]},
445 "bandwidth":bandwidth_schema,
446 "vpci":pci_schema,
447 "mac_address": mac_schema
448 },
449 "additionalProperties": False,
450 "required": ["name","dedicated", "bandwidth"]
451 }
452 }
453
454 bridge_interfaces_schema={
455 "type":"array",
456 "items":{
457 "type":"object",
458 "properties":{
459 "name": name_schema,
460 "bandwidth":bandwidth_schema,
461 "vpci":pci_schema,
462 "mac_address": mac_schema,
463 "model": {"type":"string", "enum":["virtio","e1000","ne2k_pci","pcnet","rtl8139"]},
464 "port-security": {"type" : "boolean"},
465 "floating-ip": {"type" : "boolean"}
466 },
467 "additionalProperties": False,
468 "required": ["name"]
469 }
470 }
471
472 devices_schema={
473 "type":"array",
474 "items":{
475 "type":"object",
476 "properties":{
477 "type":{"type":"string", "enum":["disk","cdrom","xml"] },
478 "image": path_schema,
479 "image name": name_schema,
480 "image checksum": checksum_schema,
481 "image metadata": metadata_schema,
482 "size": size_schema,
483 "vpci":pci_schema,
484 "xml":xml_text_schema,
485 },
486 "additionalProperties": False,
487 "required": ["type"]
488 }
489 }
490
491
492 numa_schema = {
493 "type": "object",
494 "properties": {
495 "memory":integer1_schema,
496 "cores":integer1_schema,
497 "paired-threads":integer1_schema,
498 "threads":integer1_schema,
499 "cores-id":{"type":"array","items":integer0_schema},
500 "paired-threads-id":{"type":"array","items":{"type":"array","minItems":2,"maxItems":2,"items":integer0_schema}},
501 "threads-id":{"type":"array","items":integer0_schema},
502 "interfaces":interfaces_schema
503 },
504 "additionalProperties": False,
505 #"required": ["memory"]
506 }
507
508 config_files_schema = {
509 "title": "Config files for cloud init schema",
510 "$schema": "http://json-schema.org/draft-04/schema#",
511 "type": "object",
512 "properties": {
513 "dest": path_schema,
514 "encoding": {"type": "string", "enum": ["b64", "base64", "gz", "gz+b64", "gz+base64", "gzip+b64", "gzip+base64"]}, #by default text
515 "content": {"type": "string"},
516 "permissions": {"type": "string"}, # tiypically octal notation '0644'
517 "owner": {"type": "string"}, # format: owner:group
518
519 },
520 "additionalProperties": False,
521 "required": ["dest", "content"],
522 }
523
524 boot_data_vdu_schema = {
525 "title": "Boot data (Cloud-init) configuration schema",
526 "$schema": "http://json-schema.org/draft-04/schema#",
527 "type": "object",
528 "properties":{
529 "key-pairs": {"type" : "array", "items": {"type":"string"}},
530 "users": {"type" : "array", "items": cloud_config_user_schema},
531 "user-data": {"type" : "string"}, # scrip to run
532 "config-files": {"type": "array", "items": config_files_schema},
533 # NOTE: “user-data” are mutually exclusive with users and config-files because user/files are injected using user-data
534 "boot-data-drive": {"type": "boolean"},
535 },
536 "additionalProperties": False,
537 }
538
539 vnfc_schema = {
540 "type":"object",
541 "properties":{
542 "name": name_schema,
543 "description": description_schema,
544 "count": integer1_schema,
545 "image name": name_schema,
546 "availability_zone": name_schema,
547 "VNFC image": {"oneOf": [path_schema, http_schema]},
548 "image checksum": checksum_schema,
549 "image metadata": metadata_schema,
550 #"cloud-config": cloud_config_schema, #common for all vnfs in the scenario
551 "processor": {
552 "type":"object",
553 "properties":{
554 "model":description_schema,
555 "features":{"type":"array","items":nameshort_schema}
556 },
557 "required": ["model"],
558 "additionalProperties": False
559 },
560 "hypervisor": {
561 "type":"object",
562 "properties":{
563 "type":nameshort_schema,
564 "version":description_schema
565 },
566 },
567 "ram":integer0_schema,
568 "vcpus":integer0_schema,
569 "disk": integer1_schema,
570 "numas": {
571 "type": "array",
572 "items": numa_schema
573 },
574 "bridge-ifaces": bridge_interfaces_schema,
575 "devices": devices_schema,
576 "boot-data" : boot_data_vdu_schema
577
578 },
579 "required": ["name"],
580 "oneOf": [
581 {"required": ["VNFC image"]},
582 {"required": ["image name"]}
583 ],
584 "additionalProperties": False
585 }
586
587 vnfd_schema_v01 = {
588 "title":"vnfd information schema v0.1",
589 "$schema": "http://json-schema.org/draft-04/schema#",
590 "type":"object",
591 "properties":{
592 "vnf":{
593 "type":"object",
594 "properties":{
595 "name": name_schema,
596 "description": description_schema,
597
598 "class": nameshort_schema,
599 "public": {"type" : "boolean"},
600 "physical": {"type" : "boolean"},
601 "tenant_id": id_schema, #only valid for admin
602 "external-connections": {"type" : "array", "items": external_connection_schema, "minItems":1},
603 "internal-connections": {"type" : "array", "items": internal_connection_schema, "minItems":1},
604 "VNFC":{"type" : "array", "items": vnfc_schema, "minItems":1}
605 },
606 "required": ["name","external-connections"],
607 "additionalProperties": True
608 }
609 },
610 "required": ["vnf"],
611 "additionalProperties": False
612 }
613
614 #VNFD schema for OSM R1
615 vnfd_schema_v02 = {
616 "title":"vnfd information schema v0.2",
617 "$schema": "http://json-schema.org/draft-04/schema#",
618 "type":"object",
619 "properties":{
620 "schema_version": {"type": "string", "enum": ["0.2"]},
621 "vnf":{
622 "type":"object",
623 "properties":{
624 "name": name_schema,
625 "description": description_schema,
626 "class": nameshort_schema,
627 "public": {"type" : "boolean"},
628 "physical": {"type" : "boolean"},
629 "tenant_id": id_schema, #only valid for admin
630 "external-connections": {"type" : "array", "items": external_connection_schema, "minItems":1},
631 "internal-connections": {"type" : "array", "items": internal_connection_schema_v02, "minItems":1},
632 # "cloud-config": cloud_config_schema, #common for all vnfcs
633 "VNFC":{"type" : "array", "items": vnfc_schema, "minItems":1}
634 },
635 "required": ["name"],
636 "additionalProperties": True
637 }
638 },
639 "required": ["vnf", "schema_version"],
640 "additionalProperties": False
641 }
642
643 #vnfd_schema = vnfd_schema_v01
644 #{
645 # "title":"vnfd information schema v0.2",
646 # "$schema": "http://json-schema.org/draft-04/schema#",
647 # "oneOf": [vnfd_schema_v01, vnfd_schema_v02]
648 #}
649
650 graph_schema = {
651 "title":"graphical scenario descriptor information schema",
652 "$schema": "http://json-schema.org/draft-04/schema#",
653 "type":"object",
654 "properties":{
655 "x": integer0_schema,
656 "y": integer0_schema,
657 "ifaces": {
658 "type":"object",
659 "properties":{
660 "left": {"type":"array"},
661 "right": {"type":"array"},
662 "bottom": {"type":"array"},
663 }
664 }
665 },
666 "required": ["x","y"]
667 }
668
669 nsd_schema_v01 = {
670 "title":"network scenario descriptor information schema v0.1",
671 "$schema": "http://json-schema.org/draft-04/schema#",
672 "type":"object",
673 "properties":{
674 "name":name_schema,
675 "description": description_schema,
676 "tenant_id": id_schema, #only valid for admin
677 "public": {"type": "boolean"},
678 "topology":{
679 "type":"object",
680 "properties":{
681 "nodes": {
682 "type":"object",
683 "patternProperties":{
684 ".": {
685 "type": "object",
686 "properties":{
687 "type":{"type":"string", "enum":["VNF", "other_network", "network", "external_network"]},
688 "vnf_id": id_schema,
689 "graph": graph_schema,
690 },
691 "patternProperties":{
692 "^(VNF )?model$": {"type": "string"}
693 },
694 "required": ["type"]
695 }
696 }
697 },
698 "connections": {
699 "type":"object",
700 "patternProperties":{
701 ".": {
702 "type": "object",
703 "properties":{
704 "nodes":{"oneOf":[{"type":"object", "minProperties":2}, {"type":"array", "minLength":1}]},
705 "type": {"type": "string", "enum":["link", "external_network", "dataplane_net", "bridge_net"]},
706 "graph": graph_schema
707 },
708 "required": ["nodes"]
709 },
710 }
711 }
712 },
713 "required": ["nodes"],
714 "additionalProperties": False
715 }
716 },
717 "required": ["name","topology"],
718 "additionalProperties": False
719 }
720
721 nsd_schema_v02 = {
722 "title":"network scenario descriptor information schema v0.2",
723 "$schema": "http://json-schema.org/draft-04/schema#",
724 "type":"object",
725 "properties":{
726 "schema_version": schema_version_2,
727 "scenario":{
728 "type":"object",
729 "properties":{
730 "name": name_schema,
731 "description": description_schema,
732 "tenant_id": id_schema, #only valid for admin
733 "public": {"type": "boolean"},
734 "vnfs": {
735 "type":"object",
736 "patternProperties":{
737 ".": {
738 "type": "object",
739 "properties":{
740 "vnf_id": id_schema,
741 "graph": graph_schema,
742 "vnf_name": name_schema,
743 },
744 }
745 },
746 "minProperties": 1
747 },
748 "networks": {
749 "type":"object",
750 "patternProperties":{
751 ".": {
752 "type": "object",
753 "properties":{
754 "interfaces":{"type":"array", "minLength":1},
755 "type": {"type": "string", "enum":["dataplane", "bridge"]},
756 "external" : {"type": "boolean"},
757 "graph": graph_schema
758 },
759 "required": ["interfaces"]
760 },
761 }
762 },
763
764 },
765 "required": ["vnfs", "name"],
766 "additionalProperties": False
767 }
768 },
769 "required": ["scenario","schema_version"],
770 "additionalProperties": False
771 }
772
773 #NSD schema for OSM R1
774 nsd_schema_v03 = {
775 "title":"network scenario descriptor information schema v0.3",
776 "$schema": "http://json-schema.org/draft-04/schema#",
777 "type":"object",
778 "properties":{
779 "schema_version": {"type": "string", "enum": ["0.3"]},
780 "scenario":{
781 "type":"object",
782 "properties":{
783 "name": name_schema,
784 "description": description_schema,
785 "tenant_id": id_schema, #only valid for admin
786 "public": {"type": "boolean"},
787 "cloud-config": cloud_config_schema, #common for all vnfs in the scenario
788 #"datacenter": name_schema,
789 "vnfs": {
790 "type":"object",
791 "patternProperties":{
792 ".": {
793 "type": "object",
794 "properties":{
795 "vnf_id": id_schema,
796 "graph": graph_schema,
797 "vnf_name": name_schema,
798 #"cloud-config": cloud_config_schema, #particular for a vnf
799 #"datacenter": name_schema,
800 "internal-connections": {
801 "type": "object",
802 "patternProperties": {
803 ".": {
804 "type": "object",
805 "properties": {
806 "ip-profile": ip_profile_schema,
807 "elements": {
808 "type" : "array",
809 "items":{
810 "type":"object",
811 "properties":{
812 "VNFC": name_schema,
813 "local_iface_name": name_schema,
814 "ip_address": ip_schema
815 },
816 "required": ["VNFC", "local_iface_name"],
817 }
818 }
819 }
820 }
821 }
822 }
823 },
824 }
825 },
826 "minProperties": 1
827 },
828 "networks": {
829 "type":"object",
830 "patternProperties":{
831 ".": {
832 "type": "object",
833 "properties":{
834 "interfaces":{
835 "type":"array",
836 "minLength":1,
837 "items":{
838 "type":"object",
839 "properties":{
840 "vnf": name_schema,
841 "vnf_interface": name_schema,
842 "ip_address": ip_schema
843 },
844 "required": ["vnf", "vnf_interface"],
845 }
846 },
847 "type": {"type": "string", "enum":["e-line", "e-lan"]},
848 "implementation": {"type": "string", "enum":["overlay", "underlay"]},
849 "external" : {"type": "boolean"},
850 "graph": graph_schema,
851 "ip-profile": ip_profile_schema
852 },
853 "required": ["interfaces"]
854 },
855 }
856 },
857
858 },
859 "required": ["vnfs", "networks","name"],
860 "additionalProperties": False
861 }
862 },
863 "required": ["scenario","schema_version"],
864 "additionalProperties": False
865 }
866
867 #scenario_new_schema = {
868 # "title":"new scenario information schema",
869 # "$schema": "http://json-schema.org/draft-04/schema#",
870 # #"oneOf": [nsd_schema_v01, nsd_schema_v02]
871 # "oneOf": [nsd_schema_v01]
872 #}
873
874 scenario_edit_schema = {
875 "title":"edit scenario information schema",
876 "$schema": "http://json-schema.org/draft-04/schema#",
877 "type":"object",
878 "properties":{
879 "name":name_schema,
880 "description": description_schema,
881 "topology":{
882 "type":"object",
883 "properties":{
884 "nodes": {
885 "type":"object",
886 "patternProperties":{
887 "^[a-fA-F0-9]{8}(-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}$": {
888 "type":"object",
889 "properties":{
890 "graph":{
891 "type": "object",
892 "properties":{
893 "x": integer0_schema,
894 "y": integer0_schema,
895 "ifaces":{ "type": "object"}
896 }
897 },
898 "description": description_schema,
899 "name": name_schema
900 }
901 }
902 }
903 }
904 },
905 "required": ["nodes"],
906 "additionalProperties": False
907 }
908 },
909 "additionalProperties": False
910 }
911
912 scenario_action_schema = {
913 "title":"scenario action information schema",
914 "$schema": "http://json-schema.org/draft-04/schema#",
915 "type":"object",
916 "properties":{
917 "start":{
918 "type": "object",
919 "properties": {
920 "instance_name":name_schema,
921 "description":description_schema,
922 "datacenter": {"type": "string"}
923 },
924 "required": ["instance_name"]
925 },
926 "deploy":{
927 "type": "object",
928 "properties": {
929 "instance_name":name_schema,
930 "description":description_schema,
931 "datacenter": {"type": "string"}
932 },
933 "required": ["instance_name"]
934 },
935 "reserve":{
936 "type": "object",
937 "properties": {
938 "instance_name":name_schema,
939 "description":description_schema,
940 "datacenter": {"type": "string"}
941 },
942 "required": ["instance_name"]
943 },
944 "verify":{
945 "type": "object",
946 "properties": {
947 "instance_name":name_schema,
948 "description":description_schema,
949 "datacenter": {"type": "string"}
950 },
951 "required": ["instance_name"]
952 }
953 },
954 "minProperties": 1,
955 "maxProperties": 1,
956 "additionalProperties": False
957 }
958
959 instance_scenario_create_schema_v01 = {
960 "title":"instance scenario create information schema v0.1",
961 "$schema": "http://json-schema.org/draft-04/schema#",
962 "type":"object",
963 "properties":{
964 "schema_version": {"type": "string", "enum": ["0.1"]},
965 "instance":{
966 "type":"object",
967 "properties":{
968 "name":name_schema,
969 "description":description_schema,
970 "datacenter": name_schema,
971 "scenario" : name_schema, #can be an UUID or name
972 "action":{"enum": ["deploy","reserve","verify" ]},
973 "connect_mgmt_interfaces": {"oneOf": [{"type":"boolean"}, {"type":"object"}]},# can be true or a dict with datacenter: net_name
974 "cloud-config": cloud_config_schema, #common to all vnfs in the instance scenario
975 "vnfs":{ #mapping from scenario to datacenter
976 "type": "object",
977 "patternProperties":{
978 ".": {
979 "type": "object",
980 "properties":{
981 "name": name_schema, #override vnf name
982 "datacenter": name_schema,
983 #"metadata": {"type": "object"},
984 #"user_data": {"type": "string"}
985 #"cloud-config": cloud_config_schema, #particular for a vnf
986 "external-connections": {
987 "type": "object",
988 "patternProperties": {
989 ".": {
990 "type": "object",
991 "properties": {
992 "vim-network-name": name_schema,
993 "ip_address": ip_schema
994 }
995 }
996 }
997 },
998 "internal-connections": {
999 "type": "object",
1000 "patternProperties": {
1001 ".": {
1002 "type": "object",
1003 "properties": {
1004 "ip-profile": ip_profile_schema,
1005 "elements": {
1006 "type" : "array",
1007 "items":{
1008 "type":"object",
1009 "properties":{
1010 "VNFC": name_schema,
1011 "local_iface_name": name_schema,
1012 "ip_address": ip_schema
1013 },
1014 "required": ["VNFC", "local_iface_name"],
1015 }
1016 }
1017 }
1018 }
1019 }
1020 }
1021 }
1022 }
1023 },
1024 },
1025 "networks":{ #mapping from scenario to datacenter
1026 "type": "object",
1027 "patternProperties":{
1028 ".": {
1029 "type": "object",
1030 "properties":{
1031 "interfaces":{
1032 "type":"array",
1033 "minLength":1,
1034 "items":{
1035 "type":"object",
1036 "properties":{
1037 "ip_address": ip_schema,
1038 "datacenter": name_schema,
1039 "vim-network-name": name_schema
1040 },
1041 "patternProperties":{
1042 ".": {"type": "string"}
1043 }
1044 }
1045 },
1046 "ip-profile": ip_profile_schema,
1047 #if the network connects VNFs deployed at different sites, you must specify one entry per site that this network connect to
1048 "sites": {
1049 "type":"array",
1050 "minLength":1,
1051 "items":{
1052 "type":"object",
1053 "properties":{
1054 # By default for an scenario 'external' network openmano looks for an existing VIM network to map this external scenario network,
1055 # for other networks openamno creates at VIM
1056 # Use netmap-create to force to create an external scenario network
1057 "netmap-create": {"oneOf":[name_schema,{"type": "null"}]}, #datacenter network to use. Null if must be created as an internal net
1058 #netmap-use: Indicates an existing VIM network that must be used for this scenario network.
1059 #Can use both the VIM network name (if it is not ambiguous) or the VIM net UUID
1060 #If both 'netmap-create' and 'netmap-use'are supplied, netmap-use precedes, but if fails openmano follows the netmap-create
1061 #In oder words, it is the same as 'try to map to the VIM network (netmap-use) if exist, and if not create the network (netmap-create)
1062 "netmap-use": name_schema, #
1063 "vim-network-name": name_schema, #override network name
1064 #"ip-profile": ip_profile_schema,
1065 "datacenter": name_schema,
1066 }
1067 }
1068 },
1069
1070
1071
1072 }
1073 }
1074 },
1075 },
1076 },
1077 "additionalProperties": False,
1078 "required": ["name"]
1079 },
1080 },
1081 "required": ["instance"],
1082 "additionalProperties": False
1083 }
1084
1085 instance_scenario_action_schema = {
1086 "title":"instance scenario action information schema",
1087 "$schema": "http://json-schema.org/draft-04/schema#",
1088 "type":"object",
1089 "properties":{
1090 "start":{"type": "null"},
1091 "pause":{"type": "null"},
1092 "resume":{"type": "null"},
1093 "shutoff":{"type": "null"},
1094 "shutdown":{"type": "null"},
1095 "forceOff":{"type": "null"},
1096 "rebuild":{"type": "null"},
1097 "reboot":{
1098 "type": ["object","null"],
1099 },
1100 "console": {"type": ["string", "null"], "enum": ["novnc", "xvpvnc", "rdp-html5", "spice-html5", None]},
1101 "vnfs":{"type": "array", "items":{"type":"string"}},
1102 "vms":{"type": "array", "items":{"type":"string"}}
1103 },
1104 "minProperties": 1,
1105 #"maxProperties": 1,
1106 "additionalProperties": False
1107 }
1108
1109 sdn_controller_properties={
1110 "name": name_schema,
1111 "dpid": {"type":"string", "pattern":"^[0-9a-fA-F]{2}(:[0-9a-fA-F]{2}){7}$"},
1112 "ip": ip_schema,
1113 "port": port_schema,
1114 "type": {"type": "string", "enum": ["opendaylight","floodlight","onos"]},
1115 "version": {"type" : "string", "minLength":1, "maxLength":12},
1116 "user": nameshort_schema,
1117 "password": passwd_schema
1118 }
1119 sdn_controller_schema = {
1120 "title":"sdn controller information schema",
1121 "$schema": "http://json-schema.org/draft-04/schema#",
1122 "type":"object",
1123 "properties":{
1124 "sdn_controller":{
1125 "type":"object",
1126 "properties":sdn_controller_properties,
1127 "required": ["name", "port", 'ip', 'dpid', 'type'],
1128 "additionalProperties": False
1129 }
1130 },
1131 "required": ["sdn_controller"],
1132 "additionalProperties": False
1133 }
1134
1135 sdn_controller_edit_schema = {
1136 "title":"sdn controller update information schema",
1137 "$schema": "http://json-schema.org/draft-04/schema#",
1138 "type":"object",
1139 "properties":{
1140 "sdn_controller":{
1141 "type":"object",
1142 "properties":sdn_controller_properties,
1143 "additionalProperties": False
1144 }
1145 },
1146 "required": ["sdn_controller"],
1147 "additionalProperties": False
1148 }
1149
1150 sdn_port_mapping_schema = {
1151 "$schema": "http://json-schema.org/draft-04/schema#",
1152 "title":"sdn port mapping information schema",
1153 "type": "object",
1154 "properties": {
1155 "sdn_port_mapping": {
1156 "type": "array",
1157 "items": {
1158 "type": "object",
1159 "properties": {
1160 "compute_node": nameshort_schema,
1161 "ports": {
1162 "type": "array",
1163 "items": {
1164 "type": "object",
1165 "properties": {
1166 "pci": pci_schema,
1167 "switch_port": nameshort_schema,
1168 "switch_mac": mac_schema
1169 },
1170 "required": ["pci"]
1171 }
1172 }
1173 },
1174 "required": ["compute_node", "ports"]
1175 }
1176 }
1177 },
1178 "required": ["sdn_port_mapping"]
1179 }
1180
1181 sdn_external_port_schema = {
1182 "$schema": "http://json-schema.org/draft-04/schema#",
1183 "title":"External port ingformation",
1184 "type": "object",
1185 "properties": {
1186 "port": {"type" : "string", "minLength":1, "maxLength":60},
1187 "vlan": vlan_schema,
1188 "mac": mac_schema
1189 },
1190 "required": ["port"]
1191 }