Module:Lua json: Difference between revisions

From Visual Data Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(8 intermediate revisions by the same user not shown)
Line 2: Line 2:


function p.getProjectData()
function p.getProjectData()
     local jsonPage = mw.title.new("Data:Project/41")
     local jsonPage = mw.title.new("Entry:Datasets/Dataset")
     if jsonPage and jsonPage.exists then
     if jsonPage and jsonPage.exists then
         local content = jsonPage:getContent()
         local content = jsonPage:getContent()
         local jsonData = mw.text.jsonDecode(content)
         local jsonData = mw.text.jsonDecode(content)
         if jsonData and jsonData.schemas and jsonData.schemas.Project then
         if jsonData and jsonData.schemas and jsonData.schemas.Dataset then
             return jsonData.schemas.Project.description
             return jsonData.schemas.Dataset.date
         else
         else
             return "Error: Invalid JSON structure"
             return "Error: Invalid JSON structure"

Latest revision as of 10:33, 2 May 2024

Documentation for this module may be created at Module:Lua json/doc

local p = {}

function p.getProjectData()
    local jsonPage = mw.title.new("Entry:Datasets/Dataset")
    if jsonPage and jsonPage.exists then
        local content = jsonPage:getContent()
        local jsonData = mw.text.jsonDecode(content)
        if jsonData and jsonData.schemas and jsonData.schemas.Dataset then
            return jsonData.schemas.Dataset.date
        else
            return "Error: Invalid JSON structure"
        end
    else
        return "Error: JSON page does not exist"
    end
end

return p