{
	"$schema": "http://json-schema.org/draft-07/schema",
	"$id": "https://apidocs.iqrf.org/openapi/iqrf-gateway-webapp/schemas/networkOperator.json",
	"type": "object",
	"title": "Network operator",
	"description": "Information about a mobile network operator.",
	"example": {
		"id": 1,
		"name": "T-Mobile CZ",
		"apn": "internet.t-mobile.cz",
		"username": "gprs",
		"password": "gprs"
	},
	"required": [
		"name",
		"apn"
	],
	"additionalProperties": false,
	"properties": {
		"id": {
			"$id": "#/properties/id",
			"title": "ID",
			"description": "Operator ID",
			"type": "integer",
			"example": 1
		},
		"name": {
			"$id": "#/properties/name",
			"title": "Name",
			"description": "Operator name.",
			"type": "string",
			"example": "T-Mobile CZ"
		},
		"apn": {
			"$id": "#/properties/apn",
			"title": "APN",
			"description": "Access point name.",
			"type": "string",
			"example": "internet.t-mobile.cz"
		},
		"username": {
			"$id": "#/properties/username",
			"title": "Username",
			"description": "Username for authorization.",
			"type": "string",
			"example": "gprs"
		},
		"password": {
			"$id": "#/properties/password",
			"title": "Password",
			"description": "Password for authorization.",
			"type": "string",
			"example": "gprs"
		}
	}
}
