Applescript? I don’t think so. AppleScript Studio? Definitely!
This script splits the opened files in name, descriptions and contents:
-- get files
set myFiles to (choose file with prompt "Choose all files to open" with multiple selections allowed)
set structuresData to {}
repeat with i in myFiles
-- read file
set theData to (read i) as string
-- get name
set nameOfStructure to (paragraph 5 of theData) as string -- replace with right paragraph
set nameOfStructure to (characters 6 thru -1 of nameOfStructure) as string -- get name without "name:"
-- get description
set descriptionOfStructure to (paragraph 6 of theData) as string -- replace with right paragraph
set descriptionOfStructure to (characters 13 thru -1 of descriptionOfStructure) as string -- get description without "description:"
-- get contents
set contentsOfStructure to (paragraphs 7 thru -1 of theData) -- replace with right start paragraph
set newContentsOfStructure to {}
repeat with z in contentsOfStructure
set end of newContentsOfStructure to (z as string)
set end of newContentsOfStructure to return
end repeat
set contentsOfStructure to newContentsOfStructure
set end of structuresData to {nameOfStructure, descriptionOfStructure, contentsOfStructure}
end repeat
get structuresData