Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add documentation for is_anycast in the web services #1064

Merged
merged 1 commit into from
Nov 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions content/geoip/docs/web-services/_examples/geoip.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ export const city = {
autonomous_system_organization: 'Linkem IR WiMax Network',
connection_type: "Cable/DSL",
domain: 'example.com',
is_anycast: true,
isp: 'Linkem spa',
mobile_country_code: '310',
mobile_network_code: '004',
Expand Down
11 changes: 11 additions & 0 deletions content/geoip/docs/web-services/_schemas/ResponseTraits.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,17 @@ import responseJson from '../_examples/geoip';

</Property>

<Property
name="is_anycast"
services={[
'city',
'insights',
]}
>
This is `true` if the IP address belongs to an [anycast network](https://en.wikipedia.org/wiki/Anycast).

</Property>

<Property
name="is_hosting_provider"
services={[
Expand Down
1 change: 1 addition & 0 deletions content/minfraud/api-documentation/_examples/response.ts
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ export const insights = {
is_anonymous: true,
is_anonymous_proxy: true,
is_anonymous_vpn: true,
is_anycast: true,
is_hosting_provider: true,
is_public_proxy: true,
is_residential_proxy: true,
Expand Down
Loading