{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "ServiceGroup", "description": "A group of service objects for use in security policy rules.", "$id": "https://raw.githubusercontent.com/api-evangelist/palo-alto-networks/refs/heads/main/json-schema/pan-os-rest-api-service-group-schema.json", "type": "object", "properties": { "@name": { "type": "string", "description": "Unique name of the service group." }, "members": { "type": "object", "properties": { "member": { "type": "array", "items": { "type": "string" }, "description": "List of service object names." } } }, "tag": { "type": "object", "properties": { "member": { "type": "array", "items": { "type": "string" } } } } } }