Abstract API · Schema

FlagInfo

AvatarsCompany EnrichmentContactsCurrenciesEmail ValidationExchange RatesIBAN ValidationImage ProcessingIP GeolocationIP IntelligencePhone ValidationPublic HolidaysScreenshotsTimezonesVAT ValidationWeb Scraping

Properties

Name Type Description
emoji string Flag emoji
unicode string Unicode code points for the flag
png string URL to PNG flag image
svg string URL to SVG flag image
View JSON Schema on GitHub

JSON Schema

abstract-api-flaginfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlagInfo",
  "title": "FlagInfo",
  "type": "object",
  "properties": {
    "emoji": {
      "type": "string",
      "description": "Flag emoji",
      "example": "\ud83c\uddfa\ud83c\uddf8"
    },
    "unicode": {
      "type": "string",
      "description": "Unicode code points for the flag",
      "example": "U+1F1FA U+1F1F8"
    },
    "png": {
      "type": "string",
      "format": "uri",
      "description": "URL to PNG flag image",
      "example": "https://static.abstractapi.com/country-flags/US_flag.png"
    },
    "svg": {
      "type": "string",
      "format": "uri",
      "description": "URL to SVG flag image",
      "example": "https://static.abstractapi.com/country-flags/US_flag.svg"
    }
  }
}