invoiceApi.xsd 111 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. # Project: Magyar Online Számla Rendszer invoiceApi XML séma
  4. # Author: NAV Informatikai Intézet
  5. # Version: v3.0 2020/11/09
  6. -->
  7. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.nav.gov.hu/OSA/3.0/api" xmlns:data="http://schemas.nav.gov.hu/OSA/3.0/data" xmlns:common="http://schemas.nav.gov.hu/NTCA/1.0/common" xmlns:base="http://schemas.nav.gov.hu/OSA/3.0/base" targetNamespace="http://schemas.nav.gov.hu/OSA/3.0/api" elementFormDefault="qualified" attributeFormDefault="unqualified">
  8. <xs:import namespace="http://schemas.nav.gov.hu/NTCA/1.0/common" schemaLocation="common.xsd"/>
  9. <xs:import namespace="http://schemas.nav.gov.hu/OSA/3.0/base" schemaLocation="invoiceBase.xsd"/>
  10. <xs:simpleType name="AnnulmentVerificationStatusType">
  11. <xs:annotation>
  12. <xs:documentation xml:lang="hu">Technikai érvénytelenítő kérések jóváhagyási státusza</xs:documentation>
  13. <xs:documentation xml:lang="en">Verification status of technical annulment requests</xs:documentation>
  14. </xs:annotation>
  15. <xs:restriction base="common:AtomicStringType32">
  16. <xs:enumeration value="NOT_VERIFIABLE">
  17. <xs:annotation>
  18. <xs:documentation xml:lang="hu">A technikai érvénytelenítés kliens hiba miatt nem hagyható jóvá</xs:documentation>
  19. <xs:documentation xml:lang="en">The technical annulment is not verifiable due to client error</xs:documentation>
  20. </xs:annotation>
  21. </xs:enumeration>
  22. <xs:enumeration value="VERIFICATION_PENDING">
  23. <xs:annotation>
  24. <xs:documentation xml:lang="hu">A technikai érvénytelenítés jóváhagyásra vár</xs:documentation>
  25. <xs:documentation xml:lang="en">The technical annulment is awaiting verification</xs:documentation>
  26. </xs:annotation>
  27. </xs:enumeration>
  28. <xs:enumeration value="VERIFICATION_DONE">
  29. <xs:annotation>
  30. <xs:documentation xml:lang="hu">A technikai érvénytelenítés jóváhagyásra került</xs:documentation>
  31. <xs:documentation xml:lang="en">The technical annulment has been verified</xs:documentation>
  32. </xs:annotation>
  33. </xs:enumeration>
  34. <xs:enumeration value="VERIFICATION_REJECTED">
  35. <xs:annotation>
  36. <xs:documentation xml:lang="hu">A technikai érvénytelenítés elutasításra került</xs:documentation>
  37. <xs:documentation xml:lang="en">The technical annulment has been rejected</xs:documentation>
  38. </xs:annotation>
  39. </xs:enumeration>
  40. </xs:restriction>
  41. </xs:simpleType>
  42. <xs:simpleType name="IncorporationType">
  43. <xs:annotation>
  44. <xs:documentation xml:lang="hu">Gazdasági típus</xs:documentation>
  45. <xs:documentation xml:lang="en">Incorporation type</xs:documentation>
  46. </xs:annotation>
  47. <xs:restriction base="common:AtomicStringType15">
  48. <xs:enumeration value="ORGANIZATION">
  49. <xs:annotation>
  50. <xs:documentation xml:lang="hu">Gazdasági társaság</xs:documentation>
  51. <xs:documentation xml:lang="en">Economical company</xs:documentation>
  52. </xs:annotation>
  53. </xs:enumeration>
  54. <xs:enumeration value="SELF_EMPLOYED">
  55. <xs:annotation>
  56. <xs:documentation xml:lang="hu">Egyéni vállalkozó</xs:documentation>
  57. <xs:documentation xml:lang="en">Self employed private entrepreneur</xs:documentation>
  58. </xs:annotation>
  59. </xs:enumeration>
  60. <xs:enumeration value="TAXABLE_PERSON">
  61. <xs:annotation>
  62. <xs:documentation xml:lang="hu">Adószámos magánszemély</xs:documentation>
  63. <xs:documentation xml:lang="en">Private person with tax number</xs:documentation>
  64. </xs:annotation>
  65. </xs:enumeration>
  66. </xs:restriction>
  67. </xs:simpleType>
  68. <xs:simpleType name="InvoiceDirectionType">
  69. <xs:annotation>
  70. <xs:documentation xml:lang="hu">Kimenő vagy bejövő számla keresési paramétere</xs:documentation>
  71. <xs:documentation xml:lang="en">Inbound or outbound invoice query parameter</xs:documentation>
  72. </xs:annotation>
  73. <xs:restriction base="common:AtomicStringType15">
  74. <xs:enumeration value="INBOUND">
  75. <xs:annotation>
  76. <xs:documentation xml:lang="hu">Bejövő (vevő oldali) számla keresési paramétere</xs:documentation>
  77. <xs:documentation xml:lang="en">Inbound (customer side) invoice query parameter</xs:documentation>
  78. </xs:annotation>
  79. </xs:enumeration>
  80. <xs:enumeration value="OUTBOUND">
  81. <xs:annotation>
  82. <xs:documentation xml:lang="hu">Kimenő (kiállító oldali) számla keresési paramétere</xs:documentation>
  83. <xs:documentation xml:lang="en">Outbound (supplier side) invoice query parameter</xs:documentation>
  84. </xs:annotation>
  85. </xs:enumeration>
  86. </xs:restriction>
  87. </xs:simpleType>
  88. <xs:simpleType name="InvoiceStatusType">
  89. <xs:annotation>
  90. <xs:documentation xml:lang="hu">A számla feldolgozási státusza</xs:documentation>
  91. <xs:documentation xml:lang="en">Processing status of the invoice</xs:documentation>
  92. </xs:annotation>
  93. <xs:restriction base="common:AtomicStringType15">
  94. <xs:enumeration value="RECEIVED">
  95. <xs:annotation>
  96. <xs:documentation xml:lang="hu">Befogadva</xs:documentation>
  97. <xs:documentation xml:lang="en">Received</xs:documentation>
  98. </xs:annotation>
  99. </xs:enumeration>
  100. <xs:enumeration value="PROCESSING">
  101. <xs:annotation>
  102. <xs:documentation xml:lang="hu">Feldolgozás alatt</xs:documentation>
  103. <xs:documentation xml:lang="en">Processing</xs:documentation>
  104. </xs:annotation>
  105. </xs:enumeration>
  106. <xs:enumeration value="SAVED">
  107. <xs:annotation>
  108. <xs:documentation xml:lang="hu">Elmentve</xs:documentation>
  109. <xs:documentation xml:lang="en">Saved</xs:documentation>
  110. </xs:annotation>
  111. </xs:enumeration>
  112. <xs:enumeration value="DONE">
  113. <xs:annotation>
  114. <xs:documentation xml:lang="hu">Kész</xs:documentation>
  115. <xs:documentation xml:lang="en">Done</xs:documentation>
  116. </xs:annotation>
  117. </xs:enumeration>
  118. <xs:enumeration value="ABORTED">
  119. <xs:annotation>
  120. <xs:documentation xml:lang="hu">Kihagyva</xs:documentation>
  121. <xs:documentation xml:lang="en">Aborted</xs:documentation>
  122. </xs:annotation>
  123. </xs:enumeration>
  124. </xs:restriction>
  125. </xs:simpleType>
  126. <xs:simpleType name="ManageAnnulmentOperationType">
  127. <xs:annotation>
  128. <xs:documentation xml:lang="hu">Technikai érvénytelenítés műveleti típus</xs:documentation>
  129. <xs:documentation xml:lang="en">Technical annulment operation type</xs:documentation>
  130. </xs:annotation>
  131. <xs:restriction base="common:AtomicStringType8">
  132. <xs:enumeration value="ANNUL">
  133. <xs:annotation>
  134. <xs:documentation xml:lang="hu">Korábbi adatszolgáltatás technikai érvénytelenítése</xs:documentation>
  135. <xs:documentation xml:lang="en">Technical annulment of previous exchange</xs:documentation>
  136. </xs:annotation>
  137. </xs:enumeration>
  138. </xs:restriction>
  139. </xs:simpleType>
  140. <xs:simpleType name="ManageInvoiceOperationType">
  141. <xs:annotation>
  142. <xs:documentation xml:lang="hu">Számlaművelet típus</xs:documentation>
  143. <xs:documentation xml:lang="en">Invoice operation type</xs:documentation>
  144. </xs:annotation>
  145. <xs:restriction base="common:AtomicStringType8">
  146. <xs:enumeration value="CREATE">
  147. <xs:annotation>
  148. <xs:documentation xml:lang="hu">Adatszolgáltatás eredeti számláról</xs:documentation>
  149. <xs:documentation xml:lang="en">Original invoice exchange</xs:documentation>
  150. </xs:annotation>
  151. </xs:enumeration>
  152. <xs:enumeration value="MODIFY">
  153. <xs:annotation>
  154. <xs:documentation xml:lang="hu">Adatszolgáltatás az eredeti számlát módosító okiratról</xs:documentation>
  155. <xs:documentation xml:lang="en">Modification invoice exchange</xs:documentation>
  156. </xs:annotation>
  157. </xs:enumeration>
  158. <xs:enumeration value="STORNO">
  159. <xs:annotation>
  160. <xs:documentation xml:lang="hu">Adatszolgáltatás az eredeti számla érvénytelenítéséről</xs:documentation>
  161. <xs:documentation xml:lang="en">Exchange concerning invoice invalidation</xs:documentation>
  162. </xs:annotation>
  163. </xs:enumeration>
  164. </xs:restriction>
  165. </xs:simpleType>
  166. <xs:simpleType name="OriginalRequestVersionType">
  167. <xs:annotation>
  168. <xs:documentation xml:lang="hu">A lekérdezett számla requestVersion értéke</xs:documentation>
  169. <xs:documentation xml:lang="en">Request version value of the queried invoice</xs:documentation>
  170. </xs:annotation>
  171. <xs:restriction base="common:AtomicStringType8">
  172. <xs:enumeration value="1.0"/>
  173. <xs:enumeration value="1.1"/>
  174. <xs:enumeration value="2.0"/>
  175. <xs:enumeration value="3.0"/>
  176. </xs:restriction>
  177. </xs:simpleType>
  178. <xs:simpleType name="QueryNameType">
  179. <xs:annotation>
  180. <xs:documentation xml:lang="hu">Név kereső paraméter típus</xs:documentation>
  181. <xs:documentation xml:lang="en">Name query parameter type</xs:documentation>
  182. </xs:annotation>
  183. <xs:restriction base="common:SimpleText512NotBlankType">
  184. <xs:minLength value="5"/>
  185. </xs:restriction>
  186. </xs:simpleType>
  187. <xs:simpleType name="QueryOperatorType">
  188. <xs:annotation>
  189. <xs:documentation xml:lang="hu">Relációs művelet típus</xs:documentation>
  190. <xs:documentation xml:lang="en">Relational operator type</xs:documentation>
  191. </xs:annotation>
  192. <xs:restriction base="common:AtomicStringType8">
  193. <xs:enumeration value="EQ">
  194. <xs:annotation>
  195. <xs:documentation xml:lang="hu">Egyenlőség</xs:documentation>
  196. <xs:documentation xml:lang="en">Equals</xs:documentation>
  197. </xs:annotation>
  198. </xs:enumeration>
  199. <xs:enumeration value="GT">
  200. <xs:annotation>
  201. <xs:documentation xml:lang="hu">Nagyobb mint reláció</xs:documentation>
  202. <xs:documentation xml:lang="en">Greater than relation</xs:documentation>
  203. </xs:annotation>
  204. </xs:enumeration>
  205. <xs:enumeration value="GTE">
  206. <xs:annotation>
  207. <xs:documentation xml:lang="hu">Nagyobb vagy egyenlő reláció</xs:documentation>
  208. <xs:documentation xml:lang="en">Greater or equals relation</xs:documentation>
  209. </xs:annotation>
  210. </xs:enumeration>
  211. <xs:enumeration value="LT">
  212. <xs:annotation>
  213. <xs:documentation xml:lang="hu">Kisebb mint reláció</xs:documentation>
  214. <xs:documentation xml:lang="en">Less than relation</xs:documentation>
  215. </xs:annotation>
  216. </xs:enumeration>
  217. <xs:enumeration value="LTE">
  218. <xs:annotation>
  219. <xs:documentation xml:lang="hu">Kisebb vagy egyenlő reláció</xs:documentation>
  220. <xs:documentation xml:lang="en">Less or equals relation</xs:documentation>
  221. </xs:annotation>
  222. </xs:enumeration>
  223. </xs:restriction>
  224. </xs:simpleType>
  225. <xs:simpleType name="RequestStatusType">
  226. <xs:annotation>
  227. <xs:documentation xml:lang="hu">A kérés feldolgozási státusza</xs:documentation>
  228. <xs:documentation xml:lang="en">Processing status of the request</xs:documentation>
  229. </xs:annotation>
  230. <xs:restriction base="common:AtomicStringType15">
  231. <xs:enumeration value="RECEIVED">
  232. <xs:annotation>
  233. <xs:documentation xml:lang="hu">Befogadva</xs:documentation>
  234. <xs:documentation xml:lang="en">Received</xs:documentation>
  235. </xs:annotation>
  236. </xs:enumeration>
  237. <xs:enumeration value="PROCESSING">
  238. <xs:annotation>
  239. <xs:documentation xml:lang="hu">Feldolgozás alatt</xs:documentation>
  240. <xs:documentation xml:lang="en">Processing</xs:documentation>
  241. </xs:annotation>
  242. </xs:enumeration>
  243. <xs:enumeration value="SAVED">
  244. <xs:annotation>
  245. <xs:documentation xml:lang="hu">Elmentve</xs:documentation>
  246. <xs:documentation xml:lang="en">Saved</xs:documentation>
  247. </xs:annotation>
  248. </xs:enumeration>
  249. <xs:enumeration value="FINISHED">
  250. <xs:annotation>
  251. <xs:documentation xml:lang="hu">Feldolgozás befejezve</xs:documentation>
  252. <xs:documentation xml:lang="en">Finished processing</xs:documentation>
  253. </xs:annotation>
  254. </xs:enumeration>
  255. <xs:enumeration value="NOTIFIED">
  256. <xs:annotation>
  257. <xs:documentation xml:lang="hu">Lekérdezve</xs:documentation>
  258. <xs:documentation xml:lang="en">Notified</xs:documentation>
  259. </xs:annotation>
  260. </xs:enumeration>
  261. </xs:restriction>
  262. </xs:simpleType>
  263. <xs:simpleType name="SoftwareIdType">
  264. <xs:annotation>
  265. <xs:documentation xml:lang="hu">A számlázóprogram azonosítója</xs:documentation>
  266. <xs:documentation xml:lang="en">Billing software ID</xs:documentation>
  267. </xs:annotation>
  268. <xs:restriction base="common:AtomicStringType32">
  269. <xs:length value="18"/>
  270. <xs:pattern value="[0-9A-Z\-]{18}"/>
  271. </xs:restriction>
  272. </xs:simpleType>
  273. <xs:simpleType name="SoftwareOperationType">
  274. <xs:annotation>
  275. <xs:documentation xml:lang="hu">A számlázóprogram működési típusa (lokális program vagy online számlázó szolgáltatás)</xs:documentation>
  276. <xs:documentation xml:lang="en">Billing operation type (local program or online billing service)</xs:documentation>
  277. </xs:annotation>
  278. <xs:restriction base="common:AtomicStringType15">
  279. <xs:enumeration value="LOCAL_SOFTWARE">
  280. <xs:annotation>
  281. <xs:documentation xml:lang="hu">Lokális program</xs:documentation>
  282. <xs:documentation xml:lang="en">Local program</xs:documentation>
  283. </xs:annotation>
  284. </xs:enumeration>
  285. <xs:enumeration value="ONLINE_SERVICE">
  286. <xs:annotation>
  287. <xs:documentation xml:lang="hu">Online számlázó szolgáltatás</xs:documentation>
  288. <xs:documentation xml:lang="en">Online billing service</xs:documentation>
  289. </xs:annotation>
  290. </xs:enumeration>
  291. </xs:restriction>
  292. </xs:simpleType>
  293. <xs:simpleType name="SourceType">
  294. <xs:annotation>
  295. <xs:documentation xml:lang="hu">Az adatszolgáltatás forrása</xs:documentation>
  296. <xs:documentation xml:lang="en">Data exchange source</xs:documentation>
  297. </xs:annotation>
  298. <xs:restriction base="common:AtomicStringType8">
  299. <xs:enumeration value="WEB">
  300. <xs:annotation>
  301. <xs:documentation xml:lang="hu">Webes adatszolgáltatás</xs:documentation>
  302. <xs:documentation xml:lang="en">Web exchange</xs:documentation>
  303. </xs:annotation>
  304. </xs:enumeration>
  305. <xs:enumeration value="XML">
  306. <xs:annotation>
  307. <xs:documentation xml:lang="hu">Kézi XML feltöltés</xs:documentation>
  308. <xs:documentation xml:lang="en">Manual XML upload</xs:documentation>
  309. </xs:annotation>
  310. </xs:enumeration>
  311. <xs:enumeration value="MGM">
  312. <xs:annotation>
  313. <xs:documentation xml:lang="hu">Gép-gép adatkapcsolati adatszolgáltatás</xs:documentation>
  314. <xs:documentation xml:lang="en">Machine-to-machine exchange</xs:documentation>
  315. </xs:annotation>
  316. </xs:enumeration>
  317. <xs:enumeration value="OPG">
  318. <xs:annotation>
  319. <xs:documentation xml:lang="hu">Online pénztárgépes adatszolgáltatás</xs:documentation>
  320. <xs:documentation xml:lang="en">Online cash register exchange</xs:documentation>
  321. </xs:annotation>
  322. </xs:enumeration>
  323. <xs:enumeration value="OSZ">
  324. <xs:annotation>
  325. <xs:documentation xml:lang="hu">NAV online számlázó</xs:documentation>
  326. <xs:documentation xml:lang="en">NTCA online invoicing</xs:documentation>
  327. </xs:annotation>
  328. </xs:enumeration>
  329. </xs:restriction>
  330. </xs:simpleType>
  331. <xs:simpleType name="TaxpayerAddressTypeType">
  332. <xs:annotation>
  333. <xs:documentation xml:lang="hu">Adózói cím típus</xs:documentation>
  334. <xs:documentation xml:lang="en">Taxpayer address type</xs:documentation>
  335. </xs:annotation>
  336. <xs:restriction base="common:AtomicStringType8">
  337. <xs:enumeration value="HQ">
  338. <xs:annotation>
  339. <xs:documentation xml:lang="hu">Székhely</xs:documentation>
  340. <xs:documentation xml:lang="en">Headquarter</xs:documentation>
  341. </xs:annotation>
  342. </xs:enumeration>
  343. <xs:enumeration value="SITE">
  344. <xs:annotation>
  345. <xs:documentation xml:lang="hu">Telephely</xs:documentation>
  346. <xs:documentation xml:lang="en">Site office</xs:documentation>
  347. </xs:annotation>
  348. </xs:enumeration>
  349. <xs:enumeration value="BRANCH">
  350. <xs:annotation>
  351. <xs:documentation xml:lang="hu">Fióktelep</xs:documentation>
  352. <xs:documentation xml:lang="en">Branch office</xs:documentation>
  353. </xs:annotation>
  354. </xs:enumeration>
  355. </xs:restriction>
  356. </xs:simpleType>
  357. <xs:complexType name="AdditionalQueryParamsType">
  358. <xs:annotation>
  359. <xs:documentation xml:lang="hu">A számla lekérdezés kiegészítő paraméterei</xs:documentation>
  360. <xs:documentation xml:lang="en">Additional params of the invoice query</xs:documentation>
  361. </xs:annotation>
  362. <xs:sequence>
  363. <xs:element name="taxNumber" type="common:TaxpayerIdType" minOccurs="0">
  364. <xs:annotation>
  365. <xs:documentation xml:lang="hu">A számla kiállítójának vagy vevőjének adószáma (a keresési feltétel az invoiceDirection tag értékétől függ)</xs:documentation>
  366. <xs:documentation xml:lang="en">Tax number of the supplier or the customer of the invoice (the search criteria depends on the value of the invoiceDirection tag)</xs:documentation>
  367. </xs:annotation>
  368. </xs:element>
  369. <xs:element name="groupMemberTaxNumber" type="common:TaxpayerIdType" minOccurs="0">
  370. <xs:annotation>
  371. <xs:documentation xml:lang="hu">A számla kiállítójának vagy vevőjének csoport tag adószáma (a keresési feltétel az invoiceDirection tag értékétől függ)</xs:documentation>
  372. <xs:documentation xml:lang="en">Tax number of group member of the supplier or the customer of the invoice (the search criteria depends on the value of the invoiceDirection tag)</xs:documentation>
  373. </xs:annotation>
  374. </xs:element>
  375. <xs:element name="name" type="QueryNameType" minOccurs="0">
  376. <xs:annotation>
  377. <xs:documentation xml:lang="hu">A számla kiállítójának vagy vevőjének keresőparamétere szó eleji egyezőségre (a keresési feltétel az invoiceDirection tag értékétől függ)</xs:documentation>
  378. <xs:documentation xml:lang="en">Query param of the supplier or the customer of the invoice for leading match pattern (the search criteria depends on the value of the invoiceDirection tag)</xs:documentation>
  379. </xs:annotation>
  380. </xs:element>
  381. <xs:element name="invoiceCategory" type="base:InvoiceCategoryType" minOccurs="0">
  382. <xs:annotation>
  383. <xs:documentation xml:lang="hu">A számla típusa</xs:documentation>
  384. <xs:documentation xml:lang="en">Type of invoice</xs:documentation>
  385. </xs:annotation>
  386. </xs:element>
  387. <xs:element name="paymentMethod" type="base:PaymentMethodType" minOccurs="0">
  388. <xs:annotation>
  389. <xs:documentation xml:lang="hu">Fizetés módja</xs:documentation>
  390. <xs:documentation xml:lang="en">Method of payment</xs:documentation>
  391. </xs:annotation>
  392. </xs:element>
  393. <xs:element name="invoiceAppearance" type="base:InvoiceAppearanceType" minOccurs="0">
  394. <xs:annotation>
  395. <xs:documentation xml:lang="hu">A számla megjelenési formája</xs:documentation>
  396. <xs:documentation xml:lang="en">Form of appearance of the invoice</xs:documentation>
  397. </xs:annotation>
  398. </xs:element>
  399. <xs:element name="source" type="SourceType" minOccurs="0">
  400. <xs:annotation>
  401. <xs:documentation xml:lang="hu">Az adatszolgáltatás forrása</xs:documentation>
  402. <xs:documentation xml:lang="en">Data exchange source</xs:documentation>
  403. </xs:annotation>
  404. </xs:element>
  405. <xs:element name="currency" type="common:CurrencyType" minOccurs="0">
  406. <xs:annotation>
  407. <xs:documentation xml:lang="hu">A számla pénzneme</xs:documentation>
  408. <xs:documentation xml:lang="en">Currency of the invoice</xs:documentation>
  409. </xs:annotation>
  410. </xs:element>
  411. </xs:sequence>
  412. </xs:complexType>
  413. <xs:complexType name="AnnulmentDataType">
  414. <xs:annotation>
  415. <xs:documentation xml:lang="hu">Technikai érvénytelenítés státusz adatai</xs:documentation>
  416. <xs:documentation xml:lang="en">Status data of technical annulment</xs:documentation>
  417. </xs:annotation>
  418. <xs:sequence>
  419. <xs:element name="annulmentVerificationStatus" type="AnnulmentVerificationStatusType">
  420. <xs:annotation>
  421. <xs:documentation xml:lang="hu">Technikai érvénytelenítő kérések jóváhagyási státusza</xs:documentation>
  422. <xs:documentation xml:lang="en">Verification status of technical annulment requests</xs:documentation>
  423. </xs:annotation>
  424. </xs:element>
  425. <xs:element name="annulmentDecisionDate" type="base:InvoiceTimestampType" minOccurs="0">
  426. <xs:annotation>
  427. <xs:documentation xml:lang="hu">A technikai érvénytelenítés jóváhagyásának vagy elutasításának időpontja UTC időben</xs:documentation>
  428. <xs:documentation xml:lang="en">Date of verification or rejection of the technical annulment in UTC time</xs:documentation>
  429. </xs:annotation>
  430. </xs:element>
  431. <xs:element name="annulmentDecisionUser" type="common:LoginType" minOccurs="0">
  432. <xs:annotation>
  433. <xs:documentation xml:lang="hu">A technikai érvénytelenítést jóváhagyó vagy elutasító felhasználó neve</xs:documentation>
  434. <xs:documentation xml:lang="en">Login name of the user deciding over the technical annulment's verification or rejection</xs:documentation>
  435. </xs:annotation>
  436. </xs:element>
  437. </xs:sequence>
  438. </xs:complexType>
  439. <xs:complexType name="AnnulmentOperationListType">
  440. <xs:annotation>
  441. <xs:documentation xml:lang="hu">A kéréshez tartozó kötegelt technikai érvénytelenítések</xs:documentation>
  442. <xs:documentation xml:lang="en">Batch technical annulment operations of the request</xs:documentation>
  443. </xs:annotation>
  444. <xs:sequence>
  445. <xs:element name="annulmentOperation" type="AnnulmentOperationType" maxOccurs="100">
  446. <xs:annotation>
  447. <xs:documentation xml:lang="hu">A kéréshez tartozó technikai érvénytelenítő művelet</xs:documentation>
  448. <xs:documentation xml:lang="en">Technical annulment operation of the request</xs:documentation>
  449. </xs:annotation>
  450. </xs:element>
  451. </xs:sequence>
  452. </xs:complexType>
  453. <xs:complexType name="AnnulmentOperationType">
  454. <xs:annotation>
  455. <xs:documentation xml:lang="hu">A kéréshez tartozó technikai érvénytelenítő művelet</xs:documentation>
  456. <xs:documentation xml:lang="en">Technical annulment operation of the request</xs:documentation>
  457. </xs:annotation>
  458. <xs:sequence>
  459. <xs:element name="index" type="base:InvoiceIndexType">
  460. <xs:annotation>
  461. <xs:documentation xml:lang="hu">A technikai érvénytelenítés sorszáma a kérésen belül</xs:documentation>
  462. <xs:documentation xml:lang="en">Sequence number of the technical annulment within the request</xs:documentation>
  463. </xs:annotation>
  464. </xs:element>
  465. <xs:element name="annulmentOperation" type="ManageAnnulmentOperationType">
  466. <xs:annotation>
  467. <xs:documentation xml:lang="hu">A kért technikai érvénytelenítés művelet típusa</xs:documentation>
  468. <xs:documentation xml:lang="en">Type of the desired technical annulment operation</xs:documentation>
  469. </xs:annotation>
  470. </xs:element>
  471. <xs:element name="invoiceAnnulment" type="xs:base64Binary">
  472. <xs:annotation>
  473. <xs:documentation xml:lang="hu">Technikai érvénytelenítés adatok BASE64-ben kódolt tartalma</xs:documentation>
  474. <xs:documentation xml:lang="en">Technical annulment data in BASE64 encoded form</xs:documentation>
  475. </xs:annotation>
  476. </xs:element>
  477. </xs:sequence>
  478. </xs:complexType>
  479. <xs:complexType name="AuditDataType">
  480. <xs:annotation>
  481. <xs:documentation xml:lang="hu">A számla audit adatai</xs:documentation>
  482. <xs:documentation xml:lang="en">Invoice audit data</xs:documentation>
  483. </xs:annotation>
  484. <xs:sequence>
  485. <xs:element name="insdate" type="base:InvoiceTimestampType">
  486. <xs:annotation>
  487. <xs:documentation xml:lang="hu">A beszúrás időpontja UTC időben</xs:documentation>
  488. <xs:documentation xml:lang="en">Insert date in UTC time</xs:documentation>
  489. </xs:annotation>
  490. </xs:element>
  491. <xs:element name="insCusUser" type="common:LoginType">
  492. <xs:annotation>
  493. <xs:documentation xml:lang="hu">A beszúrást végző technikai felhasználó</xs:documentation>
  494. <xs:documentation xml:lang="en">Inserting technical user name</xs:documentation>
  495. </xs:annotation>
  496. </xs:element>
  497. <xs:element name="source" type="SourceType">
  498. <xs:annotation>
  499. <xs:documentation xml:lang="hu">Az adatszolgáltatás forrása</xs:documentation>
  500. <xs:documentation xml:lang="en">Data exchange source</xs:documentation>
  501. </xs:annotation>
  502. </xs:element>
  503. <xs:element name="transactionId" type="common:EntityIdType" minOccurs="0">
  504. <xs:annotation>
  505. <xs:documentation xml:lang="hu">A számla tranzakció azonosítója, ha az gépi interfészen került beküldésre</xs:documentation>
  506. <xs:documentation xml:lang="en">Transaction ID of the invoice if it was exchanged via M2M interface</xs:documentation>
  507. </xs:annotation>
  508. </xs:element>
  509. <xs:element name="index" type="base:InvoiceIndexType" minOccurs="0">
  510. <xs:annotation>
  511. <xs:documentation xml:lang="hu">A számla sorszáma a kérésen belül</xs:documentation>
  512. <xs:documentation xml:lang="en">Sequence number of the invoice within the request</xs:documentation>
  513. </xs:annotation>
  514. </xs:element>
  515. <xs:element name="batchIndex" type="base:InvoiceUnboundedIndexType" minOccurs="0">
  516. <xs:annotation>
  517. <xs:documentation xml:lang="hu">A módosító okirat sorszáma a kötegen belül</xs:documentation>
  518. <xs:documentation xml:lang="en">Sequence number of the modification document within the batch</xs:documentation>
  519. </xs:annotation>
  520. </xs:element>
  521. <xs:element name="originalRequestVersion" type="OriginalRequestVersionType">
  522. <xs:annotation>
  523. <xs:documentation xml:lang="hu">Az adatszolgáltatás requestVersion értéke</xs:documentation>
  524. <xs:documentation xml:lang="en">requestVersion value of the invoice exchange</xs:documentation>
  525. </xs:annotation>
  526. </xs:element>
  527. </xs:sequence>
  528. </xs:complexType>
  529. <xs:complexType name="BasicOnlineInvoiceRequestType">
  530. <xs:annotation>
  531. <xs:documentation xml:lang="hu">Online Számla rendszerre specifikus általános kérés adatok</xs:documentation>
  532. <xs:documentation xml:lang="en">Online Invoice specific basic request data</xs:documentation>
  533. </xs:annotation>
  534. <xs:complexContent>
  535. <xs:extension base="common:BasicRequestType">
  536. <xs:sequence>
  537. <xs:element name="software" type="SoftwareType">
  538. <xs:annotation>
  539. <xs:documentation xml:lang="hu">A számlázóprogram adatai</xs:documentation>
  540. <xs:documentation xml:lang="en">Billing software data</xs:documentation>
  541. </xs:annotation>
  542. </xs:element>
  543. </xs:sequence>
  544. </xs:extension>
  545. </xs:complexContent>
  546. </xs:complexType>
  547. <xs:complexType name="BasicOnlineInvoiceResponseType">
  548. <xs:annotation>
  549. <xs:documentation xml:lang="hu">Online Számla rendszerre specifikus általános válasz adatok</xs:documentation>
  550. <xs:documentation xml:lang="en">Online Invoice specific basic response data</xs:documentation>
  551. </xs:annotation>
  552. <xs:complexContent>
  553. <xs:extension base="common:BasicResponseType">
  554. <xs:sequence>
  555. <xs:element name="software" type="SoftwareType">
  556. <xs:annotation>
  557. <xs:documentation xml:lang="hu">A számlázóprogram adatai</xs:documentation>
  558. <xs:documentation xml:lang="en">Billing software data</xs:documentation>
  559. </xs:annotation>
  560. </xs:element>
  561. </xs:sequence>
  562. </xs:extension>
  563. </xs:complexContent>
  564. </xs:complexType>
  565. <xs:complexType name="BusinessValidationResultType">
  566. <xs:annotation>
  567. <xs:documentation xml:lang="hu">Üzleti validációs választípus</xs:documentation>
  568. <xs:documentation xml:lang="en">Business validation response type</xs:documentation>
  569. </xs:annotation>
  570. <xs:sequence>
  571. <xs:element name="validationResultCode" type="common:BusinessResultCodeType">
  572. <xs:annotation>
  573. <xs:documentation xml:lang="hu">Validációs eredmény</xs:documentation>
  574. <xs:documentation xml:lang="en">Validation result</xs:documentation>
  575. </xs:annotation>
  576. </xs:element>
  577. <xs:element name="validationErrorCode" type="common:SimpleText100NotBlankType" minOccurs="0">
  578. <xs:annotation>
  579. <xs:documentation xml:lang="hu">Validációs hibakód</xs:documentation>
  580. <xs:documentation xml:lang="en">Validation error code</xs:documentation>
  581. </xs:annotation>
  582. </xs:element>
  583. <xs:element name="message" type="common:SimpleText512NotBlankType" minOccurs="0">
  584. <xs:annotation>
  585. <xs:documentation xml:lang="hu">Feldolgozási üzenet</xs:documentation>
  586. <xs:documentation xml:lang="en">Processing message</xs:documentation>
  587. </xs:annotation>
  588. </xs:element>
  589. <xs:element name="pointer" type="PointerType" minOccurs="0">
  590. <xs:annotation>
  591. <xs:documentation xml:lang="hu">Feldolgozási kurzor adatok</xs:documentation>
  592. <xs:documentation xml:lang="en">Processing cursor data</xs:documentation>
  593. </xs:annotation>
  594. </xs:element>
  595. </xs:sequence>
  596. </xs:complexType>
  597. <xs:complexType name="DateIntervalParamType">
  598. <xs:annotation>
  599. <xs:documentation xml:lang="hu">Dátumos számla kereső paraméter</xs:documentation>
  600. <xs:documentation xml:lang="en">Date query params of invoice</xs:documentation>
  601. </xs:annotation>
  602. <xs:sequence>
  603. <xs:element name="dateFrom" type="base:InvoiceDateType">
  604. <xs:annotation>
  605. <xs:documentation xml:lang="hu">Dátum intervallum nagyobb vagy egyenlő paramétere</xs:documentation>
  606. <xs:documentation xml:lang="en">Date interval greater or equals parameter</xs:documentation>
  607. </xs:annotation>
  608. </xs:element>
  609. <xs:element name="dateTo" type="base:InvoiceDateType">
  610. <xs:annotation>
  611. <xs:documentation xml:lang="hu">Dátum intervallum kisebb vagy egyenlő paramétere</xs:documentation>
  612. <xs:documentation xml:lang="en">Date interval less or equals parameter</xs:documentation>
  613. </xs:annotation>
  614. </xs:element>
  615. </xs:sequence>
  616. </xs:complexType>
  617. <xs:complexType name="DateTimeIntervalParamType">
  618. <xs:annotation>
  619. <xs:documentation xml:lang="hu">Időpontos számla kereső paraméter</xs:documentation>
  620. <xs:documentation xml:lang="en">Datestamp query params of invoice</xs:documentation>
  621. </xs:annotation>
  622. <xs:sequence>
  623. <xs:element name="dateTimeFrom" type="base:InvoiceTimestampType">
  624. <xs:annotation>
  625. <xs:documentation xml:lang="hu">Időpontos intervallum nagyobb vagy egyenlő paramétere UTC idő szerint</xs:documentation>
  626. <xs:documentation xml:lang="en">Datetime interval greater or equals parameter</xs:documentation>
  627. </xs:annotation>
  628. </xs:element>
  629. <xs:element name="dateTimeTo" type="base:InvoiceTimestampType">
  630. <xs:annotation>
  631. <xs:documentation xml:lang="hu">Időpontos intervallum kisebb vagy egyenlő paramétere UTC idő szerint</xs:documentation>
  632. <xs:documentation xml:lang="en">Datetime interval less or equals parameter</xs:documentation>
  633. </xs:annotation>
  634. </xs:element>
  635. </xs:sequence>
  636. </xs:complexType>
  637. <xs:complexType name="GeneralErrorResponseType">
  638. <xs:annotation>
  639. <xs:documentation xml:lang="hu">Online Számla rendszerre specifikus általános hibaválasz típus</xs:documentation>
  640. <xs:documentation xml:lang="en">Online Invoice specific general error response type</xs:documentation>
  641. </xs:annotation>
  642. <xs:complexContent>
  643. <xs:extension base="common:GeneralErrorHeaderResponseType">
  644. <xs:sequence>
  645. <xs:element name="software" type="SoftwareType">
  646. <xs:annotation>
  647. <xs:documentation xml:lang="hu">A számlázóprogram adatai</xs:documentation>
  648. <xs:documentation xml:lang="en">Billing software data</xs:documentation>
  649. </xs:annotation>
  650. </xs:element>
  651. <xs:element name="technicalValidationMessages" type="common:TechnicalValidationResultType" minOccurs="0" maxOccurs="unbounded">
  652. <xs:annotation>
  653. <xs:documentation xml:lang="hu">Technikai validációs üzenetek</xs:documentation>
  654. <xs:documentation xml:lang="en">Technical validation messages</xs:documentation>
  655. </xs:annotation>
  656. </xs:element>
  657. </xs:sequence>
  658. </xs:extension>
  659. </xs:complexContent>
  660. </xs:complexType>
  661. <xs:complexType name="InvoiceChainDigestResultType">
  662. <xs:annotation>
  663. <xs:documentation xml:lang="hu">Számlalánc kivonat lekérdezés eredményei</xs:documentation>
  664. <xs:documentation xml:lang="en">Invoice chain digest query result</xs:documentation>
  665. </xs:annotation>
  666. <xs:sequence>
  667. <xs:element name="currentPage" type="common:ResponsePageType">
  668. <xs:annotation>
  669. <xs:documentation xml:lang="hu">A jelenleg lekérdezett lapszám</xs:documentation>
  670. <xs:documentation xml:lang="en">The currently queried page count</xs:documentation>
  671. </xs:annotation>
  672. </xs:element>
  673. <xs:element name="availablePage" type="common:ResponsePageType">
  674. <xs:annotation>
  675. <xs:documentation xml:lang="hu">A lekérdezés eredménye szerint elérhető utolsó lapszám</xs:documentation>
  676. <xs:documentation xml:lang="en">The highest available page count matching the query</xs:documentation>
  677. </xs:annotation>
  678. </xs:element>
  679. <xs:element name="invoiceChainElement" type="InvoiceChainElementType" minOccurs="0" maxOccurs="unbounded">
  680. <xs:annotation>
  681. <xs:documentation xml:lang="hu">Számlalánc elem</xs:documentation>
  682. <xs:documentation xml:lang="en">Invoice chain element</xs:documentation>
  683. </xs:annotation>
  684. </xs:element>
  685. </xs:sequence>
  686. </xs:complexType>
  687. <xs:complexType name="InvoiceChainDigestType">
  688. <xs:annotation>
  689. <xs:documentation xml:lang="hu">Számlalánc kivonat adatok</xs:documentation>
  690. <xs:documentation xml:lang="en">Invoice chain digest data</xs:documentation>
  691. </xs:annotation>
  692. <xs:sequence>
  693. <xs:element name="invoiceNumber" type="common:SimpleText50NotBlankType">
  694. <xs:annotation>
  695. <xs:documentation xml:lang="hu">Számla vagy módosító okirat sorszáma - ÁFA tv. 169. § b) vagy 170. § (1) bek. b) pont</xs:documentation>
  696. <xs:documentation xml:lang="en">Sequential number of the original invoice or modification document - section 169 (b) or section 170 (1) b) of the VAT law</xs:documentation>
  697. </xs:annotation>
  698. </xs:element>
  699. <xs:element name="batchIndex" type="base:InvoiceUnboundedIndexType" minOccurs="0">
  700. <xs:annotation>
  701. <xs:documentation xml:lang="hu">A módosító okirat sorszáma a kötegen belül</xs:documentation>
  702. <xs:documentation xml:lang="en">Sequence number of the modification document within the batch</xs:documentation>
  703. </xs:annotation>
  704. </xs:element>
  705. <xs:element name="invoiceOperation" type="ManageInvoiceOperationType">
  706. <xs:annotation>
  707. <xs:documentation xml:lang="hu">Számlaművelet típus</xs:documentation>
  708. <xs:documentation xml:lang="en">Invoice operation type</xs:documentation>
  709. </xs:annotation>
  710. </xs:element>
  711. <xs:element name="supplierTaxNumber" type="common:TaxpayerIdType">
  712. <xs:annotation>
  713. <xs:documentation xml:lang="hu">A kibocsátó adószáma</xs:documentation>
  714. <xs:documentation xml:lang="en">The supplier's tax number</xs:documentation>
  715. </xs:annotation>
  716. </xs:element>
  717. <xs:element name="customerTaxNumber" type="common:TaxpayerIdType" minOccurs="0">
  718. <xs:annotation>
  719. <xs:documentation xml:lang="hu">A vevő adószáma</xs:documentation>
  720. <xs:documentation xml:lang="en">The buyer's tax number</xs:documentation>
  721. </xs:annotation>
  722. </xs:element>
  723. <xs:element name="insDate" type="base:InvoiceTimestampType">
  724. <xs:annotation>
  725. <xs:documentation xml:lang="hu">A beszúrás időpontja UTC időben</xs:documentation>
  726. <xs:documentation xml:lang="en">Insert date in UTC time</xs:documentation>
  727. </xs:annotation>
  728. </xs:element>
  729. <xs:element name="originalRequestVersion" type="OriginalRequestVersionType">
  730. <xs:annotation>
  731. <xs:documentation xml:lang="hu">Az adatszolgáltatás requestVersion értéke</xs:documentation>
  732. <xs:documentation xml:lang="en">requestVersion value of the invoice exchange</xs:documentation>
  733. </xs:annotation>
  734. </xs:element>
  735. </xs:sequence>
  736. </xs:complexType>
  737. <xs:complexType name="InvoiceChainElementType">
  738. <xs:annotation>
  739. <xs:documentation xml:lang="hu">Számlalánc elem</xs:documentation>
  740. <xs:documentation xml:lang="en">Invoice chain element</xs:documentation>
  741. </xs:annotation>
  742. <xs:sequence>
  743. <xs:element name="invoiceChainDigest" type="InvoiceChainDigestType">
  744. <xs:annotation>
  745. <xs:documentation xml:lang="hu">Számlalánc kivonat adatok</xs:documentation>
  746. <xs:documentation xml:lang="en">Invoice chain digest data</xs:documentation>
  747. </xs:annotation>
  748. </xs:element>
  749. <xs:element name="invoiceLines" type="InvoiceLinesType" minOccurs="0">
  750. <xs:annotation>
  751. <xs:documentation xml:lang="hu">A számlán vagy módosító okiraton szereplő tételek kivonatos adatai</xs:documentation>
  752. <xs:documentation xml:lang="en">Product/service digest data appearing on the invoice or the modification document</xs:documentation>
  753. </xs:annotation>
  754. </xs:element>
  755. <xs:element name="invoiceReferenceData" type="InvoiceReferenceDataType" minOccurs="0">
  756. <xs:annotation>
  757. <xs:documentation xml:lang="hu">A módosítás vagy érvénytelenítés adatai</xs:documentation>
  758. <xs:documentation xml:lang="en">Modification or cancellation data</xs:documentation>
  759. </xs:annotation>
  760. </xs:element>
  761. </xs:sequence>
  762. </xs:complexType>
  763. <xs:complexType name="InvoiceChainQueryType">
  764. <xs:annotation>
  765. <xs:documentation xml:lang="hu">Számlalánc kivonat lekérdezés számlaszám paramétere</xs:documentation>
  766. <xs:documentation xml:lang="en">Invoice number param of the invoice chain digest query</xs:documentation>
  767. </xs:annotation>
  768. <xs:sequence>
  769. <xs:element name="invoiceNumber" type="common:SimpleText50NotBlankType">
  770. <xs:annotation>
  771. <xs:documentation xml:lang="hu">Számla vagy módosító okirat sorszáma</xs:documentation>
  772. <xs:documentation xml:lang="en">Sequential number of the original or modification invoice</xs:documentation>
  773. </xs:annotation>
  774. </xs:element>
  775. <xs:element name="invoiceDirection" type="InvoiceDirectionType">
  776. <xs:annotation>
  777. <xs:documentation xml:lang="hu">Kimenő vagy bejövő számla keresési paramétere</xs:documentation>
  778. <xs:documentation xml:lang="en">Inbound or outbound invoice query parameter</xs:documentation>
  779. </xs:annotation>
  780. </xs:element>
  781. <xs:element name="taxNumber" type="common:TaxpayerIdType" minOccurs="0">
  782. <xs:annotation>
  783. <xs:documentation xml:lang="hu">A számla kiállítójának vagy vevőjének adószáma (a keresési feltétel az invoiceDirection tag értékétől függ)</xs:documentation>
  784. <xs:documentation xml:lang="en">Tax number of the supplier or the customer of the invoice (the search criteria depends on the value of the invoiceDirection tag)</xs:documentation>
  785. </xs:annotation>
  786. </xs:element>
  787. </xs:sequence>
  788. </xs:complexType>
  789. <xs:complexType name="InvoiceDataResultType">
  790. <xs:annotation>
  791. <xs:documentation xml:lang="hu">Számlaszámra történő lekérdezés eredménye</xs:documentation>
  792. <xs:documentation xml:lang="en">Invoice number based query result</xs:documentation>
  793. </xs:annotation>
  794. <xs:sequence>
  795. <xs:element name="invoiceData" type="xs:base64Binary">
  796. <xs:annotation>
  797. <xs:documentation xml:lang="hu">Számla adatok BASE64-ben kódolt tartalma</xs:documentation>
  798. <xs:documentation xml:lang="en">Invoice data in BASE64 encoded form</xs:documentation>
  799. </xs:annotation>
  800. </xs:element>
  801. <xs:element name="auditData" type="AuditDataType">
  802. <xs:annotation>
  803. <xs:documentation xml:lang="hu">A számla audit adatai</xs:documentation>
  804. <xs:documentation xml:lang="en">Invoice audit data</xs:documentation>
  805. </xs:annotation>
  806. </xs:element>
  807. <xs:element name="compressedContentIndicator" type="xs:boolean">
  808. <xs:annotation>
  809. <xs:documentation xml:lang="hu">Jelöli, ha az invoice tartalmát a BASE64 dekódolást követően még ki kell tömöríteni az olvasáshoz</xs:documentation>
  810. <xs:documentation xml:lang="en">Indicates if the content of the invoice needs to be decompressed to be read following the BASE64 decoding</xs:documentation>
  811. </xs:annotation>
  812. </xs:element>
  813. <xs:element name="electronicInvoiceHash" type="common:CryptoType" minOccurs="0">
  814. <xs:annotation>
  815. <xs:documentation xml:lang="hu">Elektronikus számla vagy módosító okirat állomány hash lenyomata</xs:documentation>
  816. <xs:documentation xml:lang="en">Electronic invoice or modification document file hash value</xs:documentation>
  817. </xs:annotation>
  818. </xs:element>
  819. </xs:sequence>
  820. </xs:complexType>
  821. <xs:complexType name="InvoiceDigestResultType">
  822. <xs:annotation>
  823. <xs:documentation xml:lang="hu">Számla lekérdezési eredmények</xs:documentation>
  824. <xs:documentation xml:lang="en">Invoice query results</xs:documentation>
  825. </xs:annotation>
  826. <xs:sequence>
  827. <xs:element name="currentPage" type="common:ResponsePageType">
  828. <xs:annotation>
  829. <xs:documentation xml:lang="hu">A jelenleg lekérdezett lapszám</xs:documentation>
  830. <xs:documentation xml:lang="en">The currently queried page count</xs:documentation>
  831. </xs:annotation>
  832. </xs:element>
  833. <xs:element name="availablePage" type="common:ResponsePageType">
  834. <xs:annotation>
  835. <xs:documentation xml:lang="hu">A lekérdezés eredménye szerint elérhető utolsó lapszám</xs:documentation>
  836. <xs:documentation xml:lang="en">The highest available page count matching the query</xs:documentation>
  837. </xs:annotation>
  838. </xs:element>
  839. <xs:element name="invoiceDigest" type="InvoiceDigestType" minOccurs="0" maxOccurs="unbounded">
  840. <xs:annotation>
  841. <xs:documentation xml:lang="hu">Számla kivonat lekérdezési eredmény</xs:documentation>
  842. <xs:documentation xml:lang="en">Invoice digest query result</xs:documentation>
  843. </xs:annotation>
  844. </xs:element>
  845. </xs:sequence>
  846. </xs:complexType>
  847. <xs:complexType name="InvoiceDigestType">
  848. <xs:annotation>
  849. <xs:documentation xml:lang="hu">Kivonatos lekérdezési eredmény</xs:documentation>
  850. <xs:documentation xml:lang="en">Digest query result</xs:documentation>
  851. </xs:annotation>
  852. <xs:sequence>
  853. <xs:element name="invoiceNumber" type="common:SimpleText50NotBlankType">
  854. <xs:annotation>
  855. <xs:documentation xml:lang="hu">Számla vagy módosító okirat sorszáma - ÁFA tv. 169. § b) vagy 170. § (1) bek. b) pont</xs:documentation>
  856. <xs:documentation xml:lang="en">Sequential number of the original invoice or modification document - section 169 (b) or section 170 (1) b) of the VAT law</xs:documentation>
  857. </xs:annotation>
  858. </xs:element>
  859. <xs:element name="batchIndex" type="base:InvoiceUnboundedIndexType" minOccurs="0">
  860. <xs:annotation>
  861. <xs:documentation xml:lang="hu">A módosító okirat sorszáma a kötegen belül</xs:documentation>
  862. <xs:documentation xml:lang="en">Sequence number of the modification document within the batch</xs:documentation>
  863. </xs:annotation>
  864. </xs:element>
  865. <xs:element name="invoiceOperation" type="ManageInvoiceOperationType">
  866. <xs:annotation>
  867. <xs:documentation xml:lang="hu">Számlaművelet típus</xs:documentation>
  868. <xs:documentation xml:lang="en">Invoice operation type</xs:documentation>
  869. </xs:annotation>
  870. </xs:element>
  871. <xs:element name="invoiceCategory" type="base:InvoiceCategoryType">
  872. <xs:annotation>
  873. <xs:documentation xml:lang="hu">A számla típusa</xs:documentation>
  874. <xs:documentation xml:lang="en">Type of invoice</xs:documentation>
  875. </xs:annotation>
  876. </xs:element>
  877. <xs:element name="invoiceIssueDate" type="base:InvoiceDateType">
  878. <xs:annotation>
  879. <xs:documentation xml:lang="hu">Számla vagy módosító okirat kiállításának dátuma</xs:documentation>
  880. <xs:documentation xml:lang="en">Invoice or modification document issue date</xs:documentation>
  881. </xs:annotation>
  882. </xs:element>
  883. <xs:element name="supplierTaxNumber" type="common:TaxpayerIdType">
  884. <xs:annotation>
  885. <xs:documentation xml:lang="hu">A kibocsátó adószáma</xs:documentation>
  886. <xs:documentation xml:lang="en">The supplier's tax number</xs:documentation>
  887. </xs:annotation>
  888. </xs:element>
  889. <xs:element name="supplierGroupMemberTaxNumber" type="common:TaxpayerIdType" minOccurs="0">
  890. <xs:annotation>
  891. <xs:documentation xml:lang="hu">A kibocsátó csoporttag száma</xs:documentation>
  892. <xs:documentation xml:lang="en">The supplier's group tax number</xs:documentation>
  893. </xs:annotation>
  894. </xs:element>
  895. <xs:element name="supplierName" type="common:SimpleText512NotBlankType">
  896. <xs:annotation>
  897. <xs:documentation xml:lang="hu">Az eladó (szállító) neve</xs:documentation>
  898. <xs:documentation xml:lang="en">Name of the seller (supplier)</xs:documentation>
  899. </xs:annotation>
  900. </xs:element>
  901. <xs:element name="customerTaxNumber" type="common:TaxpayerIdType" minOccurs="0">
  902. <xs:annotation>
  903. <xs:documentation xml:lang="hu">A vevő adószáma</xs:documentation>
  904. <xs:documentation xml:lang="en">The buyer's tax number</xs:documentation>
  905. </xs:annotation>
  906. </xs:element>
  907. <xs:element name="customerGroupMemberTaxNumber" type="common:TaxpayerIdType" minOccurs="0">
  908. <xs:annotation>
  909. <xs:documentation xml:lang="hu">A vevő csoporttag száma</xs:documentation>
  910. <xs:documentation xml:lang="en">The buyer's group tax number</xs:documentation>
  911. </xs:annotation>
  912. </xs:element>
  913. <xs:element name="customerName" type="common:SimpleText512NotBlankType" minOccurs="0">
  914. <xs:annotation>
  915. <xs:documentation xml:lang="hu">A vevő neve</xs:documentation>
  916. <xs:documentation xml:lang="en">Name of the customer</xs:documentation>
  917. </xs:annotation>
  918. </xs:element>
  919. <xs:element name="paymentMethod" type="base:PaymentMethodType" minOccurs="0">
  920. <xs:annotation>
  921. <xs:documentation xml:lang="hu">Fizetés módja</xs:documentation>
  922. <xs:documentation xml:lang="en">Method of payment</xs:documentation>
  923. </xs:annotation>
  924. </xs:element>
  925. <xs:element name="paymentDate" type="base:InvoiceDateType" minOccurs="0">
  926. <xs:annotation>
  927. <xs:documentation xml:lang="hu">Fizetési határidő</xs:documentation>
  928. <xs:documentation xml:lang="en">Deadline for payment</xs:documentation>
  929. </xs:annotation>
  930. </xs:element>
  931. <xs:element name="invoiceAppearance" type="base:InvoiceAppearanceType" minOccurs="0">
  932. <xs:annotation>
  933. <xs:documentation xml:lang="hu">A számla megjelenési formája</xs:documentation>
  934. <xs:documentation xml:lang="en">Form of appearance of the invoice</xs:documentation>
  935. </xs:annotation>
  936. </xs:element>
  937. <xs:element name="source" type="SourceType" minOccurs="0">
  938. <xs:annotation>
  939. <xs:documentation xml:lang="hu">Az adatszolgáltatás forrása</xs:documentation>
  940. <xs:documentation xml:lang="en">Data exchange source</xs:documentation>
  941. </xs:annotation>
  942. </xs:element>
  943. <xs:element name="invoiceDeliveryDate" type="base:InvoiceDateType" minOccurs="0">
  944. <xs:annotation>
  945. <xs:documentation xml:lang="hu">Számla teljesítési dátuma</xs:documentation>
  946. <xs:documentation xml:lang="en">Invoice delivery date</xs:documentation>
  947. </xs:annotation>
  948. </xs:element>
  949. <xs:element name="currency" type="common:CurrencyType" minOccurs="0">
  950. <xs:annotation>
  951. <xs:documentation xml:lang="hu">A számla pénzneme</xs:documentation>
  952. <xs:documentation xml:lang="en">Currency of the invoice</xs:documentation>
  953. </xs:annotation>
  954. </xs:element>
  955. <xs:element name="invoiceNetAmount" type="base:MonetaryType" minOccurs="0">
  956. <xs:annotation>
  957. <xs:documentation xml:lang="hu">A számla nettó összege a számla pénznemében</xs:documentation>
  958. <xs:documentation xml:lang="en">Invoice net amount expressed in the currency of the invoice</xs:documentation>
  959. </xs:annotation>
  960. </xs:element>
  961. <xs:element name="invoiceNetAmountHUF" type="base:MonetaryType" minOccurs="0">
  962. <xs:annotation>
  963. <xs:documentation xml:lang="hu">A számla nettó összege forintban</xs:documentation>
  964. <xs:documentation xml:lang="en">Invoice net amount expressed in HUF</xs:documentation>
  965. </xs:annotation>
  966. </xs:element>
  967. <xs:element name="invoiceVatAmount" type="base:MonetaryType" minOccurs="0">
  968. <xs:annotation>
  969. <xs:documentation xml:lang="hu">A számla ÁFA összege a számla pénznemében</xs:documentation>
  970. <xs:documentation xml:lang="en">Invoice VAT amount expressed in the currency of the invoice</xs:documentation>
  971. </xs:annotation>
  972. </xs:element>
  973. <xs:element name="invoiceVatAmountHUF" type="base:MonetaryType" minOccurs="0">
  974. <xs:annotation>
  975. <xs:documentation xml:lang="hu">A számla ÁFA összege forintban</xs:documentation>
  976. <xs:documentation xml:lang="en">Invoice VAT amount expressed in HUF</xs:documentation>
  977. </xs:annotation>
  978. </xs:element>
  979. <xs:element name="transactionId" type="common:EntityIdType" minOccurs="0">
  980. <xs:annotation>
  981. <xs:documentation xml:lang="hu">Az adatszolgáltatás tranzakció azonosítója</xs:documentation>
  982. <xs:documentation xml:lang="en">Transaction identifier of the data exchange</xs:documentation>
  983. </xs:annotation>
  984. </xs:element>
  985. <xs:element name="index" type="base:InvoiceIndexType" minOccurs="0">
  986. <xs:annotation>
  987. <xs:documentation xml:lang="hu">A számla sorszáma a kérésen belül</xs:documentation>
  988. <xs:documentation xml:lang="en">Sequence number of the invoice within the request</xs:documentation>
  989. </xs:annotation>
  990. </xs:element>
  991. <xs:element name="originalInvoiceNumber" type="common:SimpleText50NotBlankType" minOccurs="0">
  992. <xs:annotation>
  993. <xs:documentation xml:lang="hu">Az eredeti számla sorszáma, melyre a módosítás vonatkozik</xs:documentation>
  994. <xs:documentation xml:lang="en">Sequence number of the original invoice, on which the modification occurs</xs:documentation>
  995. </xs:annotation>
  996. </xs:element>
  997. <xs:element name="modificationIndex" type="base:InvoiceUnboundedIndexType" minOccurs="0">
  998. <xs:annotation>
  999. <xs:documentation xml:lang="hu">A számlára vonatkozó módosító okirat egyedi sorszáma</xs:documentation>
  1000. <xs:documentation xml:lang="en">The unique sequence number referring to the original invoice</xs:documentation>
  1001. </xs:annotation>
  1002. </xs:element>
  1003. <xs:element name="insDate" type="base:InvoiceTimestampType">
  1004. <xs:annotation>
  1005. <xs:documentation xml:lang="hu">A beszúrás időpontja UTC időben</xs:documentation>
  1006. <xs:documentation xml:lang="en">Insert date in UTC time</xs:documentation>
  1007. </xs:annotation>
  1008. </xs:element>
  1009. <xs:element name="completenessIndicator" type="xs:boolean" minOccurs="0">
  1010. <xs:annotation>
  1011. <xs:documentation xml:lang="hu">Jelöli, ha az adatszolgáltatás maga a számla (a számlán nem szerepel több adat)</xs:documentation>
  1012. <xs:documentation xml:lang="en">Indicates whether the data exchange is identical with the invoice (the invoice does not contain any more data)</xs:documentation>
  1013. </xs:annotation>
  1014. </xs:element>
  1015. </xs:sequence>
  1016. </xs:complexType>
  1017. <xs:complexType name="InvoiceLinesType">
  1018. <xs:annotation>
  1019. <xs:documentation xml:lang="hu">A számlán vagy módosító okiraton szereplő tételek kivonatos adatai</xs:documentation>
  1020. <xs:documentation xml:lang="en">Product/service digest data appearing on the invoice or the modification document</xs:documentation>
  1021. </xs:annotation>
  1022. <xs:sequence>
  1023. <xs:element name="maxLineNumber" type="base:LineNumberType">
  1024. <xs:annotation>
  1025. <xs:documentation xml:lang="hu">A sorok száma közül a legmagasabb, amit a számla tartalmaz</xs:documentation>
  1026. <xs:documentation xml:lang="en">The highest line number value the invoice contains</xs:documentation>
  1027. </xs:annotation>
  1028. </xs:element>
  1029. <xs:element name="newCreatedLines" type="NewCreatedLinesType" minOccurs="0" maxOccurs="unbounded">
  1030. <xs:annotation>
  1031. <xs:documentation xml:lang="hu">A módosító okirat által újként létrehozott számlasorok</xs:documentation>
  1032. <xs:documentation xml:lang="en">New invoice lines created by the modification document</xs:documentation>
  1033. </xs:annotation>
  1034. </xs:element>
  1035. </xs:sequence>
  1036. </xs:complexType>
  1037. <xs:complexType name="InvoiceNumberQueryType">
  1038. <xs:annotation>
  1039. <xs:documentation xml:lang="hu">Számla lekérdezés számlaszám paramétere</xs:documentation>
  1040. <xs:documentation xml:lang="en">Invoice number param of the Invoice query</xs:documentation>
  1041. </xs:annotation>
  1042. <xs:sequence>
  1043. <xs:element name="invoiceNumber" type="common:SimpleText50NotBlankType">
  1044. <xs:annotation>
  1045. <xs:documentation xml:lang="hu">Számla vagy módosító okirat sorszáma</xs:documentation>
  1046. <xs:documentation xml:lang="en">Sequential number of the original or modification invoice</xs:documentation>
  1047. </xs:annotation>
  1048. </xs:element>
  1049. <xs:element name="invoiceDirection" type="InvoiceDirectionType">
  1050. <xs:annotation>
  1051. <xs:documentation xml:lang="hu">Kimenő vagy bejövő számla keresési paramétere</xs:documentation>
  1052. <xs:documentation xml:lang="en">Inbound or outbound invoice query parameter</xs:documentation>
  1053. </xs:annotation>
  1054. </xs:element>
  1055. <xs:element name="batchIndex" type="base:InvoiceUnboundedIndexType" minOccurs="0">
  1056. <xs:annotation>
  1057. <xs:documentation xml:lang="hu">A módosító okirat sorszáma a kötegen belül</xs:documentation>
  1058. <xs:documentation xml:lang="en">Sequence number of the modification document within the batch</xs:documentation>
  1059. </xs:annotation>
  1060. </xs:element>
  1061. <xs:element name="supplierTaxNumber" type="common:TaxpayerIdType" minOccurs="0">
  1062. <xs:annotation>
  1063. <xs:documentation xml:lang="hu">Vevő oldali lekérdezés esetén a számla kiállítójának adószáma, ha több érvényes számla is megtalálható azonos sorszámmal</xs:documentation>
  1064. <xs:documentation xml:lang="en">The supplier's tax number in case of querying as customer, if the query result found more than one valid invoices with the same invoice number</xs:documentation>
  1065. </xs:annotation>
  1066. </xs:element>
  1067. </xs:sequence>
  1068. </xs:complexType>
  1069. <xs:complexType name="InvoiceOperationListType">
  1070. <xs:annotation>
  1071. <xs:documentation xml:lang="hu">A kéréshez tartozó kötegelt számlaműveletek</xs:documentation>
  1072. <xs:documentation xml:lang="en">Batch invoice operations of the request</xs:documentation>
  1073. </xs:annotation>
  1074. <xs:sequence>
  1075. <xs:element name="compressedContent" type="xs:boolean">
  1076. <xs:annotation>
  1077. <xs:documentation xml:lang="hu">Tömörített tartalom jelzése a feldolgozási folyamat számára</xs:documentation>
  1078. <xs:documentation xml:lang="en">Compressed content indicator for the processing flow</xs:documentation>
  1079. </xs:annotation>
  1080. </xs:element>
  1081. <xs:element name="invoiceOperation" type="InvoiceOperationType" maxOccurs="100">
  1082. <xs:annotation>
  1083. <xs:documentation xml:lang="hu">A kéréshez tartozó számlaművelet</xs:documentation>
  1084. <xs:documentation xml:lang="en">Invoice operation of the request</xs:documentation>
  1085. </xs:annotation>
  1086. </xs:element>
  1087. </xs:sequence>
  1088. </xs:complexType>
  1089. <xs:complexType name="InvoiceOperationType">
  1090. <xs:annotation>
  1091. <xs:documentation xml:lang="hu">A kéréshez tartozó számlaművelet</xs:documentation>
  1092. <xs:documentation xml:lang="en">Invoice operation of the request</xs:documentation>
  1093. </xs:annotation>
  1094. <xs:sequence>
  1095. <xs:element name="index" type="base:InvoiceIndexType">
  1096. <xs:annotation>
  1097. <xs:documentation xml:lang="hu">A számla sorszáma a kérésen belül</xs:documentation>
  1098. <xs:documentation xml:lang="en">Sequence number of the invoice within the request</xs:documentation>
  1099. </xs:annotation>
  1100. </xs:element>
  1101. <xs:element name="invoiceOperation" type="ManageInvoiceOperationType">
  1102. <xs:annotation>
  1103. <xs:documentation xml:lang="hu">A kért számla művelet típusa</xs:documentation>
  1104. <xs:documentation xml:lang="en">Type of the desired invoice operation</xs:documentation>
  1105. </xs:annotation>
  1106. </xs:element>
  1107. <xs:element name="invoiceData" type="xs:base64Binary">
  1108. <xs:annotation>
  1109. <xs:documentation xml:lang="hu">Számla adatok BASE64-ben kódolt tartalma</xs:documentation>
  1110. <xs:documentation xml:lang="en">Invoice data in BASE64 encoded form</xs:documentation>
  1111. </xs:annotation>
  1112. </xs:element>
  1113. <xs:element name="electronicInvoiceHash" type="common:CryptoType" minOccurs="0">
  1114. <xs:annotation>
  1115. <xs:documentation xml:lang="hu">Elektronikus számla vagy módosító okirat állomány hash lenyomata</xs:documentation>
  1116. <xs:documentation xml:lang="en">Electronic invoice or modification document file hash value</xs:documentation>
  1117. </xs:annotation>
  1118. </xs:element>
  1119. </xs:sequence>
  1120. </xs:complexType>
  1121. <xs:complexType name="InvoiceQueryParamsType">
  1122. <xs:annotation>
  1123. <xs:documentation xml:lang="hu">Számla lekérdezési paraméterek</xs:documentation>
  1124. <xs:documentation xml:lang="en">Invoice query parameters</xs:documentation>
  1125. </xs:annotation>
  1126. <xs:sequence>
  1127. <xs:element name="mandatoryQueryParams" type="MandatoryQueryParamsType">
  1128. <xs:annotation>
  1129. <xs:documentation xml:lang="hu">A számla lekérdezés kötelező paraméterei</xs:documentation>
  1130. <xs:documentation xml:lang="en">Mandatory params of the invoice query</xs:documentation>
  1131. </xs:annotation>
  1132. </xs:element>
  1133. <xs:element name="additionalQueryParams" type="AdditionalQueryParamsType" minOccurs="0">
  1134. <xs:annotation>
  1135. <xs:documentation xml:lang="hu">A számla lekérdezés kiegészítő paraméterei</xs:documentation>
  1136. <xs:documentation xml:lang="en">Additional params of the invoice query</xs:documentation>
  1137. </xs:annotation>
  1138. </xs:element>
  1139. <xs:element name="relationalQueryParams" type="RelationalQueryParamsType" minOccurs="0">
  1140. <xs:annotation>
  1141. <xs:documentation xml:lang="hu">A számla lekérdezés relációs paraméterei</xs:documentation>
  1142. <xs:documentation xml:lang="en">Relational params of the invoice query</xs:documentation>
  1143. </xs:annotation>
  1144. </xs:element>
  1145. <xs:element name="transactionQueryParams" type="TransactionQueryParamsType" minOccurs="0">
  1146. <xs:annotation>
  1147. <xs:documentation xml:lang="hu">A számla lekérdezés tranzakciós paraméterei</xs:documentation>
  1148. <xs:documentation xml:lang="en">Transactional params of the invoice query</xs:documentation>
  1149. </xs:annotation>
  1150. </xs:element>
  1151. </xs:sequence>
  1152. </xs:complexType>
  1153. <xs:complexType name="InvoiceReferenceDataType">
  1154. <xs:annotation>
  1155. <xs:documentation xml:lang="hu">A módosítás vagy érvénytelenítés adatai</xs:documentation>
  1156. <xs:documentation xml:lang="en">Modification or cancellation data</xs:documentation>
  1157. </xs:annotation>
  1158. <xs:sequence>
  1159. <xs:element name="originalInvoiceNumber" type="common:SimpleText50NotBlankType">
  1160. <xs:annotation>
  1161. <xs:documentation xml:lang="hu">Az eredeti számla sorszáma, melyre a módosítás vonatkozik - ÁFA tv. 170. § (1) c)</xs:documentation>
  1162. <xs:documentation xml:lang="en">Sequence number of the original invoice, on which the modification occurs - section 170 (1) c) of the VAT law</xs:documentation>
  1163. </xs:annotation>
  1164. </xs:element>
  1165. <xs:element name="modifyWithoutMaster" type="xs:boolean">
  1166. <xs:annotation>
  1167. <xs:documentation xml:lang="hu">Annak jelzése, hogy a módosítás olyan alapszámlára hivatkozik, amelyről nem történt és nem is fog történni adatszolgáltatás</xs:documentation>
  1168. <xs:documentation xml:lang="en">Indicates whether the modification references to an original invoice which is not and will not be exchanged</xs:documentation>
  1169. </xs:annotation>
  1170. </xs:element>
  1171. <xs:choice>
  1172. <xs:element name="modificationTimestamp" type="base:InvoiceTimestampType">
  1173. <xs:annotation>
  1174. <xs:documentation xml:lang="hu">A módosító okirat készítésének időbélyege a forrásrendszerben UTC időben</xs:documentation>
  1175. <xs:documentation xml:lang="en">Creation date timestamp of the modification document in UTC time</xs:documentation>
  1176. </xs:annotation>
  1177. </xs:element>
  1178. <xs:element name="modificationIndex" type="base:InvoiceUnboundedIndexType">
  1179. <xs:annotation>
  1180. <xs:documentation xml:lang="hu">A számlára vonatkozó módosító okirat egyedi sorszáma</xs:documentation>
  1181. <xs:documentation xml:lang="en">The unique sequence number referring to the original invoice</xs:documentation>
  1182. </xs:annotation>
  1183. </xs:element>
  1184. </xs:choice>
  1185. </xs:sequence>
  1186. </xs:complexType>
  1187. <xs:complexType name="ManageAnnulmentRequestType">
  1188. <xs:annotation>
  1189. <xs:documentation xml:lang="hu">A POST /manageAnnulment REST operáció kérés típusa</xs:documentation>
  1190. <xs:documentation xml:lang="en">Request type of the POST /manageAnnulment REST operation</xs:documentation>
  1191. </xs:annotation>
  1192. <xs:complexContent>
  1193. <xs:extension base="BasicOnlineInvoiceRequestType">
  1194. <xs:sequence>
  1195. <xs:element name="exchangeToken" type="common:SimpleText50NotBlankType">
  1196. <xs:annotation>
  1197. <xs:documentation xml:lang="hu">A tranzakcióhoz kiadott egyedi és dekódolt token</xs:documentation>
  1198. <xs:documentation xml:lang="en">The decoded unique token issued for the current transaction</xs:documentation>
  1199. </xs:annotation>
  1200. </xs:element>
  1201. <xs:element name="annulmentOperations" type="AnnulmentOperationListType">
  1202. <xs:annotation>
  1203. <xs:documentation xml:lang="hu">A kéréshez tartozó kötegelt technikai érvénytelenítések</xs:documentation>
  1204. <xs:documentation xml:lang="en">Batch technical annulment operations of the request</xs:documentation>
  1205. </xs:annotation>
  1206. </xs:element>
  1207. </xs:sequence>
  1208. </xs:extension>
  1209. </xs:complexContent>
  1210. </xs:complexType>
  1211. <xs:complexType name="ManageInvoiceRequestType">
  1212. <xs:annotation>
  1213. <xs:documentation xml:lang="hu">A POST /manageInvoice REST operáció kérés típusa</xs:documentation>
  1214. <xs:documentation xml:lang="en">Request type of the POST /manageInvoice REST operation</xs:documentation>
  1215. </xs:annotation>
  1216. <xs:complexContent>
  1217. <xs:extension base="BasicOnlineInvoiceRequestType">
  1218. <xs:sequence>
  1219. <xs:element name="exchangeToken" type="common:SimpleText50NotBlankType">
  1220. <xs:annotation>
  1221. <xs:documentation xml:lang="hu">A tranzakcióhoz kiadott egyedi és dekódolt token</xs:documentation>
  1222. <xs:documentation xml:lang="en">The decoded unique token issued for the current transaction</xs:documentation>
  1223. </xs:annotation>
  1224. </xs:element>
  1225. <xs:element name="invoiceOperations" type="InvoiceOperationListType">
  1226. <xs:annotation>
  1227. <xs:documentation xml:lang="hu">A kéréshez tartozó kötegelt számlaműveletek</xs:documentation>
  1228. <xs:documentation xml:lang="en">Batch invoice operations of the request</xs:documentation>
  1229. </xs:annotation>
  1230. </xs:element>
  1231. </xs:sequence>
  1232. </xs:extension>
  1233. </xs:complexContent>
  1234. </xs:complexType>
  1235. <xs:complexType name="MandatoryQueryParamsType">
  1236. <xs:annotation>
  1237. <xs:documentation xml:lang="hu">A számla lekérdezés kötelező paraméterei</xs:documentation>
  1238. <xs:documentation xml:lang="en">Mandatory params of the invoice query</xs:documentation>
  1239. </xs:annotation>
  1240. <xs:choice>
  1241. <xs:element name="invoiceIssueDate" type="DateIntervalParamType">
  1242. <xs:annotation>
  1243. <xs:documentation xml:lang="hu">Számla kiállításának dátumtartománya</xs:documentation>
  1244. <xs:documentation xml:lang="en">Date range of the invoice issue date</xs:documentation>
  1245. </xs:annotation>
  1246. </xs:element>
  1247. <xs:element name="insDate" type="DateTimeIntervalParamType">
  1248. <xs:annotation>
  1249. <xs:documentation xml:lang="hu">Számla adatszolgáltatás feldolgozásának időpont tartománya UTC idő szerint</xs:documentation>
  1250. <xs:documentation xml:lang="en">Datetime range of processing data exchange in UTC time</xs:documentation>
  1251. </xs:annotation>
  1252. </xs:element>
  1253. <xs:element name="originalInvoiceNumber" type="common:SimpleText50NotBlankType">
  1254. <xs:annotation>
  1255. <xs:documentation xml:lang="hu">Az eredeti számla sorszáma, melyre a módosítás vonatkozik</xs:documentation>
  1256. <xs:documentation xml:lang="en">Sequence number of the original invoice, on which the modification occurs</xs:documentation>
  1257. </xs:annotation>
  1258. </xs:element>
  1259. </xs:choice>
  1260. </xs:complexType>
  1261. <xs:complexType name="NewCreatedLinesType">
  1262. <xs:annotation>
  1263. <xs:documentation xml:lang="hu">A módosító okirat által újként létrehozott számlasorok</xs:documentation>
  1264. <xs:documentation xml:lang="en">New invoice lines created by the modification document</xs:documentation>
  1265. </xs:annotation>
  1266. <xs:sequence>
  1267. <xs:element name="lineNumberIntervalStart" type="base:LineNumberType">
  1268. <xs:annotation>
  1269. <xs:documentation xml:lang="hu">Számla sor intervallum kezdete</xs:documentation>
  1270. <xs:documentation xml:lang="en">Invoice line interval start</xs:documentation>
  1271. </xs:annotation>
  1272. </xs:element>
  1273. <xs:element name="lineNumberIntervalEnd" type="base:LineNumberType">
  1274. <xs:annotation>
  1275. <xs:documentation xml:lang="hu">Számla sor intervallum vége (inkluzív)</xs:documentation>
  1276. <xs:documentation xml:lang="en">Invoice line interval end (inclusive)</xs:documentation>
  1277. </xs:annotation>
  1278. </xs:element>
  1279. </xs:sequence>
  1280. </xs:complexType>
  1281. <xs:complexType name="PointerType">
  1282. <xs:annotation>
  1283. <xs:documentation xml:lang="hu">Feldolgozási kurzor adatok</xs:documentation>
  1284. <xs:documentation xml:lang="en">Processing cursor data</xs:documentation>
  1285. </xs:annotation>
  1286. <xs:sequence>
  1287. <xs:element name="tag" type="common:SimpleText1024NotBlankType" minOccurs="0">
  1288. <xs:annotation>
  1289. <xs:documentation xml:lang="hu">Tag hivatkozás</xs:documentation>
  1290. <xs:documentation xml:lang="en">Tag reference</xs:documentation>
  1291. </xs:annotation>
  1292. </xs:element>
  1293. <xs:element name="value" type="common:SimpleText1024NotBlankType" minOccurs="0">
  1294. <xs:annotation>
  1295. <xs:documentation xml:lang="hu">Érték hivatkozás</xs:documentation>
  1296. <xs:documentation xml:lang="en">Value reference</xs:documentation>
  1297. </xs:annotation>
  1298. </xs:element>
  1299. <xs:element name="line" type="base:LineNumberType" minOccurs="0">
  1300. <xs:annotation>
  1301. <xs:documentation xml:lang="hu">Sorhivatkozás</xs:documentation>
  1302. <xs:documentation xml:lang="en">Line reference</xs:documentation>
  1303. </xs:annotation>
  1304. </xs:element>
  1305. <xs:element name="originalInvoiceNumber" type="common:SimpleText50NotBlankType" minOccurs="0">
  1306. <xs:annotation>
  1307. <xs:documentation xml:lang="hu">Kötegelt számla művelet esetén az eredeti számla sorszáma, melyre a módosítás vonatkozik</xs:documentation>
  1308. <xs:documentation xml:lang="en">In case of a batch operation, the sequence number of the original invoice, on which the modification occurs</xs:documentation>
  1309. </xs:annotation>
  1310. </xs:element>
  1311. </xs:sequence>
  1312. </xs:complexType>
  1313. <xs:complexType name="ProcessingResultListType">
  1314. <xs:annotation>
  1315. <xs:documentation xml:lang="hu">A kéréshez tartozó feldolgozási eredmények</xs:documentation>
  1316. <xs:documentation xml:lang="en">Processing results of the request</xs:documentation>
  1317. </xs:annotation>
  1318. <xs:sequence>
  1319. <xs:element name="processingResult" type="ProcessingResultType" maxOccurs="unbounded">
  1320. <xs:annotation>
  1321. <xs:documentation xml:lang="hu">Számla feldolgozási eredmény</xs:documentation>
  1322. <xs:documentation xml:lang="en">Invoice processing result</xs:documentation>
  1323. </xs:annotation>
  1324. </xs:element>
  1325. <xs:element name="originalRequestVersion" type="OriginalRequestVersionType">
  1326. <xs:annotation>
  1327. <xs:documentation xml:lang="hu">Az adatszolgáltatás requestVersion értéke</xs:documentation>
  1328. <xs:documentation xml:lang="en">requestVersion value of the invoice exchange</xs:documentation>
  1329. </xs:annotation>
  1330. </xs:element>
  1331. <xs:element name="annulmentData" type="AnnulmentDataType" minOccurs="0">
  1332. <xs:annotation>
  1333. <xs:documentation xml:lang="hu">Technikai érvénytelenítés státusz adatai</xs:documentation>
  1334. <xs:documentation xml:lang="en">Status data of technical annulment</xs:documentation>
  1335. </xs:annotation>
  1336. </xs:element>
  1337. </xs:sequence>
  1338. </xs:complexType>
  1339. <xs:complexType name="ProcessingResultType">
  1340. <xs:annotation>
  1341. <xs:documentation xml:lang="hu">Számla feldolgozási eredmény</xs:documentation>
  1342. <xs:documentation xml:lang="en">Invoice processing result</xs:documentation>
  1343. </xs:annotation>
  1344. <xs:sequence>
  1345. <xs:element name="index" type="base:InvoiceIndexType">
  1346. <xs:annotation>
  1347. <xs:documentation xml:lang="hu">A számla sorszáma a kérésen belül</xs:documentation>
  1348. <xs:documentation xml:lang="en">Sequence number of the invoice within the request</xs:documentation>
  1349. </xs:annotation>
  1350. </xs:element>
  1351. <xs:element name="batchIndex" type="base:InvoiceUnboundedIndexType" minOccurs="0">
  1352. <xs:annotation>
  1353. <xs:documentation xml:lang="hu">A módosító okirat sorszáma a kötegen belül</xs:documentation>
  1354. <xs:documentation xml:lang="en">Sequence number of the modification document within the batch</xs:documentation>
  1355. </xs:annotation>
  1356. </xs:element>
  1357. <xs:element name="invoiceStatus" type="InvoiceStatusType">
  1358. <xs:annotation>
  1359. <xs:documentation xml:lang="hu">A számla feldolgozási státusza</xs:documentation>
  1360. <xs:documentation xml:lang="en">Processing status of the invoice</xs:documentation>
  1361. </xs:annotation>
  1362. </xs:element>
  1363. <xs:element name="technicalValidationMessages" type="common:TechnicalValidationResultType" minOccurs="0" maxOccurs="unbounded">
  1364. <xs:annotation>
  1365. <xs:documentation xml:lang="hu">Technikai validációs üzenetek</xs:documentation>
  1366. <xs:documentation xml:lang="en">Technical validation messages</xs:documentation>
  1367. </xs:annotation>
  1368. </xs:element>
  1369. <xs:element name="businessValidationMessages" type="BusinessValidationResultType" minOccurs="0" maxOccurs="unbounded">
  1370. <xs:annotation>
  1371. <xs:documentation xml:lang="hu">Üzleti validációs üzenetek</xs:documentation>
  1372. <xs:documentation xml:lang="en">Business validation messages</xs:documentation>
  1373. </xs:annotation>
  1374. </xs:element>
  1375. <xs:element name="compressedContentIndicator" type="xs:boolean">
  1376. <xs:annotation>
  1377. <xs:documentation xml:lang="hu">Jelöli, ha az originalRequest tartalmát a BASE64 dekódolást követően még ki kell tömöríteni az olvasáshoz</xs:documentation>
  1378. <xs:documentation xml:lang="en">Indicates if the content of the originalRequest needs to be decompressed to be read following the BASE64 decoding</xs:documentation>
  1379. </xs:annotation>
  1380. </xs:element>
  1381. <xs:element name="originalRequest" type="xs:base64Binary" minOccurs="0">
  1382. <xs:annotation>
  1383. <xs:documentation xml:lang="hu">Számla adatok BASE64-ben kódolt tartalma</xs:documentation>
  1384. <xs:documentation xml:lang="en">Invoice data in BASE64 encoded form</xs:documentation>
  1385. </xs:annotation>
  1386. </xs:element>
  1387. </xs:sequence>
  1388. </xs:complexType>
  1389. <xs:complexType name="QueryInvoiceChainDigestRequestType">
  1390. <xs:annotation>
  1391. <xs:documentation xml:lang="hu">A POST /queryInvoiceChainDigest REST operáció kérés típusa</xs:documentation>
  1392. <xs:documentation xml:lang="en">Request type of the POST /queryInvoiceChainDigest REST operation</xs:documentation>
  1393. </xs:annotation>
  1394. <xs:complexContent>
  1395. <xs:extension base="BasicOnlineInvoiceRequestType">
  1396. <xs:sequence>
  1397. <xs:element name="page" type="common:RequestPageType">
  1398. <xs:annotation>
  1399. <xs:documentation xml:lang="hu">A lekérdezni kívánt lap száma</xs:documentation>
  1400. <xs:documentation xml:lang="en">The queried page count</xs:documentation>
  1401. </xs:annotation>
  1402. </xs:element>
  1403. <xs:element name="invoiceChainQuery" type="InvoiceChainQueryType">
  1404. <xs:annotation>
  1405. <xs:documentation xml:lang="hu">Számlalánc kivonat lekérdezés számlaszám paramétere</xs:documentation>
  1406. <xs:documentation xml:lang="en">Invoice number param of the invoice chain digest query</xs:documentation>
  1407. </xs:annotation>
  1408. </xs:element>
  1409. </xs:sequence>
  1410. </xs:extension>
  1411. </xs:complexContent>
  1412. </xs:complexType>
  1413. <xs:complexType name="QueryInvoiceChainDigestResponseType">
  1414. <xs:annotation>
  1415. <xs:documentation xml:lang="hu">A POST /queryInvoiceChainDigest REST operáció válasz típusa</xs:documentation>
  1416. <xs:documentation xml:lang="en">Response type of the POST /queryInvoiceChainDigest REST operation</xs:documentation>
  1417. </xs:annotation>
  1418. <xs:complexContent>
  1419. <xs:extension base="BasicOnlineInvoiceResponseType">
  1420. <xs:sequence>
  1421. <xs:element name="invoiceChainDigestResult" type="InvoiceChainDigestResultType">
  1422. <xs:annotation>
  1423. <xs:documentation xml:lang="hu">Számlalánc kivonat lekérdezés eredményei</xs:documentation>
  1424. <xs:documentation xml:lang="en">Invoice chain digest query result</xs:documentation>
  1425. </xs:annotation>
  1426. </xs:element>
  1427. </xs:sequence>
  1428. </xs:extension>
  1429. </xs:complexContent>
  1430. </xs:complexType>
  1431. <xs:complexType name="QueryInvoiceCheckResponseType">
  1432. <xs:annotation>
  1433. <xs:documentation xml:lang="hu">A POST /queryInvoiceCheck REST operáció válasz típusa</xs:documentation>
  1434. <xs:documentation xml:lang="en">Response type of the POST /queryInvoiceCheck REST operation</xs:documentation>
  1435. </xs:annotation>
  1436. <xs:complexContent>
  1437. <xs:extension base="BasicOnlineInvoiceResponseType">
  1438. <xs:sequence>
  1439. <xs:element name="invoiceCheckResult" type="xs:boolean">
  1440. <xs:annotation>
  1441. <xs:documentation xml:lang="hu">Jelöli, ha a lekérdezett számlaszám érvényesként szerepel a rendszerben és a lekérdező adószáma kiállítóként vagy eladóként szerepel a számlán</xs:documentation>
  1442. <xs:documentation xml:lang="en">Indicates whether the queried invoice number exists in the system as a valid invoice, if the tax number of the querying entity is present on the invoice either as supplier or customer</xs:documentation>
  1443. </xs:annotation>
  1444. </xs:element>
  1445. </xs:sequence>
  1446. </xs:extension>
  1447. </xs:complexContent>
  1448. </xs:complexType>
  1449. <xs:complexType name="QueryInvoiceDataRequestType">
  1450. <xs:annotation>
  1451. <xs:documentation xml:lang="hu">A POST /queryInvoiceData REST operáció kérés típusa</xs:documentation>
  1452. <xs:documentation xml:lang="en">Request type of the POST /queryInvoiceData REST operation</xs:documentation>
  1453. </xs:annotation>
  1454. <xs:complexContent>
  1455. <xs:extension base="BasicOnlineInvoiceRequestType">
  1456. <xs:sequence>
  1457. <xs:element name="invoiceNumberQuery" type="InvoiceNumberQueryType">
  1458. <xs:annotation>
  1459. <xs:documentation xml:lang="hu">Számla lekérdezés számlaszám paramétere</xs:documentation>
  1460. <xs:documentation xml:lang="en">Invoice number param of the Invoice query</xs:documentation>
  1461. </xs:annotation>
  1462. </xs:element>
  1463. </xs:sequence>
  1464. </xs:extension>
  1465. </xs:complexContent>
  1466. </xs:complexType>
  1467. <xs:complexType name="QueryInvoiceDataResponseType">
  1468. <xs:annotation>
  1469. <xs:documentation xml:lang="hu">A POST /queryInvoiceData REST operáció válasz típusa</xs:documentation>
  1470. <xs:documentation xml:lang="en">Response type of the POST /queryInvoiceData REST operation</xs:documentation>
  1471. </xs:annotation>
  1472. <xs:complexContent>
  1473. <xs:extension base="BasicOnlineInvoiceResponseType">
  1474. <xs:sequence>
  1475. <xs:element name="invoiceDataResult" type="InvoiceDataResultType" minOccurs="0">
  1476. <xs:annotation>
  1477. <xs:documentation xml:lang="hu">A számla lekérdezés eredménye</xs:documentation>
  1478. <xs:documentation xml:lang="en">Invoice data query result</xs:documentation>
  1479. </xs:annotation>
  1480. </xs:element>
  1481. </xs:sequence>
  1482. </xs:extension>
  1483. </xs:complexContent>
  1484. </xs:complexType>
  1485. <xs:complexType name="QueryInvoiceDigestRequestType">
  1486. <xs:annotation>
  1487. <xs:documentation xml:lang="hu">A POST /queryInvoiceDigest REST operáció kérés típusa</xs:documentation>
  1488. <xs:documentation xml:lang="en">Request type of the POST /queryInvoiceDigest REST operation</xs:documentation>
  1489. </xs:annotation>
  1490. <xs:complexContent>
  1491. <xs:extension base="BasicOnlineInvoiceRequestType">
  1492. <xs:sequence>
  1493. <xs:element name="page" type="common:RequestPageType">
  1494. <xs:annotation>
  1495. <xs:documentation xml:lang="hu">A lekérdezni kívánt lap száma</xs:documentation>
  1496. <xs:documentation xml:lang="en">The queried page count</xs:documentation>
  1497. </xs:annotation>
  1498. </xs:element>
  1499. <xs:element name="invoiceDirection" type="InvoiceDirectionType">
  1500. <xs:annotation>
  1501. <xs:documentation xml:lang="hu">Kimenő vagy bejövő számla keresési paramétere</xs:documentation>
  1502. <xs:documentation xml:lang="en">Inbound or outbound invoice query parameter</xs:documentation>
  1503. </xs:annotation>
  1504. </xs:element>
  1505. <xs:element name="invoiceQueryParams" type="InvoiceQueryParamsType">
  1506. <xs:annotation>
  1507. <xs:documentation xml:lang="hu">Számla lekérdezési paraméterek</xs:documentation>
  1508. <xs:documentation xml:lang="en">Invoice query parameters</xs:documentation>
  1509. </xs:annotation>
  1510. </xs:element>
  1511. </xs:sequence>
  1512. </xs:extension>
  1513. </xs:complexContent>
  1514. </xs:complexType>
  1515. <xs:complexType name="QueryInvoiceDigestResponseType">
  1516. <xs:annotation>
  1517. <xs:documentation xml:lang="hu">A POST /queryInvoiceDigest REST operáció válasz típusa</xs:documentation>
  1518. <xs:documentation xml:lang="en">Response type of the POST /queryInvoiceDigest REST operation</xs:documentation>
  1519. </xs:annotation>
  1520. <xs:complexContent>
  1521. <xs:extension base="BasicOnlineInvoiceResponseType">
  1522. <xs:sequence>
  1523. <xs:element name="invoiceDigestResult" type="InvoiceDigestResultType">
  1524. <xs:annotation>
  1525. <xs:documentation xml:lang="hu">A számla kivonat lekérdezés eredményei</xs:documentation>
  1526. <xs:documentation xml:lang="en">Invoice digest query results</xs:documentation>
  1527. </xs:annotation>
  1528. </xs:element>
  1529. </xs:sequence>
  1530. </xs:extension>
  1531. </xs:complexContent>
  1532. </xs:complexType>
  1533. <xs:complexType name="QueryTaxpayerRequestType">
  1534. <xs:annotation>
  1535. <xs:documentation xml:lang="hu">A POST /queryTaxpayer REST operáció kérés típusa</xs:documentation>
  1536. <xs:documentation xml:lang="en">Request type of the POST /queryTaxpayer REST operation</xs:documentation>
  1537. </xs:annotation>
  1538. <xs:complexContent>
  1539. <xs:extension base="BasicOnlineInvoiceRequestType">
  1540. <xs:sequence>
  1541. <xs:element name="taxNumber" type="common:TaxpayerIdType">
  1542. <xs:annotation>
  1543. <xs:documentation xml:lang="hu">A lekérdezett adózó adószáma</xs:documentation>
  1544. <xs:documentation xml:lang="en">Tax number of the queried taxpayer</xs:documentation>
  1545. </xs:annotation>
  1546. </xs:element>
  1547. </xs:sequence>
  1548. </xs:extension>
  1549. </xs:complexContent>
  1550. </xs:complexType>
  1551. <xs:complexType name="QueryTaxpayerResponseType">
  1552. <xs:annotation>
  1553. <xs:documentation xml:lang="hu">A POST /queryTaxpayer REST operáció válasz típusa</xs:documentation>
  1554. <xs:documentation xml:lang="en">Response type of the POST /queryTaxpayer REST operation</xs:documentation>
  1555. </xs:annotation>
  1556. <xs:complexContent>
  1557. <xs:extension base="BasicOnlineInvoiceResponseType">
  1558. <xs:sequence>
  1559. <xs:element name="infoDate" type="xs:dateTime" minOccurs="0">
  1560. <xs:annotation>
  1561. <xs:documentation xml:lang="hu">Az adatok utolsó változásának időpontja</xs:documentation>
  1562. <xs:documentation xml:lang="en">Last date on which the data was changed</xs:documentation>
  1563. </xs:annotation>
  1564. </xs:element>
  1565. <xs:element name="taxpayerValidity" type="xs:boolean" minOccurs="0">
  1566. <xs:annotation>
  1567. <xs:documentation xml:lang="hu">Jelzi, hogy a lekérdezett adózó létezik és érvényes-e</xs:documentation>
  1568. <xs:documentation xml:lang="en">Indicates whether the queried taxpayer is existing and valid</xs:documentation>
  1569. </xs:annotation>
  1570. </xs:element>
  1571. <xs:element name="taxpayerData" type="TaxpayerDataType" minOccurs="0">
  1572. <xs:annotation>
  1573. <xs:documentation xml:lang="hu">Az adózó lekérdezés válasz adatai</xs:documentation>
  1574. <xs:documentation xml:lang="en">Response data of the taxpayer query</xs:documentation>
  1575. </xs:annotation>
  1576. </xs:element>
  1577. </xs:sequence>
  1578. </xs:extension>
  1579. </xs:complexContent>
  1580. </xs:complexType>
  1581. <xs:complexType name="QueryTransactionListRequestType">
  1582. <xs:annotation>
  1583. <xs:documentation xml:lang="hu">A POST /queryTransactionList REST operáció kérés típusa</xs:documentation>
  1584. <xs:documentation xml:lang="en">Request type of the POST /queryTransactionList REST operation</xs:documentation>
  1585. </xs:annotation>
  1586. <xs:complexContent>
  1587. <xs:extension base="BasicOnlineInvoiceRequestType">
  1588. <xs:sequence>
  1589. <xs:element name="page" type="common:RequestPageType">
  1590. <xs:annotation>
  1591. <xs:documentation xml:lang="hu">A lekérdezni kívánt lap száma</xs:documentation>
  1592. <xs:documentation xml:lang="en">The queried page count</xs:documentation>
  1593. </xs:annotation>
  1594. </xs:element>
  1595. <xs:element name="insDate" type="DateTimeIntervalParamType">
  1596. <xs:annotation>
  1597. <xs:documentation xml:lang="hu">A lekérdezni kívánt tranzakciók kiadásának szerver oldali ideje UTC időben</xs:documentation>
  1598. <xs:documentation xml:lang="en">The queried transaction's insert date on server side in UTC time</xs:documentation>
  1599. </xs:annotation>
  1600. </xs:element>
  1601. <xs:element name="requestStatus" type="RequestStatusType" minOccurs="0">
  1602. <xs:annotation>
  1603. <xs:documentation xml:lang="hu">A kérés feldolgozási státusza</xs:documentation>
  1604. <xs:documentation xml:lang="en">Processing status of the request</xs:documentation>
  1605. </xs:annotation>
  1606. </xs:element>
  1607. </xs:sequence>
  1608. </xs:extension>
  1609. </xs:complexContent>
  1610. </xs:complexType>
  1611. <xs:complexType name="QueryTransactionListResponseType">
  1612. <xs:annotation>
  1613. <xs:documentation xml:lang="hu">A POST /queryTransactionList REST operáció válasz típusa</xs:documentation>
  1614. <xs:documentation xml:lang="en">Response type of the POST /queryTransactionList REST operation</xs:documentation>
  1615. </xs:annotation>
  1616. <xs:complexContent>
  1617. <xs:extension base="BasicOnlineInvoiceResponseType">
  1618. <xs:sequence>
  1619. <xs:element name="transactionListResult" type="TransactionListResultType">
  1620. <xs:annotation>
  1621. <xs:documentation xml:lang="hu">Tranzakció lekérdezési eredményei</xs:documentation>
  1622. <xs:documentation xml:lang="en">Transaction query results</xs:documentation>
  1623. </xs:annotation>
  1624. </xs:element>
  1625. </xs:sequence>
  1626. </xs:extension>
  1627. </xs:complexContent>
  1628. </xs:complexType>
  1629. <xs:complexType name="QueryTransactionStatusRequestType">
  1630. <xs:annotation>
  1631. <xs:documentation xml:lang="hu">A POST /queryTransactionStatus REST operáció kérés típusa</xs:documentation>
  1632. <xs:documentation xml:lang="en">Request type of the POST /queryTransactionStatus REST operation</xs:documentation>
  1633. </xs:annotation>
  1634. <xs:complexContent>
  1635. <xs:extension base="BasicOnlineInvoiceRequestType">
  1636. <xs:sequence>
  1637. <xs:element name="transactionId" type="common:EntityIdType">
  1638. <xs:annotation>
  1639. <xs:documentation xml:lang="hu">Az adatszolgáltatás tranzakció azonosítója</xs:documentation>
  1640. <xs:documentation xml:lang="en">Transaction identifier of the data exchange</xs:documentation>
  1641. </xs:annotation>
  1642. </xs:element>
  1643. <xs:element name="returnOriginalRequest" type="xs:boolean" minOccurs="0">
  1644. <xs:annotation>
  1645. <xs:documentation xml:lang="hu">Jelöli, ha a kliens által beküldött eredeti tartalmat is vissza kell adni a válaszban</xs:documentation>
  1646. <xs:documentation xml:lang="en">Indicates if the original client data should also be returned in the response</xs:documentation>
  1647. </xs:annotation>
  1648. </xs:element>
  1649. </xs:sequence>
  1650. </xs:extension>
  1651. </xs:complexContent>
  1652. </xs:complexType>
  1653. <xs:complexType name="QueryTransactionStatusResponseType">
  1654. <xs:annotation>
  1655. <xs:documentation xml:lang="hu">A POST /queryTransactionStatus REST operáció válasz típusa</xs:documentation>
  1656. <xs:documentation xml:lang="en">Response type of the POST /queryTransactionStatus REST operation</xs:documentation>
  1657. </xs:annotation>
  1658. <xs:complexContent>
  1659. <xs:extension base="BasicOnlineInvoiceResponseType">
  1660. <xs:sequence>
  1661. <xs:element name="processingResults" type="ProcessingResultListType" minOccurs="0">
  1662. <xs:annotation>
  1663. <xs:documentation xml:lang="hu">A kérésben szereplő számlák feldolgozási státusza</xs:documentation>
  1664. <xs:documentation xml:lang="en">Processing status of the invoices in the request</xs:documentation>
  1665. </xs:annotation>
  1666. </xs:element>
  1667. </xs:sequence>
  1668. </xs:extension>
  1669. </xs:complexContent>
  1670. </xs:complexType>
  1671. <xs:complexType name="RelationalQueryParamsType">
  1672. <xs:annotation>
  1673. <xs:documentation xml:lang="hu">A számla lekérdezés relációs paraméterei</xs:documentation>
  1674. <xs:documentation xml:lang="en">Relational params of the invoice query</xs:documentation>
  1675. </xs:annotation>
  1676. <xs:sequence>
  1677. <xs:element name="invoiceDelivery" type="RelationQueryDateType" minOccurs="0" maxOccurs="2">
  1678. <xs:annotation>
  1679. <xs:documentation xml:lang="hu">Számla teljesítési dátumának kereső paramétere</xs:documentation>
  1680. <xs:documentation xml:lang="en">Query parameter of the invoice delivery date</xs:documentation>
  1681. </xs:annotation>
  1682. </xs:element>
  1683. <xs:element name="paymentDate" type="RelationQueryDateType" minOccurs="0" maxOccurs="2">
  1684. <xs:annotation>
  1685. <xs:documentation xml:lang="hu">A számla fizetési határidejének kereső paramétere</xs:documentation>
  1686. <xs:documentation xml:lang="en">Query parameter of the invoice payment date</xs:documentation>
  1687. </xs:annotation>
  1688. </xs:element>
  1689. <xs:element name="invoiceNetAmount" type="RelationQueryMonetaryType" minOccurs="0" maxOccurs="2">
  1690. <xs:annotation>
  1691. <xs:documentation xml:lang="hu">A számla nettó összeg kereső paramétere a számla pénznemében</xs:documentation>
  1692. <xs:documentation xml:lang="en">Query parameter of the invoice net amount expressed in the currency of the invoice</xs:documentation>
  1693. </xs:annotation>
  1694. </xs:element>
  1695. <xs:element name="invoiceNetAmountHUF" type="RelationQueryMonetaryType" minOccurs="0" maxOccurs="2">
  1696. <xs:annotation>
  1697. <xs:documentation xml:lang="hu">A számla nettó összegének kereső paramétere forintban</xs:documentation>
  1698. <xs:documentation xml:lang="en">Query parameter of the invoice net amount expressed in HUF</xs:documentation>
  1699. </xs:annotation>
  1700. </xs:element>
  1701. <xs:element name="invoiceVatAmount" type="RelationQueryMonetaryType" minOccurs="0" maxOccurs="2">
  1702. <xs:annotation>
  1703. <xs:documentation xml:lang="hu">A számla ÁFA összegének kereső paramétere a számla pénznemében</xs:documentation>
  1704. <xs:documentation xml:lang="en">Query parameter of the invoice VAT amount expressed in the currency of the invoice</xs:documentation>
  1705. </xs:annotation>
  1706. </xs:element>
  1707. <xs:element name="invoiceVatAmountHUF" type="RelationQueryMonetaryType" minOccurs="0" maxOccurs="2">
  1708. <xs:annotation>
  1709. <xs:documentation xml:lang="hu">A számla ÁFA összegének kereső paramétere forintban</xs:documentation>
  1710. <xs:documentation xml:lang="en">Query parameter of the invoice VAT amount expressed in HUF</xs:documentation>
  1711. </xs:annotation>
  1712. </xs:element>
  1713. </xs:sequence>
  1714. </xs:complexType>
  1715. <xs:complexType name="RelationQueryDateType">
  1716. <xs:annotation>
  1717. <xs:documentation xml:lang="hu">Kereső paraméter dátum értékekhez</xs:documentation>
  1718. <xs:documentation xml:lang="en">Query parameter for date values</xs:documentation>
  1719. </xs:annotation>
  1720. <xs:sequence>
  1721. <xs:element name="queryOperator" type="QueryOperatorType">
  1722. <xs:annotation>
  1723. <xs:documentation xml:lang="hu">Kereső operátor</xs:documentation>
  1724. <xs:documentation xml:lang="en">Query operator</xs:documentation>
  1725. </xs:annotation>
  1726. </xs:element>
  1727. <xs:element name="queryValue" type="base:InvoiceDateType">
  1728. <xs:annotation>
  1729. <xs:documentation xml:lang="hu">Kereső érték</xs:documentation>
  1730. <xs:documentation xml:lang="en">Query value</xs:documentation>
  1731. </xs:annotation>
  1732. </xs:element>
  1733. </xs:sequence>
  1734. </xs:complexType>
  1735. <xs:complexType name="RelationQueryMonetaryType">
  1736. <xs:annotation>
  1737. <xs:documentation xml:lang="hu">Kereső paraméter monetáris értékekhez</xs:documentation>
  1738. <xs:documentation xml:lang="en">Query parameter for monetary values</xs:documentation>
  1739. </xs:annotation>
  1740. <xs:sequence>
  1741. <xs:element name="queryOperator" type="QueryOperatorType">
  1742. <xs:annotation>
  1743. <xs:documentation xml:lang="hu">Kereső operátor</xs:documentation>
  1744. <xs:documentation xml:lang="en">Query operator</xs:documentation>
  1745. </xs:annotation>
  1746. </xs:element>
  1747. <xs:element name="queryValue" type="base:MonetaryType">
  1748. <xs:annotation>
  1749. <xs:documentation xml:lang="hu">Kereső érték</xs:documentation>
  1750. <xs:documentation xml:lang="en">Query value</xs:documentation>
  1751. </xs:annotation>
  1752. </xs:element>
  1753. </xs:sequence>
  1754. </xs:complexType>
  1755. <xs:complexType name="SoftwareType">
  1756. <xs:annotation>
  1757. <xs:documentation xml:lang="hu">A számlázóprogram adatai</xs:documentation>
  1758. <xs:documentation xml:lang="en">Billing software data</xs:documentation>
  1759. </xs:annotation>
  1760. <xs:sequence>
  1761. <xs:element name="softwareId" type="SoftwareIdType">
  1762. <xs:annotation>
  1763. <xs:documentation xml:lang="hu">A számlázóprogram azonosítója</xs:documentation>
  1764. <xs:documentation xml:lang="en">Billing software ID</xs:documentation>
  1765. </xs:annotation>
  1766. </xs:element>
  1767. <xs:element name="softwareName" type="common:SimpleText50NotBlankType">
  1768. <xs:annotation>
  1769. <xs:documentation xml:lang="hu">A számlázóprogram neve</xs:documentation>
  1770. <xs:documentation xml:lang="en">Billing software name</xs:documentation>
  1771. </xs:annotation>
  1772. </xs:element>
  1773. <xs:element name="softwareOperation" type="SoftwareOperationType">
  1774. <xs:annotation>
  1775. <xs:documentation xml:lang="hu">A számlázóprogram működési típusa (lokális program vagy online számlázó szolgáltatás)</xs:documentation>
  1776. <xs:documentation xml:lang="en">Billing software operation type (local program or online billing service)</xs:documentation>
  1777. </xs:annotation>
  1778. </xs:element>
  1779. <xs:element name="softwareMainVersion" type="common:SimpleText15NotBlankType">
  1780. <xs:annotation>
  1781. <xs:documentation xml:lang="hu">A számlázóprogram főverziója</xs:documentation>
  1782. <xs:documentation xml:lang="en">Billing software main version</xs:documentation>
  1783. </xs:annotation>
  1784. </xs:element>
  1785. <xs:element name="softwareDevName" type="common:SimpleText512NotBlankType">
  1786. <xs:annotation>
  1787. <xs:documentation xml:lang="hu">A számlázóprogram fejlesztőjének neve</xs:documentation>
  1788. <xs:documentation xml:lang="en">Name of the billing software's developer</xs:documentation>
  1789. </xs:annotation>
  1790. </xs:element>
  1791. <xs:element name="softwareDevContact" type="common:SimpleText200NotBlankType">
  1792. <xs:annotation>
  1793. <xs:documentation xml:lang="hu">A számlázóprogram fejlesztőjének elektronikus elérhetősége</xs:documentation>
  1794. <xs:documentation xml:lang="en">Electronic contact of the billing software's developer</xs:documentation>
  1795. </xs:annotation>
  1796. </xs:element>
  1797. <xs:element name="softwareDevCountryCode" type="common:CountryCodeType" minOccurs="0">
  1798. <xs:annotation>
  1799. <xs:documentation xml:lang="hu">A számlázóprogram fejlesztőjének ISO-3166 alpha2 országkódja</xs:documentation>
  1800. <xs:documentation xml:lang="en">ISO-3166 alpha2 country code of the billing software's developer</xs:documentation>
  1801. </xs:annotation>
  1802. </xs:element>
  1803. <xs:element name="softwareDevTaxNumber" type="common:SimpleText50NotBlankType" minOccurs="0">
  1804. <xs:annotation>
  1805. <xs:documentation xml:lang="hu">A számlázóprogram fejlesztőjének adószáma</xs:documentation>
  1806. <xs:documentation xml:lang="en">Tax number of the billing software's developer</xs:documentation>
  1807. </xs:annotation>
  1808. </xs:element>
  1809. </xs:sequence>
  1810. </xs:complexType>
  1811. <xs:complexType name="TaxpayerAddressItemType">
  1812. <xs:annotation>
  1813. <xs:documentation xml:lang="hu">Adózói címsor adat</xs:documentation>
  1814. <xs:documentation xml:lang="en">Taxpayer address item</xs:documentation>
  1815. </xs:annotation>
  1816. <xs:sequence>
  1817. <xs:element name="taxpayerAddressType" type="TaxpayerAddressTypeType">
  1818. <xs:annotation>
  1819. <xs:documentation xml:lang="hu">Adózói cím típus</xs:documentation>
  1820. <xs:documentation xml:lang="en">Taxpayer address type</xs:documentation>
  1821. </xs:annotation>
  1822. </xs:element>
  1823. <xs:element name="taxpayerAddress" type="base:DetailedAddressType">
  1824. <xs:annotation>
  1825. <xs:documentation xml:lang="hu">Az adózó címadatai</xs:documentation>
  1826. <xs:documentation xml:lang="en">Address data of the taxpayer</xs:documentation>
  1827. </xs:annotation>
  1828. </xs:element>
  1829. </xs:sequence>
  1830. </xs:complexType>
  1831. <xs:complexType name="TaxpayerAddressListType">
  1832. <xs:annotation>
  1833. <xs:documentation xml:lang="hu">Adózói cím lista típus</xs:documentation>
  1834. <xs:documentation xml:lang="en">Taxpayer address list type</xs:documentation>
  1835. </xs:annotation>
  1836. <xs:sequence>
  1837. <xs:element name="taxpayerAddressItem" type="TaxpayerAddressItemType" maxOccurs="unbounded">
  1838. <xs:annotation>
  1839. <xs:documentation xml:lang="hu">Adózói címsor adat</xs:documentation>
  1840. <xs:documentation xml:lang="en">Taxpayer address item</xs:documentation>
  1841. </xs:annotation>
  1842. </xs:element>
  1843. </xs:sequence>
  1844. </xs:complexType>
  1845. <xs:complexType name="TaxpayerDataType">
  1846. <xs:annotation>
  1847. <xs:documentation xml:lang="hu">Az adózó lekérdezés válasz adatai</xs:documentation>
  1848. <xs:documentation xml:lang="en">Response data of the taxpayer query</xs:documentation>
  1849. </xs:annotation>
  1850. <xs:sequence>
  1851. <xs:element name="taxpayerName" type="common:SimpleText512NotBlankType">
  1852. <xs:annotation>
  1853. <xs:documentation xml:lang="hu">Az adózó neve</xs:documentation>
  1854. <xs:documentation xml:lang="en">Name of the taxpayer</xs:documentation>
  1855. </xs:annotation>
  1856. </xs:element>
  1857. <xs:element name="taxpayerShortName" type="common:SimpleText200NotBlankType" minOccurs="0">
  1858. <xs:annotation>
  1859. <xs:documentation xml:lang="hu">Az adózó rövidített neve</xs:documentation>
  1860. <xs:documentation xml:lang="en">Shortened name of the taxpayer</xs:documentation>
  1861. </xs:annotation>
  1862. </xs:element>
  1863. <xs:element name="taxNumberDetail" type="base:TaxNumberType">
  1864. <xs:annotation>
  1865. <xs:documentation xml:lang="hu">Az adószám részletes adatai</xs:documentation>
  1866. <xs:documentation xml:lang="en">Detailed data of the tax number</xs:documentation>
  1867. </xs:annotation>
  1868. </xs:element>
  1869. <xs:element name="incorporation" type="IncorporationType">
  1870. <xs:annotation>
  1871. <xs:documentation xml:lang="hu">Gazdasági típus</xs:documentation>
  1872. <xs:documentation xml:lang="en">Incorporation type</xs:documentation>
  1873. </xs:annotation>
  1874. </xs:element>
  1875. <xs:element name="vatGroupMembership" type="common:TaxpayerIdType" minOccurs="0">
  1876. <xs:annotation>
  1877. <xs:documentation xml:lang="hu">Az adózó ÁFA csoport tagsága</xs:documentation>
  1878. <xs:documentation xml:lang="en">VAT group membership of the taxpayer</xs:documentation>
  1879. </xs:annotation>
  1880. </xs:element>
  1881. <xs:element name="taxpayerAddressList" type="TaxpayerAddressListType" minOccurs="0">
  1882. <xs:annotation>
  1883. <xs:documentation xml:lang="hu">Adózói cím lista típus</xs:documentation>
  1884. <xs:documentation xml:lang="en">Taxpayer address list type</xs:documentation>
  1885. </xs:annotation>
  1886. </xs:element>
  1887. </xs:sequence>
  1888. </xs:complexType>
  1889. <xs:complexType name="TokenExchangeResponseType">
  1890. <xs:annotation>
  1891. <xs:documentation xml:lang="hu">A POST /tokenExchange REST operáció válasz típusa</xs:documentation>
  1892. <xs:documentation xml:lang="en">Response type of the POST /tokenExchange REST operation</xs:documentation>
  1893. </xs:annotation>
  1894. <xs:complexContent>
  1895. <xs:extension base="BasicOnlineInvoiceResponseType">
  1896. <xs:sequence>
  1897. <xs:element name="encodedExchangeToken" type="xs:base64Binary">
  1898. <xs:annotation>
  1899. <xs:documentation xml:lang="hu">A kiadott exchange token AES-128 ECB algoritmussal kódolt alakja</xs:documentation>
  1900. <xs:documentation xml:lang="en">The issued exchange token in AES-128 ECB encoded form</xs:documentation>
  1901. </xs:annotation>
  1902. </xs:element>
  1903. <xs:element name="tokenValidityFrom" type="base:InvoiceTimestampType">
  1904. <xs:annotation>
  1905. <xs:documentation xml:lang="hu">A kiadott token érvényességének kezdete</xs:documentation>
  1906. <xs:documentation xml:lang="en">Validity start of the issued exchange token</xs:documentation>
  1907. </xs:annotation>
  1908. </xs:element>
  1909. <xs:element name="tokenValidityTo" type="base:InvoiceTimestampType">
  1910. <xs:annotation>
  1911. <xs:documentation xml:lang="hu">A kiadott token érvényességének vége</xs:documentation>
  1912. <xs:documentation xml:lang="en">Validity end of the issued exchange token</xs:documentation>
  1913. </xs:annotation>
  1914. </xs:element>
  1915. </xs:sequence>
  1916. </xs:extension>
  1917. </xs:complexContent>
  1918. </xs:complexType>
  1919. <xs:complexType name="TransactionListResultType">
  1920. <xs:annotation>
  1921. <xs:documentation xml:lang="hu">Tranzakció lekérdezési eredményei</xs:documentation>
  1922. <xs:documentation xml:lang="en">Transaction query results</xs:documentation>
  1923. </xs:annotation>
  1924. <xs:sequence>
  1925. <xs:element name="currentPage" type="common:ResponsePageType">
  1926. <xs:annotation>
  1927. <xs:documentation xml:lang="hu">A jelenleg lekérdezett lapszám</xs:documentation>
  1928. <xs:documentation xml:lang="en">The currently queried page count</xs:documentation>
  1929. </xs:annotation>
  1930. </xs:element>
  1931. <xs:element name="availablePage" type="common:ResponsePageType">
  1932. <xs:annotation>
  1933. <xs:documentation xml:lang="hu">A lekérdezés eredménye szerint elérhető utolsó lapszám</xs:documentation>
  1934. <xs:documentation xml:lang="en">The highest available page count matching the query</xs:documentation>
  1935. </xs:annotation>
  1936. </xs:element>
  1937. <xs:element name="transaction" type="TransactionType" minOccurs="0" maxOccurs="unbounded">
  1938. <xs:annotation>
  1939. <xs:documentation xml:lang="hu">Tranzakció lekérdezési eredmény</xs:documentation>
  1940. <xs:documentation xml:lang="en">Transaction query result</xs:documentation>
  1941. </xs:annotation>
  1942. </xs:element>
  1943. </xs:sequence>
  1944. </xs:complexType>
  1945. <xs:complexType name="TransactionQueryParamsType">
  1946. <xs:annotation>
  1947. <xs:documentation xml:lang="hu">A számla lekérdezés tranzakciós paraméterei</xs:documentation>
  1948. <xs:documentation xml:lang="en">Transactional params of the invoice query</xs:documentation>
  1949. </xs:annotation>
  1950. <xs:sequence>
  1951. <xs:element name="transactionId" type="common:EntityIdType">
  1952. <xs:annotation>
  1953. <xs:documentation xml:lang="hu">Az adatszolgáltatás tranzakció azonosítója</xs:documentation>
  1954. <xs:documentation xml:lang="en">Transaction identifier of the data exchange</xs:documentation>
  1955. </xs:annotation>
  1956. </xs:element>
  1957. <xs:element name="index" type="base:InvoiceIndexType" minOccurs="0">
  1958. <xs:annotation>
  1959. <xs:documentation xml:lang="hu">A számla sorszáma a kérésen belül</xs:documentation>
  1960. <xs:documentation xml:lang="en">Sequence number of the invoice within the request</xs:documentation>
  1961. </xs:annotation>
  1962. </xs:element>
  1963. <xs:element name="invoiceOperation" type="ManageInvoiceOperationType" minOccurs="0">
  1964. <xs:annotation>
  1965. <xs:documentation xml:lang="hu">Számlaművelet típus</xs:documentation>
  1966. <xs:documentation xml:lang="en">Invoice operation type</xs:documentation>
  1967. </xs:annotation>
  1968. </xs:element>
  1969. </xs:sequence>
  1970. </xs:complexType>
  1971. <xs:complexType name="TransactionResponseType">
  1972. <xs:annotation>
  1973. <xs:documentation xml:lang="hu">A POST /manageInvoice és a POST /manageAnnulment REST operáció közös válasz típusa</xs:documentation>
  1974. <xs:documentation xml:lang="en">Common response type of the POST /manageInvoice and the POST /manageAnnulment REST operation</xs:documentation>
  1975. </xs:annotation>
  1976. <xs:complexContent>
  1977. <xs:extension base="BasicOnlineInvoiceResponseType">
  1978. <xs:sequence>
  1979. <xs:element name="transactionId" type="common:EntityIdType">
  1980. <xs:annotation>
  1981. <xs:documentation xml:lang="hu">A kért operáció tranzakció azonosítója</xs:documentation>
  1982. <xs:documentation xml:lang="en">Transaction identifier of the requested operation</xs:documentation>
  1983. </xs:annotation>
  1984. </xs:element>
  1985. </xs:sequence>
  1986. </xs:extension>
  1987. </xs:complexContent>
  1988. </xs:complexType>
  1989. <xs:complexType name="TransactionType">
  1990. <xs:annotation>
  1991. <xs:documentation xml:lang="hu">Tranzakció lekérdezési eredmény</xs:documentation>
  1992. <xs:documentation xml:lang="en">Transaction query result</xs:documentation>
  1993. </xs:annotation>
  1994. <xs:sequence>
  1995. <xs:element name="insDate" type="base:InvoiceTimestampType">
  1996. <xs:annotation>
  1997. <xs:documentation xml:lang="hu">A beszúrás időpontja UTC időben</xs:documentation>
  1998. <xs:documentation xml:lang="en">Insert date in UTC time</xs:documentation>
  1999. </xs:annotation>
  2000. </xs:element>
  2001. <xs:element name="insCusUser" type="common:LoginType">
  2002. <xs:annotation>
  2003. <xs:documentation xml:lang="hu">A beszúrást végző felhasználó</xs:documentation>
  2004. <xs:documentation xml:lang="en">Inserting user name</xs:documentation>
  2005. </xs:annotation>
  2006. </xs:element>
  2007. <xs:element name="source" type="SourceType">
  2008. <xs:annotation>
  2009. <xs:documentation xml:lang="hu">Az adatszolgáltatás forrása</xs:documentation>
  2010. <xs:documentation xml:lang="en">Data exchange source</xs:documentation>
  2011. </xs:annotation>
  2012. </xs:element>
  2013. <xs:element name="transactionId" type="common:EntityIdType">
  2014. <xs:annotation>
  2015. <xs:documentation xml:lang="hu">A számla tranzakció azonosítója</xs:documentation>
  2016. <xs:documentation xml:lang="en">Transaction ID of the invoice</xs:documentation>
  2017. </xs:annotation>
  2018. </xs:element>
  2019. <xs:element name="requestStatus" type="RequestStatusType">
  2020. <xs:annotation>
  2021. <xs:documentation xml:lang="hu">A kérés feldolgozási státusza</xs:documentation>
  2022. <xs:documentation xml:lang="en">Processing status of the request</xs:documentation>
  2023. </xs:annotation>
  2024. </xs:element>
  2025. <xs:element name="technicalAnnulment" type="xs:boolean">
  2026. <xs:annotation>
  2027. <xs:documentation xml:lang="hu">Jelöli ha a tranzakció technikai érvénytelenítést tartalmaz</xs:documentation>
  2028. <xs:documentation xml:lang="en">Indicates whether the transaction contains technical annulment</xs:documentation>
  2029. </xs:annotation>
  2030. </xs:element>
  2031. <xs:element name="originalRequestVersion" type="OriginalRequestVersionType">
  2032. <xs:annotation>
  2033. <xs:documentation xml:lang="hu">Az adatszolgáltatás requestVersion értéke</xs:documentation>
  2034. <xs:documentation xml:lang="en">requestVersion value of the invoice exchange</xs:documentation>
  2035. </xs:annotation>
  2036. </xs:element>
  2037. <xs:element name="itemCount" type="base:InvoiceIndexType">
  2038. <xs:annotation>
  2039. <xs:documentation xml:lang="hu">Az adatszolgáltatás tételeinek száma</xs:documentation>
  2040. <xs:documentation xml:lang="en">Item count of the invoiceExchange</xs:documentation>
  2041. </xs:annotation>
  2042. </xs:element>
  2043. </xs:sequence>
  2044. </xs:complexType>
  2045. <xs:element name="GeneralErrorResponse">
  2046. <xs:annotation>
  2047. <xs:documentation xml:lang="hu">Online Számla rendszerre specifikus általános hibaválasz</xs:documentation>
  2048. <xs:documentation xml:lang="en">Online Invoice specific general error response</xs:documentation>
  2049. </xs:annotation>
  2050. <xs:complexType>
  2051. <xs:complexContent>
  2052. <xs:extension base="GeneralErrorResponseType"/>
  2053. </xs:complexContent>
  2054. </xs:complexType>
  2055. </xs:element>
  2056. <xs:element name="ManageAnnulmentRequest">
  2057. <xs:annotation>
  2058. <xs:documentation xml:lang="hu">A POST /manageAnnulment REST operáció kérésének root elementje</xs:documentation>
  2059. <xs:documentation xml:lang="en">Request root element of the POST /manageAnnulment REST operation</xs:documentation>
  2060. </xs:annotation>
  2061. <xs:complexType>
  2062. <xs:complexContent>
  2063. <xs:extension base="ManageAnnulmentRequestType"/>
  2064. </xs:complexContent>
  2065. </xs:complexType>
  2066. </xs:element>
  2067. <xs:element name="ManageAnnulmentResponse">
  2068. <xs:annotation>
  2069. <xs:documentation xml:lang="hu">A POST /manageAnnulment REST operáció válaszának root elementje</xs:documentation>
  2070. <xs:documentation xml:lang="en">Response root element of the POST /manageAnnulment REST operation</xs:documentation>
  2071. </xs:annotation>
  2072. <xs:complexType>
  2073. <xs:complexContent>
  2074. <xs:extension base="TransactionResponseType"/>
  2075. </xs:complexContent>
  2076. </xs:complexType>
  2077. </xs:element>
  2078. <xs:element name="ManageInvoiceRequest">
  2079. <xs:annotation>
  2080. <xs:documentation xml:lang="hu">A POST /manageInvoice REST operáció kérésének root elementje</xs:documentation>
  2081. <xs:documentation xml:lang="en">Request root element of the POST /manageInvoice REST operation</xs:documentation>
  2082. </xs:annotation>
  2083. <xs:complexType>
  2084. <xs:complexContent>
  2085. <xs:extension base="ManageInvoiceRequestType"/>
  2086. </xs:complexContent>
  2087. </xs:complexType>
  2088. </xs:element>
  2089. <xs:element name="ManageInvoiceResponse">
  2090. <xs:annotation>
  2091. <xs:documentation xml:lang="hu">A POST /manageInvoice REST operáció válaszának root elementje</xs:documentation>
  2092. <xs:documentation xml:lang="en">Response root element of the POST /manageInvoice REST operation</xs:documentation>
  2093. </xs:annotation>
  2094. <xs:complexType>
  2095. <xs:complexContent>
  2096. <xs:extension base="TransactionResponseType"/>
  2097. </xs:complexContent>
  2098. </xs:complexType>
  2099. </xs:element>
  2100. <xs:element name="QueryInvoiceChainDigestRequest">
  2101. <xs:annotation>
  2102. <xs:documentation xml:lang="hu">A POST /queryInvoiceChainDigest REST operáció kérésének root elementje</xs:documentation>
  2103. <xs:documentation xml:lang="en">Request root element of the POST /queryInvoiceChainDigest REST operation</xs:documentation>
  2104. </xs:annotation>
  2105. <xs:complexType>
  2106. <xs:complexContent>
  2107. <xs:extension base="QueryInvoiceChainDigestRequestType"/>
  2108. </xs:complexContent>
  2109. </xs:complexType>
  2110. </xs:element>
  2111. <xs:element name="QueryInvoiceChainDigestResponse">
  2112. <xs:annotation>
  2113. <xs:documentation xml:lang="hu">A POST /queryInvoiceChainDigest REST operáció válaszának root elementje</xs:documentation>
  2114. <xs:documentation xml:lang="en">Response root element of the POST /queryInvoiceChainDigest REST operation</xs:documentation>
  2115. </xs:annotation>
  2116. <xs:complexType>
  2117. <xs:complexContent>
  2118. <xs:extension base="QueryInvoiceChainDigestResponseType"/>
  2119. </xs:complexContent>
  2120. </xs:complexType>
  2121. </xs:element>
  2122. <xs:element name="QueryInvoiceCheckRequest">
  2123. <xs:annotation>
  2124. <xs:documentation xml:lang="hu">A POST /queryInvoiceCheck REST operáció kérésének root elementje</xs:documentation>
  2125. <xs:documentation xml:lang="en">Request root element of the POST /queryInvoiceCheck REST operation</xs:documentation>
  2126. </xs:annotation>
  2127. <xs:complexType>
  2128. <xs:complexContent>
  2129. <xs:extension base="QueryInvoiceDataRequestType"/>
  2130. </xs:complexContent>
  2131. </xs:complexType>
  2132. </xs:element>
  2133. <xs:element name="QueryInvoiceCheckResponse">
  2134. <xs:annotation>
  2135. <xs:documentation xml:lang="hu">A POST /queryInvoiceCheck REST operáció válaszának root elementje</xs:documentation>
  2136. <xs:documentation xml:lang="en">Response root element of the POST /queryInvoiceCheck REST operation</xs:documentation>
  2137. </xs:annotation>
  2138. <xs:complexType>
  2139. <xs:complexContent>
  2140. <xs:extension base="QueryInvoiceCheckResponseType"/>
  2141. </xs:complexContent>
  2142. </xs:complexType>
  2143. </xs:element>
  2144. <xs:element name="QueryInvoiceDataRequest">
  2145. <xs:annotation>
  2146. <xs:documentation xml:lang="hu">A POST /queryInvoiceData REST operáció kérésének root elementje</xs:documentation>
  2147. <xs:documentation xml:lang="en">Request root element of the POST /queryInvoiceData REST operation</xs:documentation>
  2148. </xs:annotation>
  2149. <xs:complexType>
  2150. <xs:complexContent>
  2151. <xs:extension base="QueryInvoiceDataRequestType"/>
  2152. </xs:complexContent>
  2153. </xs:complexType>
  2154. </xs:element>
  2155. <xs:element name="QueryInvoiceDataResponse">
  2156. <xs:annotation>
  2157. <xs:documentation xml:lang="hu">A POST /queryInvoiceData REST operáció válaszának root elementje</xs:documentation>
  2158. <xs:documentation xml:lang="en">Response root element of the POST /queryInvoiceData REST operation</xs:documentation>
  2159. </xs:annotation>
  2160. <xs:complexType>
  2161. <xs:complexContent>
  2162. <xs:extension base="QueryInvoiceDataResponseType"/>
  2163. </xs:complexContent>
  2164. </xs:complexType>
  2165. </xs:element>
  2166. <xs:element name="QueryInvoiceDigestRequest">
  2167. <xs:annotation>
  2168. <xs:documentation xml:lang="hu">A POST /queryInvoiceDigest REST operáció válaszának root elementje</xs:documentation>
  2169. <xs:documentation xml:lang="en">Response root element of the POST /queryInvoiceDigest REST operation</xs:documentation>
  2170. </xs:annotation>
  2171. <xs:complexType>
  2172. <xs:complexContent>
  2173. <xs:extension base="QueryInvoiceDigestRequestType"/>
  2174. </xs:complexContent>
  2175. </xs:complexType>
  2176. </xs:element>
  2177. <xs:element name="QueryInvoiceDigestResponse">
  2178. <xs:annotation>
  2179. <xs:documentation xml:lang="hu">A POST /queryInvoiceDigest REST operáció válaszának root elementje</xs:documentation>
  2180. <xs:documentation xml:lang="en">Response root element of the POST /queryInvoiceDigest REST operation</xs:documentation>
  2181. </xs:annotation>
  2182. <xs:complexType>
  2183. <xs:complexContent>
  2184. <xs:extension base="QueryInvoiceDigestResponseType"/>
  2185. </xs:complexContent>
  2186. </xs:complexType>
  2187. </xs:element>
  2188. <xs:element name="QueryTaxpayerRequest">
  2189. <xs:annotation>
  2190. <xs:documentation xml:lang="hu">A POST /queryTaxpayer REST operáció kérésének root elementje</xs:documentation>
  2191. <xs:documentation xml:lang="en">Request root element of the POST /queryTaxpayer REST operation</xs:documentation>
  2192. </xs:annotation>
  2193. <xs:complexType>
  2194. <xs:complexContent>
  2195. <xs:extension base="QueryTaxpayerRequestType"/>
  2196. </xs:complexContent>
  2197. </xs:complexType>
  2198. </xs:element>
  2199. <xs:element name="QueryTaxpayerResponse">
  2200. <xs:annotation>
  2201. <xs:documentation xml:lang="hu">A POST /queryTaxpayer REST operáció válaszának root elementje</xs:documentation>
  2202. <xs:documentation xml:lang="en">Response root element of the POST /queryTaxpayer REST operation</xs:documentation>
  2203. </xs:annotation>
  2204. <xs:complexType>
  2205. <xs:complexContent>
  2206. <xs:extension base="QueryTaxpayerResponseType"/>
  2207. </xs:complexContent>
  2208. </xs:complexType>
  2209. </xs:element>
  2210. <xs:element name="QueryTransactionListRequest">
  2211. <xs:annotation>
  2212. <xs:documentation xml:lang="hu">A POST /queryTransactionList REST operáció kérésének root elementje</xs:documentation>
  2213. <xs:documentation xml:lang="en">Request root element of the POST /queryTransactionList REST operation</xs:documentation>
  2214. </xs:annotation>
  2215. <xs:complexType>
  2216. <xs:complexContent>
  2217. <xs:extension base="QueryTransactionListRequestType"/>
  2218. </xs:complexContent>
  2219. </xs:complexType>
  2220. </xs:element>
  2221. <xs:element name="QueryTransactionListResponse">
  2222. <xs:annotation>
  2223. <xs:documentation xml:lang="hu">A POST /queryTransactionList REST operáció válaszának root elementje</xs:documentation>
  2224. <xs:documentation xml:lang="en">Response root element of the POST /queryTransactionList REST operation</xs:documentation>
  2225. </xs:annotation>
  2226. <xs:complexType>
  2227. <xs:complexContent>
  2228. <xs:extension base="QueryTransactionListResponseType"/>
  2229. </xs:complexContent>
  2230. </xs:complexType>
  2231. </xs:element>
  2232. <xs:element name="QueryTransactionStatusRequest">
  2233. <xs:annotation>
  2234. <xs:documentation xml:lang="hu">A POST /queryTransactionStatus REST operáció kérésének root elementje</xs:documentation>
  2235. <xs:documentation xml:lang="en">Request root element of the POST /queryTransactionStatus REST operation</xs:documentation>
  2236. </xs:annotation>
  2237. <xs:complexType>
  2238. <xs:complexContent>
  2239. <xs:extension base="QueryTransactionStatusRequestType"/>
  2240. </xs:complexContent>
  2241. </xs:complexType>
  2242. </xs:element>
  2243. <xs:element name="QueryTransactionStatusResponse">
  2244. <xs:annotation>
  2245. <xs:documentation xml:lang="hu">A POST /queryTransactionStatus REST operáció válaszának root elementje</xs:documentation>
  2246. <xs:documentation xml:lang="en">Response root element of the POST /queryTransactionStatus REST operation</xs:documentation>
  2247. </xs:annotation>
  2248. <xs:complexType>
  2249. <xs:complexContent>
  2250. <xs:extension base="QueryTransactionStatusResponseType"/>
  2251. </xs:complexContent>
  2252. </xs:complexType>
  2253. </xs:element>
  2254. <xs:element name="TokenExchangeRequest">
  2255. <xs:annotation>
  2256. <xs:documentation xml:lang="hu">A POST /tokenExchange REST operáció kérésének root elementje</xs:documentation>
  2257. <xs:documentation xml:lang="en">Request root element of the POST /tokenExchange REST operation</xs:documentation>
  2258. </xs:annotation>
  2259. <xs:complexType>
  2260. <xs:complexContent>
  2261. <xs:extension base="BasicOnlineInvoiceRequestType"/>
  2262. </xs:complexContent>
  2263. </xs:complexType>
  2264. </xs:element>
  2265. <xs:element name="TokenExchangeResponse">
  2266. <xs:annotation>
  2267. <xs:documentation xml:lang="hu">A POST /tokenExchange REST operáció válaszának root elementje</xs:documentation>
  2268. <xs:documentation xml:lang="en">Response root element of the POST /tokenExchange REST operation</xs:documentation>
  2269. </xs:annotation>
  2270. <xs:complexType>
  2271. <xs:complexContent>
  2272. <xs:extension base="TokenExchangeResponseType"/>
  2273. </xs:complexContent>
  2274. </xs:complexType>
  2275. </xs:element>
  2276. </xs:schema>