{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://solpdt.com/schemas/accounting-asset-details-v1.json", "title": "SOLPDT Accounting Asset Details Schema", "description": "Структура блока accounting_asset_details для Payload-V2 стандарта SOLPDT 1.1", "type": "object", "required": [ "asset_classification", "inventory_number", "recognition_criteria", "valuation_parameters", "amortization_policy" ], "properties": { "asset_classification": { "type": "string", "enum": ["intangible_digital_rights", "ai_agent_performance", "verified_reputation"] }, "inventory_number": { "type": "string", "pattern": "^SOL-PDT-\\d{4}-\\d{3}$" }, "useful_life_months": { "type": "integer", "minimum": 13, "description": "Срок полезного использования в месяцах. Согласно ФСБУ 14/2022 должен быть ≥ 13" } } }