{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "AgreementPackage", "type": "object", "description": "Szczegóły pakietu umowy\nSchema: https://api.nfz.gov.pl/app-umw-api/schemas/#agreement-package", "additionalProperties": false, "properties": { "type": { "type": [ "null", "string" ], "description": "Typ obiektu" }, "attributes": { "description": "Atrybuty miesiąca", "oneOf": [ { "type": "null" }, { "$ref": "#/definitions/AgreementPackageAttributes" } ] } }, "definitions": { "AgreementPackageAttributes": { "type": "object", "description": "Atrybuty pakietu umowy\nSchema: https://api.nfz.gov.pl/app-umw-api/schemas/#agreement-package-attributes", "additionalProperties": false, "properties": { "unit-product-code": { "type": [ "null", "string" ], "description": "Kod produktu kontraktowego" }, "unit-product-name": { "type": [ "null", "string" ], "description": "Nazwa produktu kontraktowego" }, "weight": { "type": "number", "description": "Waga efektywna", "format": "decimal" } } } } }