Apideck · Schema

CompaniesFilter

IntegrationsUnified API

Properties

Name Type Description
name string Name of the company to filter on
updated_since string
created_since string
View JSON Schema on GitHub

JSON Schema

apideck-companiesfilter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CompaniesFilter",
  "title": "CompaniesFilter",
  "type": "object",
  "x-apideck-schema-id": "CompaniesFilter",
  "example": {
    "name": "SpaceX",
    "updated_since": "2020-09-30T07:43:32.000Z",
    "created_since": "2020-09-30T07:43:32.000Z"
  },
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the company to filter on",
      "example": "SpaceX"
    },
    "updated_since": {
      "type": "string",
      "title": "Updated since (timestamp)",
      "format": "date-time",
      "example": "2020-09-30T07:43:32.000Z"
    },
    "created_since": {
      "type": "string",
      "title": "Created since (timestamp)",
      "format": "date-time",
      "example": "2020-09-30T07:43:32.000Z"
    }
  },
  "additionalProperties": false
}