2015-09-02 09:21:50 +00:00
{
"$schema" : "http://json-schema.org/draft-04/schema#" ,
"type" : "object" ,
"title" : "JSON schema validating a GNS3 appliance" ,
2015-12-10 17:28:49 +00:00
"definitions" : {
"dynamips_slot" : {
"enum" : [ "C2600-MB-2FE" , "C2600-MB-1E" , "PA-A1" , "PA-8E" , "C1700-MB-1FE" , "PA-8T" , "PA-2FE-TX" , "PA-FE-TX" , "PA-GE" , "C2600-MB-2E" , "C7200-IO-FE" , "NM-4T" , "C2600-MB-1FE" , "C7200-IO-2FE" , "PA-POS-OC3" , "PA-4T+" , "C1700-MB-WIC1" , "NM-16ESW" , "C7200-IO-GE-E" , "NM-4E" , "GT96100-FE" , "NM-1FE-TX" , "Leopard-2FE" , "NM-1E" , "PA-4E" , "" ]
} ,
"dynamips_wic" : {
"enum" : [ "WIC-1ENET" , "WIC-1T" , "WIC-2T" , "" ]
}
} ,
2015-09-02 09:21:50 +00:00
"properties" : {
2021-10-16 10:35:58 +00:00
"appliance_id" : {
"type" : "string" ,
"minLength" : 36 ,
"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}$"
} ,
2015-09-02 09:21:50 +00:00
"name" : {
"type" : "string" ,
"title" : "Appliance name"
} ,
"category" : {
"enum" : [
"router" ,
"multilayer_switch" ,
"firewall" ,
"guest"
] ,
"title" : "Category of the appliance"
} ,
"description" : {
"type" : "string" ,
"title" : "Description of the appliance. Could be a marketing description"
} ,
"vendor_name" : {
"type" : "string" ,
"title" : "Name of the vendor"
} ,
"vendor_url" : {
"type" : "string" ,
"format" : "uri" ,
"title" : "Website of the vendor"
} ,
"documentation_url" : {
"type" : "string" ,
"format" : "uri" ,
2015-10-20 13:46:44 +00:00
"title" : "An optional documentation for using the appliance on vendor website"
2015-09-02 09:21:50 +00:00
} ,
"product_name" : {
"type" : "string" ,
"title" : "Product name"
} ,
"product_url" : {
"type" : "string" ,
"format" : "uri" ,
2015-10-20 13:46:44 +00:00
"title" : "An optional product url on vendor website"
2015-09-02 09:21:50 +00:00
} ,
"registry_version" : {
2017-03-06 14:38:26 +00:00
"enum" : [ 1 , 2 , 3 , 4 ] ,
2015-09-02 09:21:50 +00:00
"title" : "Version of the registry compatible with this appliance"
} ,
"status" : {
"enum" : [ "stable" , "experimental" , "broken" ] ,
"title" : "Document if the appliance is working or not"
} ,
2017-03-06 14:36:46 +00:00
"availability" : {
"enum" : [ "free" , "with-registration" , "free-to-try" , "service-contract" ] ,
"title" : "About image availability: can be downloaded directly; download requires a free registration; paid but a trial version (time or feature limited) is available; not available publicly"
} ,
2015-09-02 09:21:50 +00:00
"maintainer" : {
"type" : "string" ,
"title" : "Maintainer name"
} ,
"maintainer_email" : {
"type" : "string" ,
"format" : "email" ,
"title" : "Maintainer email"
} ,
"usage" : {
"type" : "string" ,
"title" : "How to use the appliance"
} ,
"symbol" : {
"type" : "string" ,
"title" : "An optional symbol for the appliance"
} ,
"first_port_name" : {
"type" : "string" ,
"title" : "Optional name of the first networking port example: eth0"
} ,
"port_name_format" : {
"type" : "string" ,
2015-09-28 10:14:31 +00:00
"title" : "Optional formating of the networking port example: eth{0}"
2015-09-02 09:21:50 +00:00
} ,
"port_segment_size" : {
2015-09-03 08:28:56 +00:00
"type" : "integer" ,
2015-09-03 08:49:05 +00:00
"title" : "Optional port segment size. A port segment is a block of port. For example Ethernet0/0 Ethernet0/1 is the module 0 with a port segment size of 2"
2015-09-02 09:21:50 +00:00
} ,
2017-05-16 08:26:44 +00:00
"linked_clone" : {
2015-10-20 13:46:44 +00:00
"type" : "boolean" ,
"title" : "False if you don't want to use a single image for all nodes"
} ,
2015-09-02 09:21:50 +00:00
2016-02-16 17:47:08 +00:00
"docker" : {
"type" : "object" ,
"title" : "Docker specific options" ,
"properties" : {
"adapters" : {
"type" : "integer" ,
"title" : "Number of ethernet adapters"
} ,
"image" : {
"type" : "string" ,
2017-03-13 15:23:17 +00:00
"title" : "Docker image in the Docker Hub"
2016-02-16 17:47:08 +00:00
} ,
"start_command" : {
"type" : "string" ,
"title" : "Command executed when the container start. Empty will use the default"
} ,
"environment" : {
"type" : "string" ,
"title" : "One KEY=VAR environment by line"
2016-04-28 07:25:06 +00:00
} ,
"console_type" : {
2016-05-04 16:58:33 +00:00
"enum" : [ "telnet" , "vnc" , "http" , "https" ] ,
2016-04-28 07:25:06 +00:00
"title" : "Type of console connection for the administration of the appliance"
2016-05-04 16:58:33 +00:00
} ,
"console_http_port" : {
"description" : "Internal port in the container of the HTTP server" ,
"type" : "integer"
} ,
"console_http_path" : {
"description" : "Path of the web interface" ,
"type" : "string"
2016-02-16 17:47:08 +00:00
}
} ,
"required" : [
"adapters" ,
"image"
]
} ,
2015-12-09 19:12:39 +00:00
"iou" : {
"type" : "object" ,
"title" : "IOU specific options" ,
"properties" : {
"ethernet_adapters" : {
"type" : "integer" ,
"title" : "Number of ethernet adapters"
} ,
"serial_adapters" : {
"type" : "integer" ,
"title" : "Number of serial adapters"
} ,
"nvram" : {
"type" : "integer" ,
"title" : "Host NVRAM"
} ,
"ram" : {
"type" : "integer" ,
"title" : "Host RAM"
} ,
"startup_config" : {
"type" : "string" ,
"title" : "Config loaded at startup"
}
} ,
"required" : [
"ethernet_adapters" ,
"serial_adapters" ,
"nvram" ,
"ram" ,
"startup_config"
]
} ,
2015-12-10 17:28:49 +00:00
"dynamips" : {
"type" : "object" ,
"title" : "Dynamips specific options" ,
"properties" : {
"chassis" : {
"title" : "Chassis type" ,
"enum" : [ "1720" , "1721" , "1750" , "1751" , "1760" , "2610" , "2620" , "2610XM" , "2620XM" , "2650XM" , "2621" , "2611XM" , "2621XM" , "2651XM" , "3620" , "3640" , "3660" , "" ]
} ,
"platform" : {
"title" : "Platform type" ,
"enum" : [ "c1700" , "c2600" , "c2691" , "c3725" , "c3745" , "c3600" , "c7200" ]
} ,
"ram" : {
"title" : "Amount of ram" ,
"type" : "integer" ,
"minimum" : 1
} ,
"nvram" : {
"title" : "Amount of nvram" ,
"type" : "integer" ,
"minimum" : 1
} ,
"startup_config" : {
"type" : "string" ,
"title" : "Config loaded at startup"
} ,
"wic0" : { "$ref" : "#/definitions/dynamips_wic" } ,
"wic1" : { "$ref" : "#/definitions/dynamips_wic" } ,
"wic2" : { "$ref" : "#/definitions/dynamips_wic" } ,
"slot0" : { "$ref" : "#/definitions/dynamips_slot" } ,
"slot1" : { "$ref" : "#/definitions/dynamips_slot" } ,
"slot2" : { "$ref" : "#/definitions/dynamips_slot" } ,
"slot3" : { "$ref" : "#/definitions/dynamips_slot" } ,
"slot4" : { "$ref" : "#/definitions/dynamips_slot" } ,
"slot5" : { "$ref" : "#/definitions/dynamips_slot" } ,
2016-01-20 12:27:16 +00:00
"slot6" : { "$ref" : "#/definitions/dynamips_slot" } ,
"midplane" : { "enum" : [ "std" , "vxr" ] } ,
"npe" : { "enum" : [ "npe-100" , "npe-150" , "npe-175" , "npe-200" , "npe-225" , "npe-300" , "npe-400" , "npe-g2" ] }
2015-12-10 17:28:49 +00:00
} ,
"required" : [
"platform" ,
"ram" ,
"nvram"
]
} ,
2015-09-02 09:21:50 +00:00
"qemu" : {
"type" : "object" ,
"title" : "Qemu specific options" ,
"properties" : {
"adapter_type" : {
2015-12-29 21:22:06 +00:00
"enum" : [
"e1000" ,
"i82550" ,
"i82551" ,
"i82557a" ,
"i82557b" ,
"i82557c" ,
"i82558a" ,
"i82558b" ,
"i82559a" ,
"i82559b" ,
"i82559c" ,
"i82559er" ,
"i82562" ,
"i82801" ,
"ne2k_pci" ,
"pcnet" ,
"rtl8139" ,
"virtio" ,
"virtio-net-pci" ,
"vmxnet3"
] ,
2015-09-02 09:21:50 +00:00
"title" : "Type of network adapter"
} ,
"adapters" : {
"type" : "integer" ,
"title" : "Number of adapters"
} ,
"ram" : {
"type" : "integer" ,
2015-09-03 08:28:56 +00:00
"title" : "Ram allocated to the appliance (MB)"
2015-09-02 09:21:50 +00:00
} ,
2016-12-08 16:33:34 +00:00
"cpus" : {
"type" : "integer" ,
"title" : "Number of Virtual CPU"
} ,
2015-12-29 21:22:06 +00:00
"hda_disk_interface" : {
2017-01-27 10:00:03 +00:00
"enum" : [ "ide" , "scsi" , "sd" , "mtd" , "floppy" , "pflash" , "virtio" , "sata" ] ,
2015-12-29 21:22:06 +00:00
"title" : "Disk interface for the installed hda_disk_image"
} ,
"hdb_disk_interface" : {
2017-01-27 10:00:03 +00:00
"enum" : [ "ide" , "scsi" , "sd" , "mtd" , "floppy" , "pflash" , "virtio" , "sata" ] ,
2015-12-29 21:22:06 +00:00
"title" : "Disk interface for the installed hdb_disk_image"
} ,
"hdc_disk_interface" : {
2017-01-27 10:00:03 +00:00
"enum" : [ "ide" , "scsi" , "sd" , "mtd" , "floppy" , "pflash" , "virtio" , "sata" ] ,
2015-12-29 21:22:06 +00:00
"title" : "Disk interface for the installed hdc_disk_image"
} ,
"hdd_disk_interface" : {
2017-01-27 10:00:03 +00:00
"enum" : [ "ide" , "scsi" , "sd" , "mtd" , "floppy" , "pflash" , "virtio" , "sata" ] ,
2015-12-29 21:22:06 +00:00
"title" : "Disk interface for the installed hdd_disk_image"
} ,
2015-09-02 09:21:50 +00:00
"arch" : {
"enum" : [ "aarch64" , "alpha" , "arm" , "cris" , "i386" , "lm32" , "m68k" , "microblaze" , "microblazeel" , "mips" , "mips64" , "mips64el" , "mipsel" , "moxie" , "or32" , "ppc" , "ppc64" , "ppcemb" , "s390x" , "sh4" , "sh4eb" , "sparc" , "sparc64" , "tricore" , "unicore32" , "x86_64" , "xtensa" , "xtensaeb" ] ,
"title" : "Architecture emulated"
} ,
"console_type" : {
"enum" : [ "telnet" , "vnc" ] ,
"title" : "Type of console connection for the administration of the appliance"
} ,
2015-09-02 13:43:52 +00:00
"boot_priority" : {
2016-01-18 14:56:00 +00:00
"enum" : [ "d" , "c" , "dc" , "cd" , "n" , "nc" , "nd" , "cn" , "dn" ] ,
2015-09-02 13:43:52 +00:00
"title" : "Optional define the disk boot priory. Refer to -boot option in qemu manual for more details."
} ,
2015-10-20 13:46:44 +00:00
"kernel_command_line" : {
"type" : "string" ,
"title" : "Command line parameters send to the kernel"
} ,
2016-01-11 09:39:39 +00:00
"kvm" : {
"title" : "KVM requirements" ,
"enum" : [ "require" , "allow" , "disable" ]
} ,
2015-09-02 09:21:50 +00:00
"options" : {
"type" : "string" ,
2015-09-02 13:43:52 +00:00
"title" : "Optional additional qemu command line options"
2015-10-20 13:46:44 +00:00
} ,
"cpu_throttling" : {
"type" : "number" ,
"minimum" : 0 ,
"maximum" : 100 ,
"title" : "Throttle the CPU"
} ,
"process_priority" : {
2015-10-28 14:55:05 +00:00
"title" : "Process priority for QEMU" ,
2015-10-20 13:46:44 +00:00
"enum" : [ "realtime" ,
"very high" ,
"high" ,
"normal" ,
"low" ,
"very low" ,
"null" ]
2015-09-02 09:21:50 +00:00
}
} ,
"required" : [
"adapter_type" ,
"adapters" ,
"ram" ,
"arch" ,
2016-01-11 09:39:39 +00:00
"console_type" ,
"kvm"
2015-09-02 09:21:50 +00:00
]
} ,
"images" : {
"type" : "array" ,
"title" : "Images for this appliance" ,
"items" : {
"type" : "object" ,
"title" : "An image file" ,
"properties" : {
"filename" : {
"type" : "string" ,
"title" : "Filename"
} ,
"version" : {
"type" : "string" ,
"title" : "Version of the file"
} ,
"md5sum" : {
"type" : "string" ,
2016-06-15 09:38:43 +00:00
"title" : "md5sum of the file" ,
"type" : "string" ,
"pattern" : "^[a-f0-9]{32}$"
2015-09-02 09:21:50 +00:00
} ,
2015-09-02 10:10:31 +00:00
"filesize" : {
"type" : "integer" ,
"title" : "File size in bytes"
} ,
2015-09-02 09:21:50 +00:00
"download_url" : {
"type" : "string" ,
"format" : "uri" ,
"title" : "Download url where you can download the appliance from a browser"
} ,
"direct_download_url" : {
"type" : "string" ,
2015-12-29 21:22:06 +00:00
"format" : "uri" ,
2015-09-02 09:21:50 +00:00
"title" : "Optional. Non authenticated url to the image file where you can download the image."
2015-11-17 08:58:25 +00:00
} ,
"compression" : {
2015-12-09 08:40:10 +00:00
"enum" : [ "bzip2" , "gzip" , "lzma" , "xz" , "rar" , "zip" , "7z" ] ,
2015-11-17 09:44:08 +00:00
"title" : "Optional, compression type of direct download url image."
2015-09-02 09:21:50 +00:00
}
} ,
"required" : [
"filename" ,
"version" ,
"md5sum" ,
2015-12-09 19:12:39 +00:00
"filesize"
2015-09-02 09:21:50 +00:00
]
}
} ,
"versions" : {
"type" : "array" ,
"title" : "Versions of the appliance" ,
"items" : {
"type" : "object" ,
"title" : "A version of the appliance" ,
"properties" : {
"name" : {
"type" : "string" ,
"title" : "Name of the version"
} ,
2015-12-10 17:28:49 +00:00
"idlepc" : { "type" : "string" , "pattern" : "^0x[0-9a-f]{8}" } ,
2015-09-02 09:21:50 +00:00
"images" : {
"type" : "object" ,
"title" : "Images used for this version" ,
"properties" : {
"kernel_image" : {
"type" : "string" ,
"title" : "Kernel image"
} ,
2015-10-20 13:46:44 +00:00
"initrd" : {
2015-09-02 09:21:50 +00:00
"type" : "string" ,
2015-10-20 13:46:44 +00:00
"title" : "Initrd disk image"
2015-09-02 09:21:50 +00:00
} ,
2015-12-09 19:12:39 +00:00
"image" : {
"type" : "string" ,
"title" : "OS image"
} ,
2016-12-08 14:50:35 +00:00
"bios_image" : {
"type" : "string" ,
"title" : "Bios image"
} ,
2015-09-02 09:21:50 +00:00
"hda_disk_image" : {
"type" : "string" ,
2015-12-09 19:12:39 +00:00
"title" : "Hda disk image"
2015-09-02 09:21:50 +00:00
} ,
"hdb_disk_image" : {
"type" : "string" ,
"title" : "Hdc disk image"
} ,
"hdc_disk_image" : {
"type" : "string" ,
"title" : "Hdd disk image"
} ,
"hdd_disk_image" : {
"type" : "string" ,
"title" : "Hdd diskimage"
} ,
2015-09-02 13:43:52 +00:00
"cdrom_image" : {
2015-09-02 09:21:50 +00:00
"type" : "string" ,
"title" : "cdrom image"
}
2017-01-25 11:12:14 +00:00
}
2015-09-02 09:21:50 +00:00
}
} ,
"required" : [
"name"
2017-01-25 11:12:14 +00:00
]
2015-09-02 09:21:50 +00:00
}
}
} ,
"required" : [
"name" ,
"category" ,
"description" ,
"vendor_name" ,
"vendor_url" ,
"product_name" ,
"registry_version" ,
"status" ,
"maintainer" ,
2016-02-16 17:47:08 +00:00
"maintainer_email"
2015-09-02 09:21:50 +00:00
]
}