Raw schema
{
"type": "object",
"properties": {
"country": {
"description": "ISO-2 country code of the organization (e.g. IT, PL, FR)",
"type": "string",
"minLength": 2,
"maxLength": 2
},
"sector": {
"description": "Primary NIS2 sector id (see the sector list in the tool description)",
"type": "string",
"enum": [
"energy",
"transport",
"banking",
"financial_market",
"health",
"drinking_water",
"waste_water",
"digital_infrastructure",
"ict_service_management",
"public_administration",
"space",
"postal",
"waste_management",
"chemicals",
"food",
"manufacturing",
"digital_providers",
"research"
]
},
"additional_sectors": {
"type": "array",
"items": {
"type": "string",
"enum": [
"energy",
"transport",
"banking",
"financial_market",
"health",
"drinking_water",
"waste_water",
"digital_infrastructure",
"ict_service_management",
"public_administration",
"space",
"postal",
"waste_management",
"chemicals",
"food",
"manufacturing",
"digital_providers",
"research"
]
}
},
"employee_count": {
"type": "integer",
"minimum": 0,
"maximum": 9007199254740991
},
"annual_turnover_meur": {
"description": "Annual turnover in millions of EUR",
"type": "number",
"minimum": 0
},
"annual_balance_sheet_meur": {
"type": "number",
"minimum": 0
},
"dns_provider": {
"type": "boolean"
},
"tld_registry": {
"type": "boolean"
},
"cloud_provider": {
"type": "boolean"
},
"qualified_trust_service_provider": {
"type": "boolean"
},
"sole_provider": {
"description": "Sole provider of a service essential to society in its Member State",
"type": "boolean"
},
"language": {
"default": "en",
"type": "string",
"enum": [
"en",
"fr",
"it",
"de",
"pt",
"nl",
"pl",
"es"
]
}
},
"required": [
"country",
"sector",
"employee_count"
],
"$schema": "http://json-schema.org/draft-07/schema#"
}