type_service - BenjaminFourmaux/ServiceDown-api GitHub Wiki

Type : Service

Represents a service

Fields

Name Description Type
name Name of the service string
cname Canomic name of the service. ex: name = Orange France, cname = ORANGEFR string
description Short description about the service string (text)
path Url path to access this service string (url)
website The service website link string (url)
twitterUsername The service's Twitter username string
countries List of all countries where the service is available list<Country>

Exemple

An example with the service Orange

{
	"name": "Orange",
	"cname": "ORANGE",
	"description": "Internet provider",
	"path": "/statut/orange",
	"website": "www.orange.fr",
	"twitterUsername": "Orange_France",
	"countries": [
		{
			"name": "France",
			"shortname": "FR",
			"domainSuffix": "fr"
		},
		{
			"name": "Belgique",
			"shortname": "BE",
			"domainSuffix": "be"
		}
	]
}