{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "Atc", "type": "object", "description": "Opbiekt reprezentujący grupę ATC\nSchema: https://api.nfz.gov.pl/app-stat-api-ra/schema/atc", "additionalProperties": false, "properties": { "type": { "type": [ "null", "string" ], "description": "Typ obiektu" }, "attributes": { "description": "Lista atrybutów grupy ATC", "oneOf": [ { "type": "null" }, { "$ref": "#/definitions/AtcAttributes" } ] } }, "definitions": { "AtcAttributes": { "type": "object", "description": "Atrybuty grupy ATC", "additionalProperties": false, "properties": { "code": { "type": [ "null", "string" ], "description": "Kod grupy" }, "name": { "type": [ "null", "string" ], "description": "Nazwa grupy" } } } } }