### JSON Format for Multiple Projects Policy IDs Source: https://github.com/dexhunterio/policyids/blob/main/README.md This JSON snippet demonstrates the structure for submitting policy IDs for multiple projects within a single file. It is an array of objects, where each object represents a distinct project with its 'project' name and an array of 'policies' (policy ID strings). ```json [ { "project": "YourFirstProjectName", "policies": [ "abcdefghijkklmnopqrstuvwxyzabcdefghijkklmnopqrstuvwxyzab", "abcdefghijkklmnopqrstuvwxyzabcdefghijkklmnopqrstuvwxyzab", "abcdefghijkklmnopqrstuvwxyzabcdefghijkklmnopqrstuvwxyzab" ] }, { "project": "YourSecondProjectName", "policies": [ "abcdefghijkklmnopqrstuvwxyzabcdefghijkklmnopqrstuvwxyzab", "abcdefghijkklmnopqrstuvwxyzabcdefghijkklmnopqrstuvwxyzab", "abcdefghijkklmnopqrstuvwxyzabcdefghijkklmnopqrstuvwxyzab" ] } ] ``` -------------------------------- ### JSON Format for Single Project Policy IDs Source: https://github.com/dexhunterio/policyids/blob/main/README.md This JSON snippet shows the required structure for submitting policy IDs for a single project. It is an array containing one object, which must have a 'project' key for the project name and a 'policies' key containing an array of policy ID strings. ```json [ { "project": "YourFirstProjectName", "policies": [ "abcdefghijkklmnopqrstuvwxyzabcdefghijkklmnopqrstuvwxyzab", "abcdefghijkklmnopqrstuvwxyzabcdefghijkklmnopqrstuvwxyzab", "abcdefghijkklmnopqrstuvwxyzabcdefghijkklmnopqrstuvwxyzab" ] } ] ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.