APIs.io · Schema

Contact

Information on contacting the API support

API AggregationAPI DirectoryAPI DiscoveryAPI IndexingAPI RatingAPI SearchAPIs.jsonSearch Engine

Properties

Name Type Description
FN string
email string
organizationName string
adr string
tel string
X-github string
photo string
vCard string
url string
View JSON Schema on GitHub

JSON Schema

apis-io-search-contact-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apis-io/refs/heads/main/json-schema/apis-io-search-contact-schema.json",
  "title": "Contact",
  "description": "Information on contacting the API support",
  "required": [
    "FN"
  ],
  "properties": {
    "FN": {
      "type": "string",
      "minLength": 1
    },
    "email": {
      "type": "string",
      "format": "email"
    },
    "organizationName": {
      "type": "string",
      "minLength": 1
    },
    "adr": {
      "type": "string"
    },
    "tel": {
      "type": "string",
      "minLength": 1
    },
    "X-github": {
      "type": "string"
    },
    "photo": {
      "type": "string",
      "pattern": "^(http)|(https)://(.*)$"
    },
    "vCard": {
      "type": "string",
      "pattern": "^(http)|(https)://(.*)$"
    },
    "url": {
      "type": "string",
      "pattern": "^(http)|(https)://(.*)$"
    }
  },
  "type": "object"
}