WO2020075282A1 - 変換方法、変換装置および変換プログラム - Google Patents

変換方法、変換装置および変換プログラム Download PDF

Info

Publication number
WO2020075282A1
WO2020075282A1 PCT/JP2018/038004 JP2018038004W WO2020075282A1 WO 2020075282 A1 WO2020075282 A1 WO 2020075282A1 JP 2018038004 W JP2018038004 W JP 2018038004W WO 2020075282 A1 WO2020075282 A1 WO 2020075282A1
Authority
WO
WIPO (PCT)
Prior art keywords
data
conversion
file
format
identification information
Prior art date
Application number
PCT/JP2018/038004
Other languages
English (en)
French (fr)
Inventor
貴英 村本
Original Assignee
富士通株式会社
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by 富士通株式会社 filed Critical 富士通株式会社
Priority to PCT/JP2018/038004 priority Critical patent/WO2020075282A1/ja
Priority to EP18936342.7A priority patent/EP3866050B1/en
Priority to JP2020549915A priority patent/JP7163966B2/ja
Publication of WO2020075282A1 publication Critical patent/WO2020075282A1/ja
Priority to US17/223,011 priority patent/US11392539B2/en

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/10File systems; File servers
    • G06F16/11File system administration, e.g. details of archiving or snapshots
    • G06F16/116Details of conversion of file system types or formats
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06QINFORMATION AND COMMUNICATION TECHNOLOGY [ICT] SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES; SYSTEMS OR METHODS SPECIALLY ADAPTED FOR ADMINISTRATIVE, COMMERCIAL, FINANCIAL, MANAGERIAL OR SUPERVISORY PURPOSES, NOT OTHERWISE PROVIDED FOR
    • G06Q40/00Finance; Insurance; Tax strategies; Processing of corporate or income taxes
    • G06Q40/02Banking, e.g. interest calculation or account maintenance
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/10File systems; File servers
    • G06F16/17Details of further file system functions
    • G06F16/178Techniques for file synchronisation in file systems
    • G06F16/1794Details of file format conversion
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/20Information retrieval; Database structures therefor; File system structures therefor of structured data, e.g. relational data
    • G06F16/25Integrating or interfacing systems involving database management systems
    • G06F16/258Data format conversion from or to a database

Definitions

  • the present invention relates to a conversion method and the like.
  • XBRL eXtensible Business Reporting Language
  • XBRL is a language developed based on XML (eXtensible Markup Language) as a data description language for facilitating the creation, distribution and use of business reports.
  • Converting financial statement data in the XBRL data format into data in other data formats include, for example, JSON (JavaScript (registered trademark) Object Notation) data format, XML data format and CSV (Comma-Separated Values) data format.
  • JSON JavaScript (registered trademark) Object Notation) data format
  • XML data format XML data format
  • CSV Common-Separated Values
  • JSON format data According to the standard specification of data format conversion from XBRL to JSON, it is obligatory that the fact of JSON format data always has an id (identifier). Therefore, when the id is omitted in the fact of the XBRL format data, a new id is assigned to the fact of the JSON format data based on the id generation rule. The new id is assigned so as not to be duplicated with the existing id.
  • the information processing device to be converted When converting the data format from XBRL to JSON, the information processing device to be converted expands all the data in the XBRL format as a model tree on the memory. Then, the information processing device searches for a fact while sequentially tracing the model tree expanded on the memory from the root to the descendants, and when the fact is found, the presence or absence of id is determined. Then, if the id exists, the information processing device converts the fact into the JSON format. On the other hand, if the id does not exist, the information processing device generates a new id and determines the duplication of the new id while sequentially tracing the model tree expanded on the memory from the root to the descendants.
  • the information processing device corrects the new ids, and determines whether the new ids after the duplication are corrected. Then, the information processing device converts the fact into the JSON format if the new ids do not overlap. The information processing apparatus repeats the processing from the fact search to the conversion until the conversion of all the facts is completed.
  • a new id duplication check requires memory capacity.
  • the information processing device expands all the data in the XBRL format in the memory as a model tree, searches for the facts in order from the root, and checks the duplication of the fact's id. And convert the facts into JSON format.
  • This id duplication check requires a memory capacity which is about 5 times smaller than the data size of the XBRL format. Therefore, in the conversion of the data format from XBRL to JSON, a new id duplication check requires a memory capacity.
  • the above problem is not limited to the conversion of the data format from XBRL to JSON, but the conversion of the electronic data format such as the conversion of the data format from XBRL to XML and the conversion of the data format from XBRL to CSV. Is a problem that arises similarly.
  • the present invention has an object to suppress the memory capacity required for the duplication check of the identification information associated with the data after the format conversion in the format conversion of the data.
  • the identification information of the data when the identification information of the data is associated with the data before the format conversion, the identification information is associated with the data after the format conversion.
  • an algorithm for associating the newly generated identification information with the format-converted data is applied to the plurality of data included in the file to obtain the plurality of data.
  • Another file including a plurality of data after the corresponding format conversion is generated, identification information associated with each of the plurality of data included in the other file, and the plurality of data in the other file.
  • the relationship information with the position it is determined whether or not any identification information is associated with a plurality of positions in the other file, and any one of the identification information is identified. If the information is associated with a plurality of positions in the other file, the identification information associated with any one of the plurality of positions among the plurality of data included in the other file is changed.
  • the computer executes the processing.
  • FIG. 1 is a functional block diagram showing the configuration of the conversion device according to the embodiment.
  • FIG. 2 is a diagram showing an example of a file before conversion.
  • FIG. 3 is a diagram showing an example of the converted file.
  • FIG. 4 is a diagram illustrating an example of the data structure of the conversion information list according to the embodiment.
  • FIG. 5 is a diagram illustrating an example of the flow of the format conversion process according to the embodiment.
  • FIG. 6 is a diagram illustrating an example of the flow of id duplication determination processing and id conversion processing according to the embodiment.
  • FIG. 7 is a diagram illustrating an example of a flowchart of the format conversion process according to the embodiment.
  • FIG. 1 is a functional block diagram showing the configuration of the conversion device according to the embodiment.
  • FIG. 2 is a diagram showing an example of a file before conversion.
  • FIG. 3 is a diagram showing an example of the converted file.
  • FIG. 4 is a diagram illustrating an example of the data structure of the conversion information
  • FIG. 8 is a diagram illustrating an example of a flowchart of id duplication determination processing and id change processing according to the embodiment.
  • FIG. 9 is a diagram illustrating the effect of the conversion process according to the embodiment.
  • FIG. 10 is a diagram illustrating an example of a computer that executes a conversion program.
  • FIG. 1 is a functional block diagram showing the configuration of the conversion device according to the embodiment.
  • the conversion device 1 converts the formats of a plurality of data included in a file of XBRL format data. For example, the conversion device 1 format-converts each data included in a file of XBRL format data, and generates another file in which each data after conversion is associated with an id (identifier) of the data. If the id of the converted data is associated with the XBRL format data, this id is associated with the converted data. If the id of the converted data is not associated with the XBRL format data, the newly generated id is associated with the converted data.
  • id identifier
  • the conversion device 1 refers to the relationship information between the id associated with each of the plurality of data included in the other file and the position of each of the plurality of data in the other file, and includes the information in the other file. Duplication of the ids of a plurality of data to be performed is determined. If the ids are duplicated, the conversion device 1 changes the duplicated ids.
  • the XBRL format data file indicates, for example, a financial statement file.
  • the other files include, for example, a JSON format data file, an XML format data file, and a CSV format data file. In the following, a case where a file of financial statement XBRL format data is converted to a file of JSON format data as another file will be described as an example.
  • the conversion device 1 has a control unit 10 and a storage unit 20.
  • the control unit 10 has an internal memory for storing programs and control data that define various processing procedures, and executes various processes by these.
  • the control unit 10 corresponds to, for example, an integrated circuit such as an ASIC (Application Specific Integrated Circuit) or FPGA (Field Programmable Gate Array) or an electronic circuit such as a CPU (Central Processing Unit) or MPU (Micro Processing Unit).
  • the control unit 10 includes a format conversion unit 11, an id duplication determination unit 12, and an id changing unit 13.
  • the format conversion unit 11 is an example of a generation unit.
  • the id duplication determination unit 12 is an example of a determination unit.
  • the id changing unit 13 is an example of a changing unit.
  • the storage unit 20 corresponds to a storage device such as a nonvolatile semiconductor memory element such as a flash memory (Flash Memory) or FRAM (registered trademark) (Ferroelectric Random Access Memory).
  • the storage unit 20 has a pre-conversion file 21, a post-conversion file 22, and a conversion information list 23.
  • the pre-conversion file 21 is a financial statement file, and is an XBRL format data file in the embodiment.
  • FIG. 2 is an example of a file before conversion.
  • the pre-conversion file 21 is a file described in the XBRL format.
  • a plurality of data are described in the pre-conversion file 21. Such data is synonymous with "fact.”
  • a fact is a unit of data that is read from the pre-conversion file 21 or written to the post-conversion file 22 described below.
  • the post-conversion file 22 is a file after the format of the pre-conversion file 21 is converted, and is a JSON format data file in the embodiment.
  • the JSON format facts must have an id. Therefore, when the id is omitted in the XBRL format fact, a new id is generated in the JSON format fact based on the generation rule.
  • the JSON format fact id is used to trace the XBRL format fact that corresponds to the JSON format fact. In other words, the id of the JSON format fact is used to check whether the file of the JSON format data is missing the fact, whether it is correctly converted, or the like.
  • the id generation rule here is defined as in ⁇ 1> and ⁇ 2> below.
  • the new id is “fnn_mm”.
  • F is a prefix.
  • nn is a serial number of the fact
  • mm is an auxiliary serial number used when the serial numbers of the facts overlap.
  • the new id does not overlap with the existing id.
  • the existing id means the id already described in the pre-conversion file 21.
  • the converted file 22 is generated by the format conversion unit 11, for example.
  • the converted file 22 is a file described in the JSON format.
  • the converted file 22 describes a plurality of facts.
  • the fact indicated by reference sign F1 ′ corresponds to the fact indicated by reference sign F1 in FIG. That is, the fact indicated by the code F1 ′ is a fact obtained by converting the XBRL format fact indicated by the code F1 into the JSON format.
  • the id of the fact in the XBRL format is reflected in id.
  • the fact indicated by reference sign F2 ′ corresponds to the fact indicated by reference sign F2 in FIG. That is, the fact indicated by the code F2 ′ is a fact obtained by converting the XBRL format fact indicated by the code F2 into the JSON format.
  • a new id is generated for id.
  • the conversion information list 23 is relationship information between an id associated with each of a plurality of data included in the converted file 22 and a position of each of the plurality of data in the converted file 22. .
  • the conversion information list 23 is generated by the format conversion unit 11, for example.
  • FIG. 4 is a diagram illustrating an example of the data structure of the conversion information list according to the embodiment.
  • the conversion information list 23 is a list in which the id 23a, the offset 23b, and the flag 23c are associated with each other.
  • the id 23a is identification information associated with each piece of data in the converted file 22.
  • the offset 23b indicates the relative position from the beginning of the converted file 22 to id.
  • the offset 23b has been described as indicating the relative position from the beginning of the converted file 22 to the id, the present invention is not limited to this, and the offset 23b may be a relative position from a specific position other than the beginning of the converted file 22 to the id. good.
  • the offset 23b is used to find the position of the id in the converted file 22.
  • the flag 23c is a flag for identifying whether the id 23a is an existing id described in the pre-conversion file 21 or the id 23a is a newly generated id that does not exist in the pre-conversion file 21. If it is an existing id, for example, "0" is set in the flag 23c. In the case of the newly generated id, for example, “1” is set in the flag 23c.
  • id 23a when the id 23a is “i1”, “10” is set as the offset 23b and “0” is set as the flag 23c.
  • id 23a is “f2”
  • "20” is set as the offset 23b and "1” is set as the flag 23c.
  • the format conversion unit 11 format-converts the data of the pre-conversion file 21 to generate the post-conversion file 22.
  • the format conversion unit 11 acquires data (fact) from the pre-conversion file 21.
  • the format conversion unit 11 associates the converted data with the id.
  • the format conversion unit 11 generates a new id, and associates the data after the format conversion with the newly generated id.
  • the new id is generated based on the above-described id generation rule ⁇ 1>.
  • the format conversion unit 11 generates “fnn” (“f” is a prefix, “nn” is a fact serial number) including the serial number next to the serial number assigned to the id of the immediately preceding data as a new id. To do.
  • the format conversion unit 11 adds the data with the id to the converted file 22. Then, the format conversion unit 11 registers the id, the offset from the head of the converted file 22 to the id of the data after the format conversion, and the flag corresponding to the id in the conversion information list 23 in association with each other.
  • the format conversion unit 11 acquires the next data from the pre-conversion file 21
  • the format conversion unit 11 executes the format conversion process on the acquired data and repeats until the next data cannot be acquired.
  • the id duplication determination unit 12 refers to the conversion information list 23 and determines the id duplication. For example, the id duplication determination unit 12 acquires a new id and offset from the conversion information list 23. As an example, the id duplication determination unit 12 acquires an id and an offset corresponding to “1” indicating that the flag 23c is a new id, from the beginning to the end of the conversion information list 23.
  • the id duplication determination unit 12 refers to the conversion information list 23 and determines whether or not there is an existing id that duplicates the acquired new id. In addition, when the new id is changed by the id changing unit 13 described later, the id duplication determination unit 12 further refers to the conversion information list 23 to find an existing id that overlaps the changed new id. Or not.
  • the id changing unit 13 changes the id to a non-duplicate id when there is duplication. For example, when the id duplication determination unit 12 determines that the new id has an existing id that overlaps, the id changing unit 13 changes the new id to an id that does not overlap the existing id. The id is changed based on the above-described id generation rule ⁇ 1>. That is, the id changing unit 13 adds a supplementary serial number “_mm” (mm is a supplementary serial number) to the new id to change the new id.
  • _mm a supplementary serial number
  • the id changing unit 13 reflects the changed id in the converted file 22 and the conversion information list 23. For example, when the id changing unit 13 determines that the new id changed by the id duplication determining unit 12 does not have an existing id that duplicates, the id changing unit 13 obtains it from the conversion information list 23 in the converted file 22. The new id at the offset position is corrected to the changed new id. In addition, the id changing unit 13 corrects the acquired target id in the conversion information list 23 to the changed new id, and changes the offset associated with the id after the acquired target id. Correct according to the number of characters of the new id.
  • the id changing unit 13 sets the offset 23b associated with the id 23a after the new id to It may be corrected to a value obtained by adding two additional characters of "_1".
  • FIG. 5 is a diagram illustrating an example of the flow of the format conversion process according to the embodiment.
  • the pre-conversion file 21 is an XBRL format file
  • the post-conversion file 22 is a JSON format file.
  • the format conversion unit 11 acquires a fact from the pre-conversion file 21 and determines whether the acquired fact is associated with an id. When the acquired fact is associated with the id, the format conversion unit 11 associates the converted fact with the id. When the acquired fact is not associated with an id, the format conversion unit 11 generates a new id and associates the converted fact with the generated new id. Then, the format conversion unit 11 registers the id, the offset from the beginning of the converted file 22 to the id, and the flag in the conversion information list 23 in association with each other.
  • the format conversion unit 11 reads, from the pre-conversion file 21, the fact that the element name at the beginning indicates “e2”. No id is described in this fact. Therefore, the format conversion unit 11 generates a new id “f2” according to the id generation rule. That is, the format conversion unit 11 generates “f2” including the serial number “2” next to the serial number “1” assigned to the immediately preceding id “i1” as a new id. Then, the format conversion unit 11 associates the generated fact “f2” with the format-converted fact. The format conversion unit 11 writes the fact with the id in the converted file 22 (S110).
  • the format conversion unit 11 registers “f2” as the id 23a, “20” as the offset 23b, and “1” indicating the new id as the flag 23c in association with the conversion information list 23 ( S115).
  • the value of the offset 23b is an example.
  • the format conversion unit 11 reads, from the pre-conversion file 21, a fact whose head element name is "e3". No id is described in this fact. Therefore, the format conversion unit 11 generates a new id “f3” according to the id generation rule. That is, the format conversion unit 11 generates "f3" including the serial number "3" next to the serial number "2" assigned to the immediately preceding id "f2" as a new id. Then, the format conversion unit 11 associates the generated id “f3” with the format-converted fact. The format conversion unit 11 writes the fact with the id in the converted file 22 (S120).
  • the format conversion unit 11 registers “f3” as the id 23a, “35” as the offset 23b, and “1” indicating the new id as the flag 23c in association with the conversion information list 23 ( S125).
  • the value of the offset 23b is an example.
  • the format conversion unit 11 writes the fact with the id in the converted file 22 (S140). Then, the format conversion unit 11 registers "f3_1" as the id 23a, "60” as the offset 23b, and "0” as the flag 23c in the conversion information list 23 in association with each other (S145).
  • the value of the offset 23b is an example.
  • FIG. 6 is a diagram illustrating an example of the flow of the id duplication determination process and the id change process according to the embodiment.
  • the id duplication determination process and the id conversion process of the converted file 22 illustrated in FIG. 5 will be described.
  • the id duplication determination unit 12 acquires an id and an offset corresponding to “1” indicating that the flag 23c is a new id, from the beginning to the end of the conversion information list 23.
  • the id duplication determination unit 12 refers to the conversion information list 23 to determine duplication of the acquired new id. Then, if there is a new id duplication, the id changing unit 13 changes the id to a non-duplicate id. Then, the id changing unit 13 reflects the changed id in the converted file 22 and the conversion information list 23.
  • the id duplication determination unit 12 acquires a new id “f2” and an offset “20” corresponding to the flag 23c of “1” from the beginning to the end of the conversion information list 23.
  • the id duplication determination unit 12 refers to the conversion information list 23 and determines whether or not there is an existing id that overlaps the new id “f2” (S200).
  • the conversion information list 23 has no existing id overlapping the new id “f2”.
  • the id duplication determination unit 12 acquires the new id “f3” and the offset “35” corresponding to the flag 23c of “1” from the new id “f2” of the conversion information list 23 toward the end. .
  • the id duplication determination unit 12 refers to the conversion information list 23 and determines whether or not there is an existing id that duplicates the new id “f3” (S210).
  • an existing id that duplicates the new id “f3” exists in another record. Therefore, since the new id “f3” is duplicated, the id changing unit 13 changes the new id “f3” to “f3_1” according to the id generation rule. That is, the id changing unit 13 changes the id to "f3_1", which is the new id "f3" with the auxiliary serial number "_1".
  • the id duplication determination unit 12 refers to the conversion information list 23 and determines whether or not there is an existing id that duplicates the changed new id “f3_1” (S220).
  • an existing id that duplicates the changed new id “f3_1” exists in another record. Therefore, since the new id “f3_1” is duplicated, the id changing unit 13 changes the new id “f3_1” changed according to the id generation rule to “f3_2”. That is, the id changing unit 13 changes the id to "f3_2", which is obtained by changing the auxiliary serial number "_2" to the new id "f3_1".
  • the id duplication determination unit 12 refers to the conversion information list 23 and determines whether or not there is an existing id that duplicates the changed new id “f3_2” (S230). In the conversion information list 23, there is no existing id that overlaps the changed new id “f3_2” in other records.
  • the id changing unit 13 corrects the new id “f3” at the position of the offset “35” acquired from the conversion information list 23 in the post-conversion file 22 to the changed new id “f3_2”. Yes (S240). In addition, the id changing unit 13 corrects the id 23a of the conversion information list 23 from "f3" to "f3_2" (S250). Since the id 23a has been corrected from "f3" to "f3_2", the id changing unit 13 corrects the offset 23b associated with the new id "f3_2" and subsequent ids 23a by two characters. Yes (S260).
  • the offset 23b associated with "f3” as the id 23a is corrected from “45” to "47”.
  • the offset 23b associated with "f3_1" as the id 23a is corrected from "60” to "62”. Then, subsequently, the id duplication determination unit 12 may repeat the duplication determination of the new id after the changed new id “f3_2”.
  • the conversion device 1 can suppress the memory capacity required for the duplication check of the ids associated with the facts after the format conversion. That is, the conversion device 1 determines duplication of ids by using the conversion information list 23 without expanding all the XBRL format facts in the memory, and thus duplication of ids associated with the facts after format conversion. The memory capacity required for the check can be suppressed.
  • the id duplication determination unit 12 performs id duplication determination from the beginning to the end of the conversion information list 23.
  • the id duplication determination unit 12 is not limited to this, and may perform id duplication determination from the end to the beginning of the conversion information list 23.
  • the id duplication determination unit 12 refers to the conversion information list 23 and determines whether there is an existing id that overlaps the new id.
  • the id changing unit 13 changes the ids to non-duplicated ids and reflects the changed ids in the converted file 22 and the conversion information list 23.
  • the id changing unit 13 does not have to correct the offset 23b corresponding to the id after the changed id in the conversion information list 23. This is because the IDs after the changed ID have already been determined to be duplicates, and the offset is not used. Accordingly, the id changing unit 13 can perform the id changing process at high speed by not correcting the offset even when changing the id.
  • FIG. 7 is a diagram illustrating an example of a flowchart of the format conversion process according to the embodiment.
  • the pre-conversion file 21 is a file of XBRL format data
  • the post-conversion file 22 is a file of JSON format data.
  • the format conversion unit 11 acquires a fact from a file of XBRL format data (step S10).
  • the format conversion unit 11 determines whether there is a fact (step S11). When it is determined that there is a fact (step S11; Yes), the format conversion unit 11 determines whether or not the fact has the id of the fact (step S12). When it is determined that the fact has the id of the fact (step S12; Yes), the format conversion unit 11 proceeds to step S14.
  • step S12 when it is determined that the fact does not have the id of the fact (step S12; No), the format conversion unit 11 generates a new id according to the id generation rule (step S13). That is, the format conversion unit 11 generates a new id in which the appearance number (serial number) is added to “f”. The serial number indicates the serial number next to the serial number assigned to the immediately preceding id. Then, the format conversion unit 11 moves to step S14. In step S14, the format conversion unit 11 sets the fact with id in the JSON format data in the JSON format data file (step S14).
  • the format conversion unit 11 registers the id, the offset, and the flag in the conversion information list 23 (step S15). For example, the offset is set to the relative position from the beginning of the file of JSON format data to the id of the target fact. If the id is a newly generated id, a flag value (for example, “1”) indicating that the id is newly generated is set, and if the id is an existing id, it means that the id is existing. A flag value (for example, "0”) is set. Then, the format conversion unit 11 proceeds to step S11 so as to process the next fact. When it is determined in step S11 that there is no fact (step S11; No), the format conversion unit 11 ends the format conversion process.
  • a flag value for example, “1”
  • FIG. 8 is a diagram illustrating an example of a flowchart of id duplication determination processing and id change processing according to the embodiment.
  • the pre-conversion file 21 is an XBRL format data file
  • the post-conversion file 22 is a JSON format data file.
  • the id duplication determination unit 12 acquires a new id and offset from the conversion information list 23 (step S20). For example, the id duplication determination unit 12 acquires an id and an offset corresponding to a flag value (for example, “1”) indicating that the flag 23c is a new id from the head to the end of the conversion information list 23.
  • a flag value for example, “1”
  • the id duplication determination unit 12 determines whether there is a new unprocessed id (step S21). When it is determined that there is an unprocessed new id (step S21; Yes), the id duplication determination unit 12 refers to the conversion information list 23 and determines whether or not the new id has a completely matching existing id. It is determined (step S22). If it is determined that the new id does not have a completely matching existing id (step S22; No), the id duplication determination unit 12 proceeds to step S21 to determine the next new id.
  • the id changing unit 13 counts up the auxiliary serial number (initial value "1") for this id (Ste S23). Then, the id changing unit 13 changes the new id by adding "_auxiliary serial number" to the new id according to the id generation rule (step S24).
  • the id duplication determination unit 12 refers to the conversion information list 23 and determines whether or not the changed new id has a completely matching existing id (step S25). When it is determined that the changed new id has a completely matching existing id (step S25; Yes), the id duplication determination unit 12 causes the id changing unit 13 to change the new id to step S23. Transition.
  • the id changing unit 13 corrects the id of the fact of the file of the JSON format data (step S26). ). For example, the id changing unit 13 corrects the id at the offset position acquired from the conversion information list 23 in the JSON format data file to the changed new id.
  • the id changing unit 13 corrects the id and offset of the conversion information list 23 (step S27). For example, the id changing unit 13 corrects the target new id in the conversion information list 23 to the changed new id, and also changes the offset associated with the id after the target new id. Correct according to the number of characters in id. Then, the id changing unit 13 proceeds to step S21 so that the id duplication determination unit 12 determines the next new id. If it is determined in step S21 that there is no unprocessed new id (step S21; No), the id duplication determination unit 12 ends the id duplication determination process.
  • the conversion device 1 converts the formats of a plurality of data included in a file.
  • the conversion device 1 associates the identification information with the format-converted data, and when the identification information is not associated with the format, An algorithm for associating newly generated identification information with the converted data is applied to the plurality of data included in the pre-conversion file 21.
  • the conversion device 1 generates another file (post-conversion file 22) including a plurality of pieces of format-converted data corresponding to a plurality of applied data.
  • the conversion device 1 refers to the relationship information (conversion information list 23) between the identification information associated with each of the plurality of data included in the other file and the position of each of the plurality of data in the other file. , It is determined whether any of the identification information is associated with a plurality of positions in other files. Then, when any of the identification information is associated with a plurality of positions in another file, the conversion device 1 determines that one of the data in a plurality of positions among the plurality of data included in the other file. The associated identification information is changed. With this configuration, the conversion device 1 can suppress the memory capacity required for the duplication check of the identification information associated with the data after the format conversion.
  • FIG. 9 is a diagram illustrating the effect of the conversion process according to the embodiment.
  • the conversion device 1 associates the data after the format conversion with the id, and the id is If not, the newly generated id is associated with the data after the format conversion.
  • the conversion device applies such an algorithm to a plurality of data included in the pre-conversion file 21 to generate a post-conversion file 22 including a plurality of format-converted data corresponding to the plurality of data (S300).
  • the conversion device 1 includes the relationship information (conversion information list) between the ids associated with the plurality of data included in the converted file 22 and the positions (offsets) of the plurality of data in the converted file 22. 23), it is determined whether any id is associated with a plurality of offsets in the converted file 22 (S310). Then, the conversion device 1, when any id is associated with a plurality of offsets in the post-conversion file 22, the data of any of the plurality of offsets among the plurality of data included in the post-conversion file 22. The id associated with is changed (S320).
  • the conversion device 1 generates the post-conversion file 22 from the pre-conversion file 21 and then refers to the conversion information list 23 to check the duplication of the ids in the post-conversion file 22.
  • the duplicated ids in the converted file 22 are updated.
  • the conversion device 1 does not expand all the data of the pre-conversion file 21 on the memory, but determines the duplication of the id by using the conversion information list 23, and thus corresponds to the data in the post-conversion file 22. It is possible to suppress the memory capacity required for the duplication check of the attached id.
  • the conversion device 1 changes the newly generated identification information among the identification information associated with the plurality of data described in the plurality of positions. According to such a configuration, the conversion device 1 changes the newly generated identification information so that when the data is traced from the post-conversion file 22 to the pre-conversion file 21, the conversion information 1 is correctly traced using the identification information. can do. That is, the conversion device 1 can correctly trace whether there is no data loss or whether the data is correctly converted from the post-conversion file 22 to the pre-conversion file 21 by using the identification information.
  • the conversion apparatus 1 applies the algorithm at the timing when each of the plurality of data included in the pre-conversion file 21 is read, and adds the post-conversion data to the post-conversion file 22. Then, the conversion device 1 adds the relationship between the identification information associated with the format-converted data and the position of the data in the converted file 22 to the relationship information (conversion information list 23). According to this configuration, the conversion device 1 has a relationship between the identification information associated with the data after the format conversion and the position of the data in the converted file 22 at the timing of reading the data from the pre-conversion file 21. Is added to the conversion information list 23.
  • the conversion device 1 expands the conversion information list 23 in the memory in place of the pre-conversion file 21 to correctly check the duplication of the identification information associated with the data in the post-conversion file 22. Moreover, the conversion device 1 can suppress the memory capacity required for the duplication check of the identification information associated with the data in the converted file 22.
  • the conversion apparatus 1 checks the duplication of the id of the JSON format data when converting the file of the XBRL format data of the financial statements into the file of the JSON format data.
  • the conversion device 1 is not limited to this, and may convert the XBRL format data file of the financial statements into a CSV format data file by checking for duplication of the CSV format data id. Further, the conversion device 1 may perform a duplicate check of the id of the XML format data when converting the file of the XBRL format data of the financial statements into the file of the XML format data.
  • the conversion device 1 checks the duplication of the id of the data in the post-conversion file 22 when converting the pre-conversion file 21 of the financial statements into the post-conversion file 22 has been described.
  • the conversion device 1 is not limited to financial statements, and may perform a duplicate check of the id of the data in the file after the format conversion when performing the format conversion of the electronic data with the id.
  • the conversion device 1 can be realized by mounting each function of the control unit 10 and the storage unit 20 described above on an information processing device such as a known personal computer or workstation.
  • each component of the illustrated conversion device 1 does not necessarily have to be physically configured as illustrated. That is, the specific mode of distribution / integration of the conversion device 1 is not limited to that shown in the drawing, and all or part of the conversion / integration may be functionally or physically distributed in arbitrary units according to various loads and usage conditions. -Can be integrated and configured.
  • the id duplication determination unit 12 and the id changing unit 13 may be integrated as one unit.
  • the format conversion unit 11 may be divided into a conversion unit that converts the format of data and a creation unit that creates the conversion information list 23.
  • the storage unit 20 such as the pre-conversion file 21, the post-conversion file 22 and the conversion information list 23 may be connected as an external device of the conversion device 1 via a network.
  • FIG. 10 is a diagram illustrating an example of a computer that executes a conversion program.
  • the computer 200 includes a CPU (Central Processing Unit) 203 that executes various arithmetic processes, an input device 215 that receives data input from a user, and a display control unit 207 that controls the display device 209. Have.
  • the computer 200 also includes a drive device 213 that reads a program or the like from a storage medium, and a communication control unit 217 that exchanges data with another computer via a network.
  • the computer 200 also has a memory 201 for temporarily storing various information and an HDD (Hard Disk Drive) 205.
  • the memory 201, the CPU 203, the HDD 205, the display control unit 207, the drive device 213, the input device 215, and the communication control unit 217 are connected by the bus 219.
  • the drive device 213 is, for example, a device for the removable disk 211.
  • the HDD 205 stores a conversion program 205a and conversion processing related information 205b.
  • the CPU 203 reads the conversion program 205a and loads it in the memory 201.
  • the conversion program 205a functions as a conversion process.
  • the conversion process corresponds to each functional unit of the control unit 10.
  • the conversion process related information 205b corresponds to the pre-conversion file 21, the post-conversion file 22, and the conversion information list 23.
  • the conversion program 205a does not necessarily have to be stored in the HDD 205 from the beginning.
  • a "portable physical medium such as a flexible disk (FD), a CD-ROM (Compact Disk Read Only Memory), a DVD (Digital Versatile Disk), a magneto-optical disk, an IC (Integrated Circuit) card, etc., which is inserted into the computer 200.
  • the program is stored in ". Then, the computer 200 may read the conversion program 205a from these and execute it.
  • conversion device 10 control unit 11 format conversion unit 12 id duplication determination unit 13 id change unit 20 storage unit 21 pre-conversion file 22 post-conversion file 23 conversion information list

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Databases & Information Systems (AREA)
  • General Physics & Mathematics (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • Data Mining & Analysis (AREA)
  • Business, Economics & Management (AREA)
  • Accounting & Taxation (AREA)
  • Finance (AREA)
  • Development Economics (AREA)
  • General Business, Economics & Management (AREA)
  • Technology Law (AREA)
  • Strategic Management (AREA)
  • Marketing (AREA)
  • Economics (AREA)
  • Information Retrieval, Db Structures And Fs Structures Therefor (AREA)

Abstract

変換装置1は、変換前ファイル21に含まれる複数のデータの形式を変換する際に、形式変換前のデータにidが対応付けられている場合、形式変換後のデータに該idを対応付け、該idが対応付けられていない場合、形式変換後のデータに、新たに生成したidを対応付け、形式変換後の複数のデータを含む変換後ファイル22を生成し(S300)、変換後ファイル22に含まれる複数のデータそれぞれに対応付けられたidと変換後ファイル22内の位置との変換情報リスト23を参照して、何れかのidが変換後ファイル22内の複数の位置に対応付けられているか否かを判定し(S310)、何れかのidが変換後ファイル22内の複数の位置に対応付けられている場合、複数の位置の何れかのデータに対応付けられたidを変更する(S320)ことで、形式変換後のデータに対応付けられるidの重複チェックに要するメモリ容量を抑制することができる。

Description

変換方法、変換装置および変換プログラム
 本発明は、変換方法等に関する。
 XBRL(eXtensible Business Reporting Language)による財務諸表を金融庁へ提出することが義務付けられている。XBRLとは、ビジネス報告の作成、流通および利用を容易にするためのデータ記述言語として、XML(eXtensible Markup Language)をベースに開発された言語である。
 XBRLのデータ形式の財務諸表のデータを他のデータ形式のデータに変換することが行われている。他のデータ形式には、例えば、JSON(JavaScript(登録商標) Object Notation)データ形式、XMLデータ形式やCSV(Comma-Separated Values)データ形式が挙げられる。
 XBRLからJSONへのデータ形式の変換の標準仕様では、JSON形式のデータのファクトは、必ずid(identifier)を持つことが義務付けられている。したがって、XBRL形式のデータのファクトにidが省略されていた場合には、新規のidが、JSON形式のデータのファクトに、idの生成規則に基づいて振られる。新規のidは、既存のidに重複しないように振られる。
 XBRLからJSONへのデータ形式の変換では、変換する情報処理装置は、XBRL形式のデータを全てモデルツリーとしてメモリ上に展開する。そして、情報処理装置は、メモリ上に展開したモデルツリーをルートから子孫へ順番に辿りながら、ファクトを検索し、ファクトを見つけたら、idの有無を判定する。そして、情報処理装置は、idが存在すれば、ファクトをJSON形式に変換する。一方、情報処理装置は、idが存在しなければ、新規のidを生成し、メモリ上に展開したモデルツリーをルートから子孫へ順番に辿りながら、新規のidの重複を判定する。そして、情報処理装置は、新規のidが重複していれば、新規のidを修正し、修正後の新規のidの重複を判定する。そして、情報処理装置は、新規のidが重複していなければ、ファクトをJSON形式に変換する。情報処理装置は、全てのファクトの変換が終わるまで、ファクトの検索から変換までの処理を繰り返す。
国際公開第2011/089683号
 しかしながら、従来のXBRLからJSONへのデータ形式の変換では、新規のidの重複チェックにメモリ容量を要するという問題がある。例えば、XBRLからJSONへのデータ形式の変換では、情報処理装置が、XBRL形式のデータを全てモデルツリーとしてメモリ上に展開し、ルートから順番にファクトを検索し、ファクトのidの重複チェックをして、ファクトをJSON形式に変換する。かかるidの重複チェックには、XBRL形式のデータサイズの約5倍弱のメモリ容量が必要となる。したがって、XBRLからJSONへのデータ形式の変換では、新規のidの重複チェックにメモリ容量を要してしまう。
 なお、上記課題は、XBRLからJSONへのデータ形式の変換の場合だけではなく、XBRLからXMLへのデータ形式の変換やXBRLからCSVへのデータ形式の変換等の電子データのフォーマット変換の場合等にも同様に生じる課題である。
 1つの側面では、本発明は、データの形式変換において、形式変換後のデータに対応付けられる識別情報の重複チェックに要するメモリ容量を抑制することを目的とする。
 一態様の、ファイルに含まれる複数のデータの形式を変換する変換方法において、形式変換前のデータに該データの識別情報が対応付けられている場合、形式変換後のデータに該識別情報を対応付け、該識別情報が対応付けられていない場合、前記形式変換後のデータに、新たに生成した識別情報を対応付けるアルゴリズムを、前記ファイルに含まれる複数のデータに適用して、前記複数のデータに対応した形式変換後の複数のデータを含む他のファイルを生成し、前記他のファイルに含まれる複数のデータそれぞれに対応付けられた識別情報と、該複数のデータそれぞれの前記他のファイル内の位置との関係情報を参照して、何れかの識別情報が前記他のファイル内の複数の位置に対応付けられているか否かを判定し、前記何れかの識別情報が前記他のファイル内の複数の位置に対応付けられている場合、前記他のファイルに含まれる複数のデータの内、前記複数の位置の何れかのデータに対応付けられた識別情報を変更する、処理をコンピュータが実行する。
 一つの態様によれば、形式変換後のデータに対応付けられる識別情報の重複チェックに要するメモリ容量を抑制することができる。
図1は、実施例に係る変換装置の構成を示す機能ブロック図である。 図2は、変換前ファイルの一例を示す図である。 図3は、変換後ファイルの一例を示す図である。 図4は、実施例に係る変換情報リストのデータ構造の一例を示す図である。 図5は、実施例に係る形式変換処理の流れの一例を示す図である。 図6は、実施例に係るid重複判定処理およびid変換処理の流れの一例を示す図である。 図7は、実施例に係る形式変換処理のフローチャートの一例を示す図である。 図8は、実施例に係るid重複判定処理およびid変更処理のフローチャートの一例を示す図である。 図9は、実施例に係る変換処理の効果を説明する図である。 図10は、変換プログラムを実行するコンピュータの一例を示す図である。
 以下に、本願の開示する変換方法、変換装置および変換プログラムの実施例を図面に基づいて詳細に説明する。なお、実施例によりこの発明が限定されるものではない。
[実施例に係る変換装置の構成]
 図1は、実施例に係る変換装置の構成を示す機能ブロック図である。図1に示すように、変換装置1は、XBRL形式データのファイルに含まれる複数のデータの形式を変換する。例えば、変換装置1は、XBRL形式データのファイルに含まれる各データを形式変換し、変換後の各データにデータのid(identifier)を対応付けた他のファイルを生成する。変換後のデータのidは、XBRL形式データに対応付けられている場合には、このidを変換後のデータに対応付ける。変換後のデータのidは、XBRL形式データに対応付けられていない場合には、新たに生成したidを変換後のデータに対応付ける。そして、変換装置1は、他のファイルに含まれる複数のデータそれぞれに対応付けられたidと、該複数のデータそれぞれの他のファイル内の位置との関係情報を参照し、他のファイルに含まれる複数のデータのidを重複判定する。変換装置1は、idが重複している場合には、重複しているidを変更する。XBRL形式データのファイルは、例えば、財務諸表のファイルを示す。他のファイルは、例えば、JSON形式データのファイル、XML形式データのファイルやCSV形式データのファイルを含む。なお、以降では、財務諸表のXBRL形式データのファイルを、他のファイルとしてのJSON形式データのファイルに変換する場合を一例として説明する。
 変換装置1は、制御部10と、記憶部20とを有する。
 制御部10は、各種の処理手順を規定したプログラムや制御データを格納するための内部メモリを有し、これらによって種々の処理を実行する。そして、制御部10は、例えば、ASIC(Application Specific Integrated Circuit)やFPGA(Field Programmable Gate Array)等の集積回路またはCPU(Central Processing Unit)やMPU(Micro Processing Unit)等の電子回路に対応する。さらに、制御部10は、形式変換部11と、id重複判定部12と、id変更部13とを有する。なお、形式変換部11は、生成部の一例である。id重複判定部12は、判定部の一例である。id変更部13は、変更部の一例である。
 記憶部20は、例えばフラッシュメモリ(Flash Memory)やFRAM(登録商標)(Ferroelectric Random Access Memory)等の不揮発性の半導体メモリ素子等の記憶装置に対応する。そして、記憶部20は、変換前ファイル21と、変換後ファイル22と、変換情報リスト23とを有する。
 変換前ファイル21は、財務諸表のファイルであり、実施例では、XBRL形式データのファイルである。ここで、変換前ファイル21の一例を、図2を参照して説明する。図2は、変換前ファイルの一例である。図2に示すように、変換前ファイル21は、XBRLフォーマットで記述されているファイルである。変換前ファイル21には、複数のデータが記述されている。かかるデータは、「ファクト」と同義である。ファクトは、変換前ファイル21から読み込んだり後述する変換後ファイル22に書き込んだりするデータの単位である。
 一例として、符号F1で示されるファクトには、要素名として「e1」、要素の値として「test1」が記述されている。このファクトには、idが存在し、idとして“i1”が記述されている。符号F2で示されるファクトには、要素名として「e2」、要素の値として「test2」が記述されている。このファクトには、idが省略されている。
 図1に戻って、変換後ファイル22は、変換前ファイル21の形式(フォーマット)を変換した後のファイルであり、実施例では、JSON形式データのファイルである。XBRL形式からJSON形式への変換の標準仕様では、JSON形式のファクトは、必ずidを持つことが義務付けられている。したがって、XBRL形式のファクトにidが省略されている場合には、JSON形式のファクトに、新規のidが、生成規則に基づいて生成される。JSON形式のファクトのidは、JSON形式のファクトに対応するXBRL形式のファクトをトレースするために使用される。言い換えれば、JSON形式のファクトのidは、JSON形式データのファイルに、ファクトの欠損がないか、正しく変換されているか等をチェックするために使用される。
 ここでいうidの生成規則は、以下の<1>および<2>のように、定義されている。<1>新規のidは、「fnn_mm」とする。“f”は、接頭辞である。nnは、ファクトの通し番号であり、mmは、ファクトの通し番号が重複する場合に用いられる補助の通し番号である。<2>新規のidは、既存のidに重複しない。既存のidとは、変換前ファイル21に既に記述されているidのことをいう。なお、変換後ファイル22は、例えば、形式変換部11によって生成される。
 ここで、変換後ファイル22の一例を、図3を参照して説明する。図3は、変換後ファイルの一例である。図3に示すように、変換後ファイル22は、JSONフォーマットで記述されているファイルである。変換後ファイル22には、複数のファクトが記述されている。例えば、符号F1´で示されるファクトは、図2の符号F1で示したファクトに対応する。すなわち、符号F1´で示したファクトは、符号F1で示したXBRL形式のファクトをJSON形式に変換して得られたファクトである。idには、XBRL形式のファクトのidが反映されている。符号F2´で示されるファクトは、図2の符号F2で示したファクトに対応する。すなわち、符号F2´で示したファクトは、符号F2で示したXBRL形式のファクトをJSON形式に変換して得られたファクトである。idには、新規のidが生成されている。
 図1に戻って、変換情報リスト23は、変換後ファイル22に含まれる複数のデータそれぞれに対応付けられたidと、該複数のデータそれぞれの変換後ファイル22内の位置との関係情報である。なお、変換情報リスト23は、例えば、形式変換部11によって生成される。
 ここで、変換情報リスト23のデータ構造の一例を、図4を参照して説明する。図4は、実施例に係る変換情報リストのデータ構造の一例を示す図である。図4に示すように、変換情報リスト23は、id23a、オフセット23bおよびフラグ23cを対応付けたリストである。id23aは、変換後ファイル22内のデータごとに対応付けられた識別情報である。オフセット23bは、変換後ファイル22の先頭からidまでの相対位置を示す。オフセット23bは、変換後ファイル22の先頭からidまでの相対位置を示すと説明したが、これに限定されず、変換後ファイル22の先頭以外の特定の位置からidまでの相対位置であっても良い。オフセット23bは、変換後ファイル22内のidの位置を見つけるために用いられる。フラグ23cは、id23aが変換前ファイル21に記述された既存のidであるか、id23aが変換前ファイル21に存在しておらず、新規に生成されたidであるかを識別するフラグである。既存のidである場合には、フラグ23cに、例えば「0」が設定される。新規に生成されたidである場合には、フラグ23cに、例えば「1」が設定される。
 一例として、id23aが「i1」である場合には、オフセット23bとして「10」、フラグ23cとして「0」が設定されている。id23aが「f2」である場合には、オフセット23bとして「20」、フラグ23cとして「1」が設定されている。
 図1に戻って、形式変換部11は、変換前ファイル21のデータを形式変換して変換後ファイル22を生成する。例えば、形式変換部11は、変換前ファイル21からデータ(ファクト)を取得する。形式変換部11は、取得したデータに該データのidが対応付けられている場合、形式変換後のデータに該idを対応付ける。形式変換部11は、取得したデータに該データのidが対応付けられていない場合、新規のidを生成し、形式変換後のデータに、新規に生成したidを対応付ける。新規のidは、前述したidの生成規則<1>に基づいて生成される。すなわち、形式変換部11は、直前のデータのidに割り振られている通し番号の次の通し番号を含む「fnn」(“f”は接頭辞,“nn”はファクトの通し番号)を新規のidとして生成する。形式変換部11は、id付きのデータを変換後ファイル22に追加する。そして、形式変換部11は、idと、変換後ファイル22の先頭から形式変換後のデータのidまでのオフセットと、idに対応するフラグとを対応付けて変換情報リスト23に登録する。形式変換部11は、変換前ファイル21から次のデータを取得すると、取得したデータに対する形式変換処理を実行し、次のデータが取得できなくなるまで繰り返す。
 id重複判定部12は、変換情報リスト23を参照して、idの重複を判定する。例えば、id重複判定部12は、変換情報リスト23から新規のidとオフセットとを取得する。一例として、id重複判定部12は、変換情報リスト23の先頭から終端に向かって、フラグ23cが新規のidであることを示す「1」に対応するidおよびオフセットを取得する。id重複判定部12は、変換情報リスト23を参照して、取得した新規のidに重複する既存のidがあるか否かを判定する。また、id重複判定部12は、後述するid変更部13によって新規のidが変更された場合、さらに、変換情報リスト23を参照して、変更された新規のidに重複する既存のidがあるか否かを判定する。
 id変更部13は、idの重複がある場合には、当該idを重複しないidに変更する。例えば、id変更部13は、id重複判定部12によって新規のidに重複する既存のidがあると判定された場合には、新規のidを既存のidと重複しないidに変更する。idは、前述したidの生成規則<1>に基づいて変更される。すなわち、id変更部13は、新規のidに補助の通し番号「_mm」(mmは補助の通し番号)をつけて、新規のidを変更する。
 また、id変更部13は、変更したidを変換後ファイル22および変換情報リスト23に反映する。例えば、id変更部13は、id重複判定部12によって変更された新規のidに重複する既存のidがないと判定された場合には、変換後ファイル22内の、変換情報リスト23から取得されたオフセットの位置にある新規のidを、変更された新規のidに修正する。加えて、id変更部13は、変換情報リスト23について、取得した対象のidを、変更した新規のidに修正するとともに、取得した対象のid以降のidに対応付けられたオフセットを、変更された新規のidの文字数に合わせて修正する。一例として、新規のidが「f3」であった場合に、新規のidが「f3_1」に変更されると、id変更部13は、新規のid以降のid23aに対応付けられたオフセット23bを、つけ加えられた「_1」の2文字数分加算して得られる値に修正すれば良い。
[形式変換処理の流れの一例]
 図5は、実施例に係る形式変換処理の流れの一例を示す図である。なお、図5では、変換前ファイル21は、XBRLフォーマットのファイルであり、変換後ファイル22は、JSONフォーマットのファイルである。
 形式変換部11は、変換前ファイル21からファクトを取得し、取得したファクトにidが対応付けられているか否かを判定する。形式変換部11は、取得したファクトにidが対応付けられている場合には、形式変換後のファクトに該idを対応付ける。形式変換部11は、取得したファクトにidが対応付けられていない場合、新規のidを生成し、形式変換後のファクトに、生成した新規のidを対応付ける。そして、形式変換部11は、idと、変換後ファイル22の先頭からidまでのオフセットと、フラグとを対応付けて変換情報リスト23に登録する。
 ここでは、形式変換部11は、変換前ファイル21から、先頭の要素名が「e1」を示すファクトを読み込む。かかるファクトには、「id=“i1”」が記述されているので、idが対応付けられている。したがって、形式変換部11は、形式変換後のファクトにidとして“i1”を対応付ける。形式変換部11は、変換後ファイル22にid付きのファクトを書き込む(S100)。そして、形式変換部11は、変換情報リスト23に対して、id23aとして“i1”、オフセット23bとして「10」、フラグ23cとして「0」を対応付けて登録する(S105)。なお、オフセット23bの値は、一例である。
 次に、形式変換部11は、変換前ファイル21から、先頭の要素名が「e2」を示すファクトを読み込む。かかるファクトには、idが記述されていない。したがって、形式変換部11は、idの生成規則に従って新規のid“f2”を生成する。すなわち、形式変換部11は、直前のid“i1”に割り振られている通し番号「1」の次の通し番号「2」を含む「f2」を新規のidとして生成する。そして、形式変換部11は、形式変換後のファクトに、生成したid“f2”を対応付ける。形式変換部11は、変換後ファイル22にid付きのファクトを書き込む(S110)。そして、形式変換部11は、変換情報リスト23に対して、id23aとして“f2”、オフセット23bとして「20」、フラグ23cとして新規のidであることを示す「1」を対応付けて登録する(S115)。なお、オフセット23bの値は、一例である。
 次に、形式変換部11は、変換前ファイル21から、先頭の要素名が「e3」を示すファクトを読み込む。かかるファクトには、idが記述されていない。したがって、形式変換部11は、idの生成規則に従って新規のid“f3”を生成する。すなわち、形式変換部11は、直前のid“f2”に割り振られている通し番号「2」の次の通し番号「3」を含む「f3」を新規のidとして生成する。そして、形式変換部11は、形式変換後のファクトに、生成したid“f3”を対応付ける。形式変換部11は、変換後ファイル22にid付きのファクトを書き込む(S120)。そして、形式変換部11は、変換情報リスト23に対して、id23aとして“f3”、オフセット23bとして「35」、フラグ23cとして新規のidであることを示す「1」を対応付けて登録する(S125)。なお、オフセット23bの値は、一例である。
 次に、形式変換部11は、変換前ファイル21から、先頭の要素名が「e10」を示すファクトを読み込む。かかるファクトには、「id=“f3”」が記述されているので、idが対応付けられている。したがって、形式変換部11は、形式変換後のファクトにidとして“f3”を対応付ける。形式変換部11は、変換後ファイル22にid付きのファクトを書き込む(S130)。そして、形式変換部11は、変換情報リスト23に対して、id23aとして“f3”、オフセット23bとして「45」、フラグ23cとして「0」を対応付けて登録する(S135)。なお、オフセット23bの値は、一例である。
 次に、形式変換部11は、変換前ファイル21から、先頭の要素名が「e20」を示すファクトを読み込む。かかるファクトには、「id=“f3_1”」が記述されているので、idが対応付けられている。したがって、形式変換部11は、形式変換後のファクトにidとして“f3_1”を対応付ける。形式変換部11は、変換後ファイル22にid付きのファクトを書き込む(S140)。そして、形式変換部11は、変換情報リスト23に対して、id23aとして“f3_1”、オフセット23bとして「60」、フラグ23cとして「0」を対応付けて登録する(S145)。なお、オフセット23bの値は、一例である。
[id重複判定処理およびid変更処理の流れの一例]
 図6は、実施例に係るid重複判定処理およびid変更処理の流れの一例を示す図である。なお、図6では、図5で示した変換後ファイル22のid重複判定処理およびid変換処理について説明する。
 id重複判定部12は、変換情報リスト23の先頭から終端に向かって、フラグ23cが新規のidであることを示す「1」に対応するidおよびオフセットを取得する。id重複判定部12は、変換情報リスト23を参照して、取得した新規のidの重複を判定する。そして、id変更部13は、新規のidの重複がある場合には、当該idを重複しないidに変更する。そして、id変更部13は、変更したidを変換後ファイル22および変換情報リスト23に反映する。
 ここでは、id重複判定部12は、変換情報リスト23の先頭から終端に向かって、フラグ23cが「1」に対応する新規のid「f2」およびオフセット「20」を取得する。id重複判定部12は、変換情報リスト23を参照して、新規のid「f2」に重複する既存のidがあるか否かを判定する(S200)。変換情報リスト23には、新規のid「f2」に重複する既存のidが存在しない。
 次に、id重複判定部12は、変換情報リスト23の新規のid「f2」から終端に向かって、フラグ23cが「1」に対応する新規のid「f3」およびオフセット「35」を取得する。id重複判定部12は、変換情報リスト23を参照して、新規のid「f3」に重複する既存のidがあるか否かを判定する(S210)。変換情報リスト23には、新規のid「f3」に重複する既存のidが他のレコードに存在する。そこで、id変更部13は、新規のid「f3」の重複があるので、idの生成規則に従って新規のid“f3”を“f3_1”に変更する。すなわち、id変更部13は、新規のid“f3”に補助の通し番号「_1」をつけた“f3_1”にidを変更する。
 そして、id重複判定部12は、変換情報リスト23を参照して、変更された新規のid「f3_1」に重複する既存のidがあるか否かを判定する(S220)。変換情報リスト23には、変更された新規のid「f3_1」に重複する既存のidが他のレコードに存在する。そこで、id変更部13は、新規のid「f3_1」の重複があるので、idの生成規則に従って変更された新規のid“f3_1”を“f3_2”に変更する。すなわち、id変更部13は、新規のid“f3_1”に補助の通し番号「_2」を変えた“f3_2”にidを変更する。
 そして、id重複判定部12は、変換情報リスト23を参照して、変更された新規のid「f3_2」に重複する既存のidがあるか否かを判定する(S230)。変換情報リスト23には、変更された新規のid「f3_2」に重複する既存のidが他のレコードに存在しない。
 そして、id変更部13は、変換後ファイル22内の、変換情報リスト23から取得されたオフセット「35」の位置にある新規のid「f3」を、変更された新規のid「f3_2」に修正する(S240)。加えて、id変更部13は、変換情報リスト23について、id23aを、「f3」から「f3_2」に修正する(S250)。id23aが「f3」から「f3_2」に修正されたので、id変更部13は、新規のid「f3_2」以降のid23aに対応付けられたオフセット23bを、2文字数分加算して得られる値に修正する(S260)。id23aとしての「f3」に対応付けられたオフセット23bは、「45」から「47」に修正される。id23aとしての「f3_1」に対応付けられたオフセット23bは、「60」から「62」に修正される。そして、引き続き、id重複判定部12は、変更された新規のid「f3_2」以降の新規のidの重複判定を繰り返せば良い。
 これにより、変換装置1は、形式変換後のファクトに対応付けられるidの重複チェックに要するメモリ容量を抑制できる。すなわち、変換装置1は、メモリ上にXBRLフォーマットの全てのファクトを展開しないで、変換情報リスト23を利用してidの重複を判定することで、形式変換後のファクトに対応付けられるidの重複チェックに要するメモリ容量を抑制できる。
 なお、id重複判定部12は、変換情報リスト23の先頭から終端に向かってidの重複判定を行うと説明した。しかしながら、id重複判定部12は、これに限定されず、変換情報リスト23の終端から先頭に向かってidの重複判定を行っても良い。かかる場合には、id重複判定部12は、変換情報リスト23を参照して、新規のidに重複する既存のidがあるか否かを判定する。id変更部13は、idの重複がある場合には、当該idを重複しないidに変更し、変更したidを変換後ファイル22および変換情報リスト23に反映する。この際、id変更部13は、変換情報リスト23の、変更されるid以降のidに対応するオフセット23bを修正しなくても良い。これは、変更されるid以降のidは重複判定済みであり、オフセットが使用されないからである。これにより、id変更部13は、idを変更する場合であっても、オフセットを修正しないことで、id変更処理を高速に行うことができる。
[形式変換処理のフローチャート]
 ここで、形式変換部11が実施する形式変換処理のフローチャートの一例を、図7を参照して説明する。図7は、実施例に係る形式変換処理のフローチャートの一例を示す図である。なお、図7では、変換前ファイル21をXBRL形式データのファイルとし、変換後ファイル22をJSON形式データのファイルとする。まず、形式変換部11は、XBRL形式データのファイルからファクトを取得する(ステップS10)。
 形式変換部11は、ファクトがあるか否かを判定する(ステップS11)。ファクトがあると判定した場合には(ステップS11;Yes)、形式変換部11は、ファクトに該ファクトのidがあるか否かを判定する(ステップS12)。ファクトに該ファクトのidがあると判定した場合には(ステップS12;Yes)、形式変換部11は、ステップS14に移行する。
 一方、ファクトに該ファクトのidがないと判定した場合には(ステップS12;No)、形式変換部11は、idの生成規則に従って、新規のidを生成する(ステップS13)。すなわち、形式変換部11は、“f”に出現番号(通し番号)を付加した新規のidを生成する。通し番号は、直前のidに割り振られている通し番号の次の通し番号を示す。そして、形式変換部11は、ステップS14に移行する。ステップS14において、形式変換部11は、JSON形式データにid付きのファクトをJSON形式データのファイルにセットする(ステップS14)。
 そして、形式変換部11は、変換情報リスト23に、idとオフセットとフラグを登録する(ステップS15)。例えば、オフセットには、JSON形式データのファイルの先頭から対象のファクトのidまでの相対位置が設定される。フラグには、新規に生成されたidである場合には、新規に生成されたことを示すフラグ値(例えば「1」)が設定され、既存のidである場合には、既存であることを示すフラグ値(例えば「0」)が設定される。そして、形式変換部11は、次のファクトの処理をすべく、ステップS11に移行する。ステップS11において、ファクトがないと判定した場合には(ステップS11;No)、形式変換部11は、形式変換処理を終了する。
[形式変換処理のフローチャート]
 ここで、id重複判定部12が実施するid重複判定処理およびid変更部13が実施するid変更処理のフローチャートの一例を、図8を参照して説明する。図8は、実施例に係るid重複判定処理およびid変更処理のフローチャートの一例を示す図である。なお、図8では、変換前ファイル21をXBRL形式データのファイルとし、変換後ファイル22をJSON形式データのファイルとする。
 まず、id重複判定部12は、変換情報リスト23から新規のidとオフセットを取得する(ステップS20)。例えば、id重複判定部12は、変換情報リスト23の先頭から終端に向かって、フラグ23cが新規のidであることを示すフラグ値(例えば「1」)に対応するidおよびオフセットを取得する。
 id重複判定部12は、未処理の新規のidがあるか否かを判定する(ステップS21)。未処理の新規のidがあると判定した場合には(ステップS21;Yes)、id重複判定部12は、変換情報リスト23を参照して、新規のidに完全一致の既存idがあるか否かを判定する(ステップS22)。新規のidに完全一致の既存idがないと判定した場合には(ステップS22;No)、id重複判定部12は、次の新規のidを判定すべく、ステップS21に移行する。
 一方、新規のidに完全一致の既存idがあると判定した場合には(ステップS22;Yes)、id変更部13は、このidに対する補助の通し番号(初期値「1」)をカウントアップする(ステップS23)。そして、id変更部13は、idの生成規則に従って、新規のidに“_補助の通し番号”をつけて、新規のidを変更する(ステップS24)。
 さらに、id重複判定部12は、変換情報リスト23を参照して、変更された新規のidに完全一致の既存idがあるか否かを判定する(ステップS25)。変更された新規のidに完全一致の既存idがあると判定した場合には(ステップS25;Yes)、id重複判定部12は、id変更部13に新規のidを変更させるべく、ステップS23に移行する。
 一方、変更された新規のidに完全一致の既存idがないと判定した場合には(ステップS25;No)、id変更部13は、JSON形式データのファイルのファクトのidを修正する(ステップS26)。例えば、id変更部13は、JSON形式データのファイル内の、変換情報リスト23から取得されたオフセットの位置にあるidを、変更した新規のidに修正する。
 そして、id変更部13は、変換情報リスト23のidとオフセットを修正する(ステップS27)。例えば、id変更部13は、変換情報リスト23について、対象の新規のidを、変更した新規のidに修正するとともに、対象の新規のid以降のidに対応付けられたオフセットを、変更した新規のidの文字数に合わせて修正する。そして、id変更部13は、id重複判定部12に次の新規のidを判定させるべく、ステップS21に移行する。ステップS21において、未処理の新規のidがないと判定した場合には(ステップS21;No)、id重複判定部12は、id重複判定処理を終了する。
[実施例の効果]
 上記実施例によれば、変換装置1は、ファイルに含まれる複数のデータの形式を変換する。変換装置1は、変換前ファイル21のデータに該データの識別情報が対応付けられている場合、形式変換後のデータに該識別情報を対応付け、該識別情報が対応付けられていない場合、形式変換後のデータに、新たに生成した識別情報を対応付けるアルゴリズムを、変換前ファイル21に含まれる複数のデータに適用する。変換装置1は、適用した複数のデータに対応する形式変換後の複数のデータを含む他のファイル(変換後ファイル22)を生成する。変換装置1は、他のファイルに含まれる複数のデータそれぞれに対応付けられた識別情報と、該複数のデータそれぞれの他のファイル内の位置との関係情報(変換情報リスト23)を参照して、何れかの識別情報が他のファイル内の複数の位置に対応付けられているか否かを判定する。そして、変換装置1は、何れかの識別情報が他のファイル内の複数の位置に対応付けられている場合、他のファイルに含まれる複数のデータの内、複数の位置の何れかのデータに対応付けられた識別情報を変更する。かかる構成によれば、変換装置1は、形式変換後のデータに対応付けられる識別情報の重複チェックに要するメモリ容量を抑制できる。
 ここで、変換装置1が実施する変換処理の効果を、図9を参照して説明する。図9は、実施例に係る変換処理の効果を説明する図である。図9に示すように、変換装置1は、変換前ファイル21のデータに該データの識別情報(id)が対応付けられている場合、形式変換後のデータに該idを対応付け、該idが対応付けられていない場合、形式変換後のデータに、新たに生成したidを対応付ける。変換装置は、かかるアルゴリズムを変換前ファイル21に含まれる複数のデータに適用して、複数のデータに対応した形式変換後の複数のデータを含む変換後ファイル22を生成する(S300)。そして、変換装置1は、変換後ファイル22に含まれる複数のデータそれぞれに対応付けられたidと、該複数のデータそれぞれの変換後ファイル22内の位置(オフセット)との関係情報(変換情報リスト23)を参照して、何れかのidが変換後ファイル22内の複数のオフセットに対応付けられているか否かを判定する(S310)。そして、変換装置1は、何れかのidが変換後ファイル22内の複数のオフセットに対応付けられている場合、変換後ファイル22に含まれる複数のデータの内、複数のオフセットの何れかのデータに対応付けられたidを変更する(S320)。
 すなわち、変換装置1は、変換前ファイル21から変換後ファイル22を生成してから、変換情報リスト23を参照して、変換後ファイル22内のidの重複チェックを行い、重複している場合に変換後ファイル22内の重複しているidを更新する。これにより、変換装置1は、メモリ上に変換前ファイル21の全てのデータを展開しないで、変換情報リスト23を利用してidの重複を判定することで、変換後ファイル22内のデータに対応付けられるidの重複チェックに要するメモリ容量を抑制できる。
 また、上記実施例によれば、変換装置1は、複数の位置に記述された複数のデータにそれぞれ対応付けられた識別情報の内、新たに生成された識別情報を変更する。かかる構成によれば、変換装置1は、新たに生成された識別情報を変更することで、変換後ファイル22から変換前ファイル21に対してデータをトレースする際に、識別情報を用いて正しくトレースすることができる。すなわち、変換装置1は、変換後ファイル22から変換前ファイル21に対して、データの欠損がないか、正しく変換されているか等を、識別情報を用いて正しくトレースすることができる。
 また、上記実施例によれば、変換装置1は、変換前ファイル21に含まれる複数のデータをそれぞれ読み出したタイミングでアルゴリズムを適用して、形式変換後のデータを変換後ファイル22に追加する。そして、変換装置1は、形式変換後のデータに対応付けられた識別情報と、該データの変換後ファイル22内の位置との関係を、関係情報(変換情報リスト23)に追加する。かかる構成によれば、変換装置1は、変換前ファイル21からデータを読み出したタイミングで、形式変換後のデータに対応付けられた識別情報と、該データの変換後ファイル22内の位置との関係を変換情報リスト23に追加する。この結果、変換装置1は、変換前ファイル21に代えて変換情報リスト23をメモリに展開することで、変換後ファイル22内のデータに対応付けられた識別情報の重複チェックを正しく行うことができる。また、変換装置1は、変換後ファイル22内のデータに対応付けられた識別情報の重複チェックに要するメモリ容量を抑制できる。
[プログラム等]
 なお、実施例では、変換装置1が、財務諸表のXBRL形式データのファイルをJSON形式データのファイルに変換する際に、JSON形式データのidの重複チェックをする場合について説明した。しかしながら、変換装置1は、これに限定されず、財務諸表のXBRL形式データのファイルをCSV形式データのファイルに変換する際に、CSV形式データのidの重複チェックをする場合であっても良い。また、変換装置1は、財務諸表のXBRL形式データのファイルをXML形式データのファイルに変換する際に、XML形式データのidの重複チェックをする場合であっても良い。
 また、実施例では、変換装置1が、財務諸表の変換前ファイル21を変換後ファイル22に変換する際に、変換後ファイル22内のデータのidの重複チェックをする場合について説明した。しかしながら、変換装置1は、財務諸表に限定されず、電子データのidつきの形式変換をする際に、形式変換後のファイル内のデータのidの重複チェックをする場合であっても良い。
 また、変換装置1は、既知のパーソナルコンピュータ、ワークステーション等の情報処理装置に、上記した制御部10と、記憶部20等の各機能を搭載することによって実現することができる。
 また、図示した変換装置1の各構成要素は、必ずしも物理的に図示の如く構成されていることを要しない。すなわち、変換装置1の分散・統合の具体的態様は図示のものに限られず、その全部または一部を、各種の負荷や使用状況等に応じて、任意の単位で機能的または物理的に分散・統合して構成することができる。例えば、id重複判定部12とid変更部13とを1個の部として統合しても良い。一方、形式変換部11を、データを形式変換する変換部と、変換情報リスト23を作成する作成部とに分散しても良い。また、変換前ファイル21、変換後ファイル22および変換情報リスト23等の記憶部20を変換装置1の外部装置としてネットワーク経由で接続するようにしても良い。
 また、上記実施例で説明した各種の処理は、あらかじめ用意されたプログラムをパーソナルコンピュータやワークステーション等のコンピュータで実行することによって実現することができる。そこで、以下では、図1に示した変換装置1と同様の機能を実現する特定プログラムを実行するコンピュータの一例を説明する。図10は、変換プログラムを実行するコンピュータの一例を示す図である。
 図10に示すように、コンピュータ200は、各種演算処理を実行するCPU(Central Processing Unit)203と、ユーザからのデータの入力を受け付ける入力装置215と、表示装置209を制御する表示制御部207を有する。また、コンピュータ200は、記憶媒体からプログラム等を読取るドライブ装置213と、ネットワークを介して他のコンピュータとの間でデータの授受を行う通信制御部217とを有する。また、コンピュータ200は、各種情報を一時記憶するメモリ201と、HDD(Hard Disk Drive)205を有する。そして、メモリ201、CPU203、HDD205、表示制御部207、ドライブ装置213、入力装置215、通信制御部217は、バス219で接続されている。
 ドライブ装置213は、例えばリムーバブルディスク211用の装置である。HDD205は、変換プログラム205aおよび変換処理関連情報205bを記憶する。CPU203は、変換プログラム205aを読み出して、メモリ201に展開する。変換プログラム205aは、変換プロセスとして機能する。
 例えば、変換プロセスは、制御部10の各機能部に対応する。変換処理関連情報205bは、変換前ファイル21、変換後ファイル22および変換情報リスト23に対応する。
 なお、変換プログラム205aについては、必ずしも最初からHDD205に記憶させておかなくても良い。例えば、コンピュータ200に挿入されるフレキシブルディスク(FD)、CD-ROM(Compact Disk Read Only Memory)、DVD(Digital Versatile Disk)、光磁気ディスク、IC(Integrated Circuit)カード等の「可搬用の物理媒体」に当該プログラムを記憶させておく。そして、コンピュータ200がこれらから変換プログラム205aを読み出して実行するようにしても良い。
 1 変換装置
 10 制御部
 11 形式変換部
 12 id重複判定部
 13 id変更部
 20 記憶部
 21 変換前ファイル
 22 変換後ファイル
 23 変換情報リスト

Claims (6)

  1.  ファイルに含まれる複数のデータの形式を変換する変換方法において、
     形式変換前のデータに該データの識別情報が対応付けられている場合、形式変換後のデータに該識別情報を対応付け、該識別情報が対応付けられていない場合、前記形式変換後のデータに、新たに生成した識別情報を対応付けるアルゴリズムを、前記ファイルに含まれる複数のデータに適用して、前記複数のデータに対応した形式変換後の複数のデータを含む他のファイルを生成し、
     前記他のファイルに含まれる複数のデータそれぞれに対応付けられた識別情報と、該複数のデータそれぞれの前記他のファイル内の位置との関係情報を参照して、何れかの識別情報が前記他のファイル内の複数の位置に対応付けられているか否かを判定し、
     前記何れかの識別情報が前記他のファイル内の複数の位置に対応付けられている場合、前記他のファイルに含まれる複数のデータの内、前記複数の位置の何れかのデータに対応付けられた識別情報を変更する、
     処理をコンピュータが実行することを特徴とする変換方法。
  2.  前記変更する処理は、前記複数の位置に記述された複数のデータにそれぞれ対応付けられた識別情報の内、新たに生成された前記識別情報を変更する、
     ことを特徴とする請求項1に記載の変換方法。
  3.  前記生成する処理は、前記ファイルに含まれる複数のデータをそれぞれ読み出したタイミングで前記アルゴリズムを適用して、前記形式変換後のデータを前記他のファイルに追加し、前記形式変換後のデータに対応付けられた識別情報と、該データの前記他のファイル内の位置との関係を、前記関係情報に追加する
     ことを特徴とする請求項1に記載の変換方法。
  4.  前記ファイルはXBRL形式であり、前記他のファイルはJSON形式である、
     ことを特徴とする請求項1に記載の変換方法。
  5.  ファイルに含まれる複数のデータの形式を変換する変換装置において、
     形式変換前のデータに該データの識別情報が対応付けられている場合、形式変換後のデータに該識別情報を対応付け、該識別情報が対応付けられていない場合、前記形式変換後のデータに、新たに生成した識別情報を対応付けるアルゴリズムを、前記ファイルに含まれる複数のデータに適用して、前記複数のデータに対応した形式変換後の複数のデータを含む他のファイルを生成する生成部と、
     前記他のファイルに含まれる複数のデータそれぞれに対応付けられた識別情報と、該複数のデータそれぞれの前記他のファイル内の位置との関係情報を参照して、何れかの識別情報が前記他のファイル内の複数の位置に対応付けられているか否かを判定する判定部と、
     前記何れかの識別情報が前記他のファイル内の複数の位置に対応付けられている場合、前記他のファイルに含まれる複数のデータの内、前記複数の位置の何れかのデータに対応付けられた識別情報を変更する変更部と、
     を有することを特徴とする変換装置。
  6.  ファイルに含まれる複数のデータの形式を変換する際に、形式変換前のデータに該データの識別情報が対応付けられている場合、形式変換後のデータに該識別情報を対応付け、該識別情報が対応付けられていない場合、前記形式変換後のデータに、新たに生成した識別情報を対応付けるアルゴリズムを、前記ファイルに含まれる複数のデータに適用して、前記複数のデータに対応した形式変換後の複数のデータを含む他のファイルを生成し、
     前記他のファイルに含まれる複数のデータそれぞれに対応付けられた識別情報と、該複数のデータそれぞれの前記他のファイル内の位置との関係情報を参照して、何れかの識別情報が前記他のファイル内の複数の位置に対応付けられているか否かを判定し、
     前記何れかの識別情報が前記他のファイル内の複数の位置に対応付けられている場合、前記他のファイルに含まれる複数のデータの内、前記複数の位置の何れかのデータに対応付けられた識別情報を変更する、
     処理をコンピュータに実行させることを特徴とする変換プログラム。
PCT/JP2018/038004 2018-10-11 2018-10-11 変換方法、変換装置および変換プログラム WO2020075282A1 (ja)

Priority Applications (4)

Application Number Priority Date Filing Date Title
PCT/JP2018/038004 WO2020075282A1 (ja) 2018-10-11 2018-10-11 変換方法、変換装置および変換プログラム
EP18936342.7A EP3866050B1 (en) 2018-10-11 2018-10-11 Conversion method, conversion apparatus, and conversion program
JP2020549915A JP7163966B2 (ja) 2018-10-11 2018-10-11 変換方法、変換装置および変換プログラム
US17/223,011 US11392539B2 (en) 2018-10-11 2021-04-06 Conversion method, conversion apparatus, and recording medium

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
PCT/JP2018/038004 WO2020075282A1 (ja) 2018-10-11 2018-10-11 変換方法、変換装置および変換プログラム

Related Child Applications (1)

Application Number Title Priority Date Filing Date
US17/223,011 Continuation US11392539B2 (en) 2018-10-11 2021-04-06 Conversion method, conversion apparatus, and recording medium

Publications (1)

Publication Number Publication Date
WO2020075282A1 true WO2020075282A1 (ja) 2020-04-16

Family

ID=70164637

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/JP2018/038004 WO2020075282A1 (ja) 2018-10-11 2018-10-11 変換方法、変換装置および変換プログラム

Country Status (4)

Country Link
US (1) US11392539B2 (ja)
EP (1) EP3866050B1 (ja)
JP (1) JP7163966B2 (ja)
WO (1) WO2020075282A1 (ja)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20220300467A1 (en) * 2019-09-26 2022-09-22 Mitsubishi Electric Corporation Storage medium, learning device, and data collection system

Families Citing this family (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
KR102102892B1 (ko) * 2018-06-19 2020-04-21 네이버웹툰 주식회사 컨텐츠 유출 방지 방법, 장치 및 프로그램
US20230306125A1 (en) * 2022-03-28 2023-09-28 Data Solutions LLC Data Transformation Engine

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP2005352774A (ja) * 2004-06-10 2005-12-22 Nippon Yunishisu Kk 情報処理装置及び情報処理装置の制御方法、コンピュータプログラム及び記憶媒体
WO2011089683A1 (ja) 2010-01-19 2011-07-28 富士通株式会社 解析方法、解析装置及び解析プログラム
US20140013204A1 (en) * 2012-06-18 2014-01-09 Novaworks, LLC Method and apparatus for sychronizing financial reporting data

Family Cites Families (13)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6779030B1 (en) * 1997-10-06 2004-08-17 Worldcom, Inc. Intelligent network
US20070078877A1 (en) * 2005-04-20 2007-04-05 Howard Ungar XBRL data conversion
US8595616B2 (en) * 2007-05-31 2013-11-26 Bank Of America Corporation Data conversion environment
WO2012033602A1 (en) * 2010-08-11 2012-03-15 Steven Nielsen Methods, apparatus and systems for facilitating generation and assessment of engineering plans
WO2012122122A1 (en) * 2011-03-07 2012-09-13 Health Fidelity, Inc. Systems and methods for processing patient history data
WO2014010029A1 (ja) * 2012-07-10 2014-01-16 富士通株式会社 プログラム、マッピング装置およびマッピング方法
US10289954B2 (en) * 2015-01-06 2019-05-14 Accenture Global Services Limited Power distribution transformer load prediction analysis system
JP6528841B2 (ja) * 2015-02-20 2019-06-12 富士通株式会社 抽出プログラム、抽出装置および抽出方法
US11151152B2 (en) * 2016-02-29 2021-10-19 Microsoft Technology Licensing, Llc Creating mappings between records in a database to normalized questions in a computerized document
WO2018039938A1 (zh) * 2016-08-30 2018-03-08 清华大学 将数据进行生物存储并还原的方法
US20180330331A1 (en) * 2017-05-10 2018-11-15 Accenture Global Solutions Limited Processing relationally mapped data to generate contextual recommendations
US11263088B2 (en) * 2017-09-14 2022-03-01 Commvault Systems, Inc. Distributed architecture for tracking content indexing
US10839215B2 (en) * 2018-05-21 2020-11-17 Electronic Arts Inc. Artificial intelligence for emulating human playstyles

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP2005352774A (ja) * 2004-06-10 2005-12-22 Nippon Yunishisu Kk 情報処理装置及び情報処理装置の制御方法、コンピュータプログラム及び記憶媒体
WO2011089683A1 (ja) 2010-01-19 2011-07-28 富士通株式会社 解析方法、解析装置及び解析プログラム
US20140013204A1 (en) * 2012-06-18 2014-01-09 Novaworks, LLC Method and apparatus for sychronizing financial reporting data

Non-Patent Citations (1)

* Cited by examiner, † Cited by third party
Title
See also references of EP3866050A4

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20220300467A1 (en) * 2019-09-26 2022-09-22 Mitsubishi Electric Corporation Storage medium, learning device, and data collection system

Also Published As

Publication number Publication date
EP3866050A4 (en) 2021-10-13
EP3866050B1 (en) 2023-07-26
US20210224223A1 (en) 2021-07-22
US11392539B2 (en) 2022-07-19
EP3866050A1 (en) 2021-08-18
JPWO2020075282A1 (ja) 2021-09-24
JP7163966B2 (ja) 2022-11-01

Similar Documents

Publication Publication Date Title
WO2020075282A1 (ja) 変換方法、変換装置および変換プログラム
CN106933703B (zh) 一种数据库数据备份的方法、装置及电子设备
CN112380138B (zh) 一种测试用例的编写方法、装置及存储介质
CN106372002B (zh) 一种数据存储方法及读取还原方法
JP2016009344A (ja) テストケース生成プログラム、テストケース生成方法、及びテストケース生成装置
CN110059088B (zh) 一种块链式账本中的数据属性标识方法、装置及设备
CN106874173B (zh) 页面模板的测试方法和装置
CN110059087B (zh) 一种块链式账本中的数据属性标识方法、装置及设备
WO2021022702A1 (zh) 日志插入方法、装置、计算机装置及存储介质
US11507367B2 (en) Firmware update method and firmware update system thereof
JP5808264B2 (ja) コード生成装置及びコード生成方法及びプログラム
WO2020240873A1 (ja) 検証方法、情報処理装置及び検証プログラム
JPWO2017199309A1 (ja) 評価プログラム、評価装置および評価方法
US20110246507A1 (en) Search apparatus and search method
JP6699433B2 (ja) データ管理プログラム、装置、及び方法
JP5516277B2 (ja) テストケース関係抽出方法、テストケース関係抽出装置及びテストケース関係抽出プログラム
US11829329B2 (en) Device, method and non-transitory computer readable medium for writing image files into memories
JP2013228791A (ja) ソフトウェア冗長化装置及び方法
CN112035890B (zh) 一种数据完整性验证方法及装置
JP6888336B2 (ja) スタブ生成装置、方法、及びプログラム
WO2021097785A1 (zh) 数据序列化、数据反序列化方法、装置和计算机设备
WO2020067313A1 (ja) 固有表現抽出装置、方法および記憶媒体
JP4120879B2 (ja) プログラム生成システム及び方法とそのプログラム
JP5310292B2 (ja) 遷移正当性判定プログラム、遷移正当性判定装置および遷移正当性判定方法
CN117349558A (zh) 页面静态资源更新方法、装置、设备及存储介质

Legal Events

Date Code Title Description
ENP Entry into the national phase

Ref document number: 2020549915

Country of ref document: JP

Kind code of ref document: A

NENP Non-entry into the national phase

Ref country code: DE

ENP Entry into the national phase

Ref document number: 2018936342

Country of ref document: EP

Effective date: 20210511

121 Ep: the epo has been informed by wipo that ep was designated in this application

Ref document number: 18936342

Country of ref document: EP

Kind code of ref document: A1