{"swagger":"2.0","info":{"title":"axisvm03_axisdb","description":"API generated with [PHP-CRUD-API](https://github.com/mevdschee/php-crud-api)","version":"1.0.0"},"host":"axisdb.axisvm.eu","basePath":"/index.php","schemes":["https"],"consumes":["application/json"],"produces":["application/json"],"tags":[{"name":"anyagok","description":""},{"name":"szelvenytipusok","description":""},{"name":"anyagaltipusok","description":""},{"name":"anyagtipusok","description":""},{"name":"szelvenyaltipusok","description":""},{"name":"szelvenyek","description":""}],"paths":{"/anyagok":{"get":{"tags":["anyagok"],"summary":"List","parameters":[{"name":"exclude","in":"query","description":"One or more related entities (comma separated).","required":false,"type":"string"},{"name":"include","in":"query","description":"One or more related entities (comma separated).","required":false,"type":"string"},{"name":"order","in":"query","description":"Column you want to sort on and the sort direction (comma separated). Example: id,desc","required":false,"type":"string"},{"name":"page","in":"query","description":"Page number and page size (comma separated). NB: You cannot use \"page\" without \"order\"! Example: 1,10","required":false,"type":"string"},{"name":"transform","in":"query","description":"Transform the records to object format. NB: This can also be done client-side in JavaScript!","required":false,"type":"boolean"},{"name":"columns","in":"query","description":"The table columns you want to retrieve (comma separated). Example: posts.*,categories.name","required":false,"type":"string"},{"name":"filter[]","in":"query","description":"Filters to be applied. Each filter consists of a column, an operator and a value (comma separated). Example: id,eq,1","required":false,"type":"array","collectionFormat":"multi","items":{"type":"string"}},{"name":"satisfy","in":"query","description":"Should all filters match (default)? Or any?","required":false,"type":"string","enum":["any"]}],"responses":{"200":{"description":"An array of anyagok","schema":{"type": "object","properties": {"anyagok": {"type":"array","items":{"type": "object","properties": {"Id": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-primary-key": true},"Tipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-references": ["anyagtipusok","Tipus"]},"Altipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-references": ["anyagaltipusok","Altipus"]},"Nev": {"type": "string","x-dbtype": "varchar","x-nullable": false,"maxLength": 255}}}}}}}}},"post":{"tags":["anyagok"],"summary":"Create","parameters":[{"name":"item","in":"body","description":"Item to create.","required":true,"schema":{"type": "object","required":["Id","Tipus","Altipus","Nev"],"properties": {"Id": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-primary-key": true},"Tipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-references": ["anyagtipusok","Tipus"]},"Altipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-references": ["anyagaltipusok","Altipus"]},"Nev": {"type": "string","x-dbtype": "varchar","x-nullable": false,"maxLength": 255}}}}],"responses":{"200":{"description":"Identifier of created item.","schema":{"type":"integer"}}}}},"/anyagok/{id}":{"get":{"tags":["anyagok"],"summary":"Read","parameters":[{"name":"id","in":"path","description":"Identifier for item.","required":true,"type":"string"}],"responses":{"200":{"description":"The requested item.","schema":{"type": "object","properties": {"Id": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-primary-key": true},"Tipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-references": ["anyagtipusok","Tipus"]},"Altipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-references": ["anyagaltipusok","Altipus"]},"Nev": {"type": "string","x-dbtype": "varchar","x-nullable": false,"maxLength": 255}}}}}},"put":{"tags":["anyagok"],"summary":"Update","parameters":[{"name":"id","in":"path","description":"Identifier for item.","required":true,"type":"string"},{"name":"item","in":"body","description":"Properties of item to update.","required":true,"schema":{"type": "object","required":["Id","Tipus","Altipus","Nev"],"properties": {"Id": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-primary-key": true},"Tipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-references": ["anyagtipusok","Tipus"]},"Altipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-references": ["anyagaltipusok","Altipus"]},"Nev": {"type": "string","x-dbtype": "varchar","x-nullable": false,"maxLength": 255}}}}],"responses":{"200":{"description":"Number of affected rows.","schema":{"type":"integer"}}}},"delete":{"tags":["anyagok"],"summary":"Delete","parameters":[{"name":"id","in":"path","description":"Identifier for item.","required":true,"type":"string"}],"responses":{"200":{"description":"Number of affected rows.","schema":{"type":"integer"}}}},"patch":{"tags":["anyagok"],"summary":"Increment","parameters":[{"name":"id","in":"path","description":"Identifier for item.","required":true,"type":"string"},{"name":"item","in":"body","description":"Properties of item to update.","required":true,"schema":{"type": "object","required":["Id","Tipus","Altipus","Nev"],"properties": {"Id": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-primary-key": true},"Tipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-references": ["anyagtipusok","Tipus"]},"Altipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-references": ["anyagaltipusok","Altipus"]},"Nev": {"type": "string","x-dbtype": "varchar","x-nullable": false,"maxLength": 255}}}}],"responses":{"200":{"description":"Number of affected rows.","schema":{"type":"integer"}}}}},"/szelvenytipusok":{"get":{"tags":["szelvenytipusok"],"summary":"List","parameters":[{"name":"exclude","in":"query","description":"One or more related entities (comma separated).","required":false,"type":"string"},{"name":"include","in":"query","description":"One or more related entities (comma separated).","required":false,"type":"string"},{"name":"order","in":"query","description":"Column you want to sort on and the sort direction (comma separated). Example: id,desc","required":false,"type":"string"},{"name":"page","in":"query","description":"Page number and page size (comma separated). NB: You cannot use \"page\" without \"order\"! Example: 1,10","required":false,"type":"string"},{"name":"transform","in":"query","description":"Transform the records to object format. NB: This can also be done client-side in JavaScript!","required":false,"type":"boolean"},{"name":"columns","in":"query","description":"The table columns you want to retrieve (comma separated). Example: posts.*,categories.name","required":false,"type":"string"},{"name":"filter[]","in":"query","description":"Filters to be applied. Each filter consists of a column, an operator and a value (comma separated). Example: id,eq,1","required":false,"type":"array","collectionFormat":"multi","items":{"type":"string"}},{"name":"satisfy","in":"query","description":"Should all filters match (default)? Or any?","required":false,"type":"string","enum":["any"]}],"responses":{"200":{"description":"An array of szelvenytipusok","schema":{"type": "object","properties": {"szelvenytipusok": {"type":"array","items":{"type": "object","properties": {"Tipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-referenced": [["szelvenyek","Tipus"]],"x-primary-key": true},"TipusNev": {"type": "string","x-dbtype": "varchar","x-nullable": false,"maxLength": 255}}}}}}}}},"post":{"tags":["szelvenytipusok"],"summary":"Create","parameters":[{"name":"item","in":"body","description":"Item to create.","required":true,"schema":{"type": "object","required":["Tipus","TipusNev"],"properties": {"Tipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-referenced": [["szelvenyek","Tipus"]],"x-primary-key": true},"TipusNev": {"type": "string","x-dbtype": "varchar","x-nullable": false,"maxLength": 255}}}}],"responses":{"200":{"description":"Identifier of created item.","schema":{"type":"integer"}}}}},"/szelvenytipusok/{id}":{"get":{"tags":["szelvenytipusok"],"summary":"Read","parameters":[{"name":"id","in":"path","description":"Identifier for item.","required":true,"type":"string"}],"responses":{"200":{"description":"The requested item.","schema":{"type": "object","properties": {"Tipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-referenced": [["szelvenyek","Tipus"]],"x-primary-key": true},"TipusNev": {"type": "string","x-dbtype": "varchar","x-nullable": false,"maxLength": 255}}}}}},"put":{"tags":["szelvenytipusok"],"summary":"Update","parameters":[{"name":"id","in":"path","description":"Identifier for item.","required":true,"type":"string"},{"name":"item","in":"body","description":"Properties of item to update.","required":true,"schema":{"type": "object","required":["Tipus","TipusNev"],"properties": {"Tipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-referenced": [["szelvenyek","Tipus"]],"x-primary-key": true},"TipusNev": {"type": "string","x-dbtype": "varchar","x-nullable": false,"maxLength": 255}}}}],"responses":{"200":{"description":"Number of affected rows.","schema":{"type":"integer"}}}},"delete":{"tags":["szelvenytipusok"],"summary":"Delete","parameters":[{"name":"id","in":"path","description":"Identifier for item.","required":true,"type":"string"}],"responses":{"200":{"description":"Number of affected rows.","schema":{"type":"integer"}}}},"patch":{"tags":["szelvenytipusok"],"summary":"Increment","parameters":[{"name":"id","in":"path","description":"Identifier for item.","required":true,"type":"string"},{"name":"item","in":"body","description":"Properties of item to update.","required":true,"schema":{"type": "object","required":["Tipus","TipusNev"],"properties": {"Tipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-referenced": [["szelvenyek","Tipus"]],"x-primary-key": true},"TipusNev": {"type": "string","x-dbtype": "varchar","x-nullable": false,"maxLength": 255}}}}],"responses":{"200":{"description":"Number of affected rows.","schema":{"type":"integer"}}}}},"/anyagaltipusok":{"get":{"tags":["anyagaltipusok"],"summary":"List","parameters":[{"name":"exclude","in":"query","description":"One or more related entities (comma separated).","required":false,"type":"string"},{"name":"include","in":"query","description":"One or more related entities (comma separated).","required":false,"type":"string"},{"name":"order","in":"query","description":"Column you want to sort on and the sort direction (comma separated). Example: id,desc","required":false,"type":"string"},{"name":"page","in":"query","description":"Page number and page size (comma separated). NB: You cannot use \"page\" without \"order\"! Example: 1,10","required":false,"type":"string"},{"name":"transform","in":"query","description":"Transform the records to object format. NB: This can also be done client-side in JavaScript!","required":false,"type":"boolean"},{"name":"columns","in":"query","description":"The table columns you want to retrieve (comma separated). Example: posts.*,categories.name","required":false,"type":"string"},{"name":"filter[]","in":"query","description":"Filters to be applied. Each filter consists of a column, an operator and a value (comma separated). Example: id,eq,1","required":false,"type":"array","collectionFormat":"multi","items":{"type":"string"}},{"name":"satisfy","in":"query","description":"Should all filters match (default)? Or any?","required":false,"type":"string","enum":["any"]}],"responses":{"200":{"description":"An array of anyagaltipusok","schema":{"type": "object","properties": {"anyagaltipusok": {"type":"array","items":{"type": "object","properties": {"Altipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-referenced": [["anyagok","Altipus"]],"x-primary-key": true},"AlTipusNev": {"type": "string","x-dbtype": "varchar","x-nullable": false,"maxLength": 255}}}}}}}}},"post":{"tags":["anyagaltipusok"],"summary":"Create","parameters":[{"name":"item","in":"body","description":"Item to create.","required":true,"schema":{"type": "object","required":["Altipus","AlTipusNev"],"properties": {"Altipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-referenced": [["anyagok","Altipus"]],"x-primary-key": true},"AlTipusNev": {"type": "string","x-dbtype": "varchar","x-nullable": false,"maxLength": 255}}}}],"responses":{"200":{"description":"Identifier of created item.","schema":{"type":"integer"}}}}},"/anyagaltipusok/{id}":{"get":{"tags":["anyagaltipusok"],"summary":"Read","parameters":[{"name":"id","in":"path","description":"Identifier for item.","required":true,"type":"string"}],"responses":{"200":{"description":"The requested item.","schema":{"type": "object","properties": {"Altipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-referenced": [["anyagok","Altipus"]],"x-primary-key": true},"AlTipusNev": {"type": "string","x-dbtype": "varchar","x-nullable": false,"maxLength": 255}}}}}},"put":{"tags":["anyagaltipusok"],"summary":"Update","parameters":[{"name":"id","in":"path","description":"Identifier for item.","required":true,"type":"string"},{"name":"item","in":"body","description":"Properties of item to update.","required":true,"schema":{"type": "object","required":["Altipus","AlTipusNev"],"properties": {"Altipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-referenced": [["anyagok","Altipus"]],"x-primary-key": true},"AlTipusNev": {"type": "string","x-dbtype": "varchar","x-nullable": false,"maxLength": 255}}}}],"responses":{"200":{"description":"Number of affected rows.","schema":{"type":"integer"}}}},"delete":{"tags":["anyagaltipusok"],"summary":"Delete","parameters":[{"name":"id","in":"path","description":"Identifier for item.","required":true,"type":"string"}],"responses":{"200":{"description":"Number of affected rows.","schema":{"type":"integer"}}}},"patch":{"tags":["anyagaltipusok"],"summary":"Increment","parameters":[{"name":"id","in":"path","description":"Identifier for item.","required":true,"type":"string"},{"name":"item","in":"body","description":"Properties of item to update.","required":true,"schema":{"type": "object","required":["Altipus","AlTipusNev"],"properties": {"Altipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-referenced": [["anyagok","Altipus"]],"x-primary-key": true},"AlTipusNev": {"type": "string","x-dbtype": "varchar","x-nullable": false,"maxLength": 255}}}}],"responses":{"200":{"description":"Number of affected rows.","schema":{"type":"integer"}}}}},"/anyagtipusok":{"get":{"tags":["anyagtipusok"],"summary":"List","parameters":[{"name":"exclude","in":"query","description":"One or more related entities (comma separated).","required":false,"type":"string"},{"name":"include","in":"query","description":"One or more related entities (comma separated).","required":false,"type":"string"},{"name":"order","in":"query","description":"Column you want to sort on and the sort direction (comma separated). Example: id,desc","required":false,"type":"string"},{"name":"page","in":"query","description":"Page number and page size (comma separated). NB: You cannot use \"page\" without \"order\"! Example: 1,10","required":false,"type":"string"},{"name":"transform","in":"query","description":"Transform the records to object format. NB: This can also be done client-side in JavaScript!","required":false,"type":"boolean"},{"name":"columns","in":"query","description":"The table columns you want to retrieve (comma separated). Example: posts.*,categories.name","required":false,"type":"string"},{"name":"filter[]","in":"query","description":"Filters to be applied. Each filter consists of a column, an operator and a value (comma separated). Example: id,eq,1","required":false,"type":"array","collectionFormat":"multi","items":{"type":"string"}},{"name":"satisfy","in":"query","description":"Should all filters match (default)? Or any?","required":false,"type":"string","enum":["any"]}],"responses":{"200":{"description":"An array of anyagtipusok","schema":{"type": "object","properties": {"anyagtipusok": {"type":"array","items":{"type": "object","properties": {"Tipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-referenced": [["anyagok","Tipus"]],"x-primary-key": true},"TipusNev": {"type": "string","x-dbtype": "varchar","x-nullable": false,"maxLength": 255}}}}}}}}},"post":{"tags":["anyagtipusok"],"summary":"Create","parameters":[{"name":"item","in":"body","description":"Item to create.","required":true,"schema":{"type": "object","required":["Tipus","TipusNev"],"properties": {"Tipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-referenced": [["anyagok","Tipus"]],"x-primary-key": true},"TipusNev": {"type": "string","x-dbtype": "varchar","x-nullable": false,"maxLength": 255}}}}],"responses":{"200":{"description":"Identifier of created item.","schema":{"type":"integer"}}}}},"/anyagtipusok/{id}":{"get":{"tags":["anyagtipusok"],"summary":"Read","parameters":[{"name":"id","in":"path","description":"Identifier for item.","required":true,"type":"string"}],"responses":{"200":{"description":"The requested item.","schema":{"type": "object","properties": {"Tipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-referenced": [["anyagok","Tipus"]],"x-primary-key": true},"TipusNev": {"type": "string","x-dbtype": "varchar","x-nullable": false,"maxLength": 255}}}}}},"put":{"tags":["anyagtipusok"],"summary":"Update","parameters":[{"name":"id","in":"path","description":"Identifier for item.","required":true,"type":"string"},{"name":"item","in":"body","description":"Properties of item to update.","required":true,"schema":{"type": "object","required":["Tipus","TipusNev"],"properties": {"Tipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-referenced": [["anyagok","Tipus"]],"x-primary-key": true},"TipusNev": {"type": "string","x-dbtype": "varchar","x-nullable": false,"maxLength": 255}}}}],"responses":{"200":{"description":"Number of affected rows.","schema":{"type":"integer"}}}},"delete":{"tags":["anyagtipusok"],"summary":"Delete","parameters":[{"name":"id","in":"path","description":"Identifier for item.","required":true,"type":"string"}],"responses":{"200":{"description":"Number of affected rows.","schema":{"type":"integer"}}}},"patch":{"tags":["anyagtipusok"],"summary":"Increment","parameters":[{"name":"id","in":"path","description":"Identifier for item.","required":true,"type":"string"},{"name":"item","in":"body","description":"Properties of item to update.","required":true,"schema":{"type": "object","required":["Tipus","TipusNev"],"properties": {"Tipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-referenced": [["anyagok","Tipus"]],"x-primary-key": true},"TipusNev": {"type": "string","x-dbtype": "varchar","x-nullable": false,"maxLength": 255}}}}],"responses":{"200":{"description":"Number of affected rows.","schema":{"type":"integer"}}}}},"/szelvenyaltipusok":{"get":{"tags":["szelvenyaltipusok"],"summary":"List","parameters":[{"name":"exclude","in":"query","description":"One or more related entities (comma separated).","required":false,"type":"string"},{"name":"include","in":"query","description":"One or more related entities (comma separated).","required":false,"type":"string"},{"name":"order","in":"query","description":"Column you want to sort on and the sort direction (comma separated). Example: id,desc","required":false,"type":"string"},{"name":"page","in":"query","description":"Page number and page size (comma separated). NB: You cannot use \"page\" without \"order\"! Example: 1,10","required":false,"type":"string"},{"name":"transform","in":"query","description":"Transform the records to object format. NB: This can also be done client-side in JavaScript!","required":false,"type":"boolean"},{"name":"columns","in":"query","description":"The table columns you want to retrieve (comma separated). Example: posts.*,categories.name","required":false,"type":"string"},{"name":"filter[]","in":"query","description":"Filters to be applied. Each filter consists of a column, an operator and a value (comma separated). Example: id,eq,1","required":false,"type":"array","collectionFormat":"multi","items":{"type":"string"}},{"name":"satisfy","in":"query","description":"Should all filters match (default)? Or any?","required":false,"type":"string","enum":["any"]}],"responses":{"200":{"description":"An array of szelvenyaltipusok","schema":{"type": "object","properties": {"szelvenyaltipusok": {"type":"array","items":{"type": "object","properties": {"Altipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-referenced": [["szelvenyek","Altipus"]],"x-primary-key": true},"AlTipusNev": {"type": "string","x-dbtype": "varchar","x-nullable": false,"maxLength": 255}}}}}}}}},"post":{"tags":["szelvenyaltipusok"],"summary":"Create","parameters":[{"name":"item","in":"body","description":"Item to create.","required":true,"schema":{"type": "object","required":["Altipus","AlTipusNev"],"properties": {"Altipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-referenced": [["szelvenyek","Altipus"]],"x-primary-key": true},"AlTipusNev": {"type": "string","x-dbtype": "varchar","x-nullable": false,"maxLength": 255}}}}],"responses":{"200":{"description":"Identifier of created item.","schema":{"type":"integer"}}}}},"/szelvenyaltipusok/{id}":{"get":{"tags":["szelvenyaltipusok"],"summary":"Read","parameters":[{"name":"id","in":"path","description":"Identifier for item.","required":true,"type":"string"}],"responses":{"200":{"description":"The requested item.","schema":{"type": "object","properties": {"Altipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-referenced": [["szelvenyek","Altipus"]],"x-primary-key": true},"AlTipusNev": {"type": "string","x-dbtype": "varchar","x-nullable": false,"maxLength": 255}}}}}},"put":{"tags":["szelvenyaltipusok"],"summary":"Update","parameters":[{"name":"id","in":"path","description":"Identifier for item.","required":true,"type":"string"},{"name":"item","in":"body","description":"Properties of item to update.","required":true,"schema":{"type": "object","required":["Altipus","AlTipusNev"],"properties": {"Altipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-referenced": [["szelvenyek","Altipus"]],"x-primary-key": true},"AlTipusNev": {"type": "string","x-dbtype": "varchar","x-nullable": false,"maxLength": 255}}}}],"responses":{"200":{"description":"Number of affected rows.","schema":{"type":"integer"}}}},"delete":{"tags":["szelvenyaltipusok"],"summary":"Delete","parameters":[{"name":"id","in":"path","description":"Identifier for item.","required":true,"type":"string"}],"responses":{"200":{"description":"Number of affected rows.","schema":{"type":"integer"}}}},"patch":{"tags":["szelvenyaltipusok"],"summary":"Increment","parameters":[{"name":"id","in":"path","description":"Identifier for item.","required":true,"type":"string"},{"name":"item","in":"body","description":"Properties of item to update.","required":true,"schema":{"type": "object","required":["Altipus","AlTipusNev"],"properties": {"Altipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-referenced": [["szelvenyek","Altipus"]],"x-primary-key": true},"AlTipusNev": {"type": "string","x-dbtype": "varchar","x-nullable": false,"maxLength": 255}}}}],"responses":{"200":{"description":"Number of affected rows.","schema":{"type":"integer"}}}}},"/szelvenyek":{"get":{"tags":["szelvenyek"],"summary":"List","parameters":[{"name":"exclude","in":"query","description":"One or more related entities (comma separated).","required":false,"type":"string"},{"name":"include","in":"query","description":"One or more related entities (comma separated).","required":false,"type":"string"},{"name":"order","in":"query","description":"Column you want to sort on and the sort direction (comma separated). Example: id,desc","required":false,"type":"string"},{"name":"page","in":"query","description":"Page number and page size (comma separated). NB: You cannot use \"page\" without \"order\"! Example: 1,10","required":false,"type":"string"},{"name":"transform","in":"query","description":"Transform the records to object format. NB: This can also be done client-side in JavaScript!","required":false,"type":"boolean"},{"name":"columns","in":"query","description":"The table columns you want to retrieve (comma separated). Example: posts.*,categories.name","required":false,"type":"string"},{"name":"filter[]","in":"query","description":"Filters to be applied. Each filter consists of a column, an operator and a value (comma separated). Example: id,eq,1","required":false,"type":"array","collectionFormat":"multi","items":{"type":"string"}},{"name":"satisfy","in":"query","description":"Should all filters match (default)? Or any?","required":false,"type":"string","enum":["any"]}],"responses":{"200":{"description":"An array of szelvenyek","schema":{"type": "object","properties": {"szelvenyek": {"type":"array","items":{"type": "object","properties": {"Id": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-primary-key": true},"Tipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-references": ["szelvenytipusok","Tipus"]},"Altipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-references": ["szelvenyaltipusok","Altipus"]},"Nev": {"type": "string","x-dbtype": "varchar","x-nullable": false,"maxLength": 255}}}}}}}}},"post":{"tags":["szelvenyek"],"summary":"Create","parameters":[{"name":"item","in":"body","description":"Item to create.","required":true,"schema":{"type": "object","required":["Id","Tipus","Altipus","Nev"],"properties": {"Id": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-primary-key": true},"Tipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-references": ["szelvenytipusok","Tipus"]},"Altipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-references": ["szelvenyaltipusok","Altipus"]},"Nev": {"type": "string","x-dbtype": "varchar","x-nullable": false,"maxLength": 255}}}}],"responses":{"200":{"description":"Identifier of created item.","schema":{"type":"integer"}}}}},"/szelvenyek/{id}":{"get":{"tags":["szelvenyek"],"summary":"Read","parameters":[{"name":"id","in":"path","description":"Identifier for item.","required":true,"type":"string"}],"responses":{"200":{"description":"The requested item.","schema":{"type": "object","properties": {"Id": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-primary-key": true},"Tipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-references": ["szelvenytipusok","Tipus"]},"Altipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-references": ["szelvenyaltipusok","Altipus"]},"Nev": {"type": "string","x-dbtype": "varchar","x-nullable": false,"maxLength": 255}}}}}},"put":{"tags":["szelvenyek"],"summary":"Update","parameters":[{"name":"id","in":"path","description":"Identifier for item.","required":true,"type":"string"},{"name":"item","in":"body","description":"Properties of item to update.","required":true,"schema":{"type": "object","required":["Id","Tipus","Altipus","Nev"],"properties": {"Id": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-primary-key": true},"Tipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-references": ["szelvenytipusok","Tipus"]},"Altipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-references": ["szelvenyaltipusok","Altipus"]},"Nev": {"type": "string","x-dbtype": "varchar","x-nullable": false,"maxLength": 255}}}}],"responses":{"200":{"description":"Number of affected rows.","schema":{"type":"integer"}}}},"delete":{"tags":["szelvenyek"],"summary":"Delete","parameters":[{"name":"id","in":"path","description":"Identifier for item.","required":true,"type":"string"}],"responses":{"200":{"description":"Number of affected rows.","schema":{"type":"integer"}}}},"patch":{"tags":["szelvenyek"],"summary":"Increment","parameters":[{"name":"id","in":"path","description":"Identifier for item.","required":true,"type":"string"},{"name":"item","in":"body","description":"Properties of item to update.","required":true,"schema":{"type": "object","required":["Id","Tipus","Altipus","Nev"],"properties": {"Id": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-primary-key": true},"Tipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-references": ["szelvenytipusok","Tipus"]},"Altipus": {"type": "integer","x-dbtype": "int","x-nullable": false,"x-references": ["szelvenyaltipusok","Altipus"]},"Nev": {"type": "string","x-dbtype": "varchar","x-nullable": false,"maxLength": 255}}}}],"responses":{"200":{"description":"Number of affected rows.","schema":{"type":"integer"}}}}}}}