{"$schema":"https://json-schema.org/draft/2020-12/schema","title":"IT Asset Inventory","description":"Register of IT assets (hardware, software licenses, peripherals) held by an organisation. Supports ISO/IEC 27001:2022 control A.5.9 (inventory of information and associated assets) and NIS2 Art. 21(2)(i) asset management. Country-agnostic; national overlays apply via the country profile.","type":"object","additionalProperties":false,"required":["entity","as_of_date","compiler","assets","totals_by_type","totals_by_status"],"$defs":{"asset":{"type":"object","additionalProperties":false,"required":["asset_id","type","make","model","serial_number","purchase_date","location","status","value_current","currency"],"properties":{"asset_id":{"type":"string"},"type":{"type":"string","enum":["laptop","desktop","server","network_device","mobile","monitor","peripheral","software_license","other"]},"make":{"type":"string"},"model":{"type":"string"},"serial_number":{"type":"string"},"purchase_date":{"type":"string","format":"date"},"warranty_end":{"type":"string","format":"date"},"owner_user":{"type":"string"},"location":{"type":"string"},"status":{"type":"string","enum":["in_use","in_stock","retired","lost","under_repair"]},"value_current":{"type":"number","minimum":0},"currency":{"type":"string","minLength":3,"maxLength":3},"cost_centre":{"type":"string"}}},"type_total":{"type":"object","additionalProperties":false,"required":["type","count","value"],"properties":{"type":{"type":"string"},"count":{"type":"integer","minimum":0},"value":{"type":"number","minimum":0}}},"status_total":{"type":"object","additionalProperties":false,"required":["status","count"],"properties":{"status":{"type":"string"},"count":{"type":"integer","minimum":0}}}},"properties":{"entity":{"type":"object","additionalProperties":false,"required":["name","registration","address"],"properties":{"name":{"type":"string"},"registration":{"type":"string"},"address":{"type":"string"}}},"as_of_date":{"type":"string","format":"date"},"compiler":{"type":"object","additionalProperties":false,"required":["name","title"],"properties":{"name":{"type":"string"},"title":{"type":"string"}}},"assets":{"type":"array","minItems":1,"items":{"$ref":"#/$defs/asset"}},"totals_by_type":{"type":"array","minItems":1,"items":{"$ref":"#/$defs/type_total"}},"totals_by_status":{"type":"array","minItems":1,"items":{"$ref":"#/$defs/status_total"}},"currency":{"type":"string","minLength":3,"maxLength":3},"notes":{"type":"string"}}}