{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Provision", "type": "object", "description": "Obiekt reprezentujący dane statystyczne dotyczące wykonanie refundacji aptecznej\nSchema: https://api.nfz.gov.pl/app-stat-api-ra/schema/provison", "additionalProperties": false, "properties": { "type": { "type": [ "null", "string" ], "description": "Typ obiektu" }, "attributes": { "description": "Lista atrybutów wykonania", "oneOf": [ { "type": "null" }, { "$ref": "#/definitions/ProvisionAttributes" } ] } }, "definitions": { "ProvisionAttributes": { "type": "object", "description": "Szczegóły przedstawiające atrybuyty wykonania\nSchema: https://api.nfz.gov.pl/app-stat-api-ra/schema/provision-attributes", "additionalProperties": false, "properties": { "medicine-product": { "type": [ "null", "string" ], "description": "Nazwa produktu leczniczego" }, "international-name": { "type": [ "null", "string" ], "description": "Nazwa międzynarodowa produktu leczniczego" }, "code": { "type": [ "null", "string" ], "description": "Kod EAN lub GETIN produktu leczniczego" }, "dose": { "type": [ "null", "string" ], "description": "Informacje dotyczące dawki" }, "pack": { "type": [ "null", "string" ], "description": "Informacje dotyczące opakowania" }, "quantity": { "type": "number", "description": "Ilość zrefundowanych opakowań ", "format": "decimal" }, "refund": { "type": "number", "description": "Kwota refundacji NFZ", "format": "decimal" }, "donation": { "type": [ "null", "number" ], "description": "Dotacja Ministerstwa Zdrowia w ramach programu 75+", "format": "decimal" }, "contribution-of-patient": { "type": [ "null", "number" ], "description": "Dopłata pacjenta", "format": "decimal" }, "value": { "type": "number", "description": "Całkowity koszt produktu leczniczego; koszt refundacji NFZ + dopłata pacjenta + dotacja MZ (75+)", "format": "decimal" } } } } }