{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "PrefixListRequest", "description": "PrefixListRequest schema from Palo Alto Networks Cloud NGFW for AWS REST API", "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/cloud-ngfw-api-prefix-list-request-schema.json", "type": "object", "properties": { "PrefixListName": { "type": "string" }, "PrefixListEntry": { "type": "object", "required": [ "PrefixList" ], "properties": { "Description": { "type": "string" }, "PrefixList": { "type": "array", "items": { "type": "string" } } } } }, "required": [ "PrefixListName", "PrefixListEntry" ] }