company.schema 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "type": ["null","object"],
  4. "properties": {
  5. "company_id": {
  6. "type": ["string"]
  7. },
  8. "new_cid": {
  9. "type": ["null","string"]
  10. },
  11. "base": {
  12. "type": ["null","string"]
  13. },
  14. "name": {
  15. "type": ["null","string"]
  16. },
  17. "name_en": {
  18. "type": ["null","string"]
  19. },
  20. "name_alias": {
  21. "type": ["null","string"]
  22. },
  23. "history_names": {
  24. "type": ["null","array"],
  25. "items": [
  26. {
  27. "type": ["string"]
  28. }
  29. ]
  30. },
  31. "legal_entity_id": {
  32. "type": ["null","string"]
  33. },
  34. "legal_entity_name": {
  35. "type": ["null","string"]
  36. },
  37. "legal_entity_type": {
  38. "type": ["null","integer"]
  39. },
  40. "reg_number": {
  41. "type": ["null","string"]
  42. },
  43. "company_org_type": {
  44. "type": ["null","string"]
  45. },
  46. "reg_location": {
  47. "type": ["null","string"]
  48. },
  49. "estiblish_time": {
  50. "type": ["null","string"]
  51. },
  52. "from_time": {
  53. "type": ["null","string"]
  54. },
  55. "to_time": {
  56. "type": ["null","string"]
  57. },
  58. "business_scope": {
  59. "type": ["null","string"]
  60. },
  61. "reg_institute": {
  62. "type": ["null","string"]
  63. },
  64. "approved_time": {
  65. "type": ["null","string"]
  66. },
  67. "reg_status": {
  68. "type": ["null","string"]
  69. },
  70. "reg_capital": {
  71. "type": ["null","string"]
  72. },
  73. "org_approved_institute": {
  74. "type": ["null","string"]
  75. },
  76. "parent_company_id": {
  77. "type": ["null","string"]
  78. },
  79. "company_type": {
  80. "type": ["null","integer"]
  81. },
  82. "credit_code": {
  83. "type": ["null","string"]
  84. },
  85. "org_number": {
  86. "type": ["null","string"]
  87. },
  88. "score": {
  89. "type": ["null","number"]
  90. },
  91. "cate_first_code": {
  92. "type": ["null","string"]
  93. },
  94. "cate_second_code": {
  95. "type": ["null","string"]
  96. },
  97. "cate_third_code": {
  98. "type": ["null","string"]
  99. },
  100. "lat": {
  101. "type": ["null","string"]
  102. },
  103. "lng": {
  104. "type": ["null","string"]
  105. },
  106. "province_code": {
  107. "type": ["null","string"]
  108. },
  109. "city_code": {
  110. "type": ["null","string"]
  111. },
  112. "county_code": {
  113. "type": ["null","string"]
  114. },
  115. "reg_capital_amount": {
  116. "type": ["null","integer"]
  117. },
  118. "reg_capital_currency": {
  119. "type": ["null","string"]
  120. },
  121. "actual_capital_amount": {
  122. "type": ["null","integer"]
  123. },
  124. "actual_capital_currency": {
  125. "type": ["null","string"]
  126. },
  127. "reg_status_std": {
  128. "type": ["null","string"]
  129. },
  130. "social_security_staff_num": {
  131. "type": ["null","integer"]
  132. },
  133. "cancel_date": {
  134. "type": ["null","string"]
  135. },
  136. "cancel_reason": {
  137. "type": ["null","string"]
  138. },
  139. "revoke_date": {
  140. "type": ["null","string"]
  141. },
  142. "revoke_reason": {
  143. "type": ["null","string"]
  144. },
  145. "emails": {
  146. "type": ["null","string"]
  147. },
  148. "phones": {
  149. "type": ["null","string"]
  150. },
  151. "wechat_public_num": {
  152. "type": ["null","string"]
  153. },
  154. "logo": {
  155. "type": ["null","string"]
  156. },
  157. "crawled_time": {
  158. "type": ["null","string"]
  159. },
  160. "create_time": {
  161. "type": ["null","string"]
  162. },
  163. "update_time": {
  164. "type": ["null","string"]
  165. },
  166. "deleted": {
  167. "type": ["null","integer"]
  168. }
  169. },
  170. "required": [
  171. "company_id"
  172. ]
  173. }