{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/firewall_asn_configuration", "title": "An ASN configuration.", "properties": { "target": { "description": "The configuration target. You must set the target to `asn` when specifying an Autonomous System Number (ASN) in the rule.", "enum": [ "asn" ], "example": "asn" }, "value": { "description": "The AS number to match.", "example": "AS12345", "type": "string" } } }