maximedrn/opensea-automatic-bulk-upload-and-sale

"Your file is poorly structured for this NFT."

marciliocarvalho opened this issue · 2 comments

Hello.
I'm trying to upload my collection, but it always gives this error. I already made sure the file path is correct, as well as its name.

NFT n°1/1:
Your file is poorly structured for this NFT.
Check that elements are present and in the right order.

Your file is poorly structured for this NFT. means that some details are missing.
You must have this structure with all elements (even if empty) :

{
    "nft": [
        {
            "file_path": "",
            "nft_name": "",
            "external_link": "",
            "description": "",
            "collection": "",
            "properties": [],
            "levels": [],
            "stats": [],
            "unlockable_content": [
                false,
                ""
            ],
            "explicit_and_sensitive_content": false,
            "supply": 0,
            "blockchain": "",
            "sale_type": "",
            "price": 0,
            "method": [],
            "duration": [],
            "specific_buyer": "",
            "quantity": 0
        }
    ]
}

Works! Thanks!!!