openapi: 3.2.0 info: title: Crunchbase Data Entity API version: 1.1.0 contact: email: partnerships@crunchbase.com termsOfService: https://data.crunchbase.com/docs/terms description: 'Operations tagged Entity across 6 of this provider''s published API definitions: crunchbase-data-advanced-financials-openapi.yml, crunchbase-data-core-financials-openapi.yml, crunchbase-data-firmographic-openapi.yml, crunchbase-data-insights-openapi.yml, crunchbase-data-predictions-insights-openapi.yml, crunchbase-data-predictions-openapi.yml. Each path carries the servers of the definition it was published in.' servers: - url: https://api.crunchbase.com/v4 security: - ApiKeyAuthHeader: [] tags: - name: Entity paths: /data/entities/organizations/{entity_id}: get: tags: - Entity summary: Lookup an Organization operationId: getOrganization parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/OrganizationFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - acquiree_acquisitions - acquirer_acquisitions - child_organizations - child_ownerships - event_appearances - fields - founders - headquarters_address - investors - ipos - jobs - parent_organization - parent_ownership - participated_funding_rounds - participated_funds - participated_investments - press_references - raised_funding_rounds - raised_funds - raised_investments responses: '200': $ref: '#/components/responses/EntityLookupOrganizationResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/organizations/{entity_id}/cards/{card_id}: get: tags: - Entity summary: Lookup Organization's single card description: 'The following cards are available: [acquiree_acquisitions, acquirer_acquisitions, child_organizations, child_ownerships, event_appearances, founders, headquarters_address, investors, ipos, jobs, parent_organization, parent_ownership, participated_funding_rounds, participated_funds, participated_investments, press_references, raised_funding_rounds, raised_funds, raised_investments]' operationId: getOrganizationCard parameters: - $ref: '#/components/parameters/entity_id' - name: card_id in: path description: An organization card to lookup required: true style: simple explode: false schema: title: card_id type: string enum: - acquiree_acquisitions - acquirer_acquisitions - child_organizations - child_ownerships - event_appearances - founders - headquarters_address - investors - ipos - jobs - parent_organization - parent_ownership - participated_funding_rounds - participated_funds - participated_investments - press_references - raised_funding_rounds - raised_funds - raised_investments - $ref: '#/components/parameters/card_field_ids' - $ref: '#/components/parameters/after_id' - $ref: '#/components/parameters/before_id' - $ref: '#/components/parameters/order' - $ref: '#/components/parameters/limit' responses: '200': $ref: '#/components/responses/OrganizationCardLookupResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/people/{entity_id}: get: tags: - Entity summary: Lookup a Person operationId: getPerson parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/PersonFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - degrees - event_appearances - fields - founded_organizations - jobs - participated_funding_rounds - participated_funds - participated_investments - partner_funding_rounds - partner_investments - press_references - primary_job - primary_organization responses: '200': $ref: '#/components/responses/EntityLookupPersonResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/people/{entity_id}/cards/{card_id}: get: tags: - Entity summary: Lookup Person's single card description: 'The following cards are available: [degrees, event_appearances, founded_organizations, jobs, participated_funding_rounds, participated_funds, participated_investments, partner_funding_rounds, partner_investments, press_references, primary_job, primary_organization]' operationId: getPersonCard parameters: - $ref: '#/components/parameters/entity_id' - name: card_id in: path description: A person card to lookup required: true style: simple explode: false schema: title: card_id type: string enum: - degrees - event_appearances - founded_organizations - jobs - participated_funding_rounds - participated_funds - participated_investments - partner_funding_rounds - partner_investments - press_references - primary_job - primary_organization - $ref: '#/components/parameters/card_field_ids' - $ref: '#/components/parameters/after_id' - $ref: '#/components/parameters/before_id' - $ref: '#/components/parameters/order' - $ref: '#/components/parameters/limit' responses: '200': $ref: '#/components/responses/PersonCardLookupResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/funding_rounds/{entity_id}: get: tags: - Entity summary: Lookup a FundingRound operationId: getFundingRound parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/FundingRoundFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - fields - investments - investors - lead_investors - organization - partners - press_references responses: '200': $ref: '#/components/responses/EntityLookupFundingRoundResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/funding_rounds/{entity_id}/cards/{card_id}: get: tags: - Entity summary: Lookup FundingRound's single card description: 'The following cards are available: [investments, investors, lead_investors, organization, partners, press_references]' operationId: getFundingRoundCard parameters: - $ref: '#/components/parameters/entity_id' - name: card_id in: path description: A funding_round card to lookup required: true style: simple explode: false schema: title: card_id type: string enum: - investments - investors - lead_investors - organization - partners - press_references - $ref: '#/components/parameters/card_field_ids' - $ref: '#/components/parameters/after_id' - $ref: '#/components/parameters/before_id' - $ref: '#/components/parameters/order' - $ref: '#/components/parameters/limit' responses: '200': $ref: '#/components/responses/FundingRoundCardLookupResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/acquisitions/{entity_id}: get: tags: - Entity summary: Lookup an Acquisition operationId: getAcquisition parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/AcquisitionFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - acquiree_organization - acquirer_organization - fields - press_references responses: '200': $ref: '#/components/responses/EntityLookupAcquisitionResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/acquisitions/{entity_id}/cards/{card_id}: get: tags: - Entity summary: Lookup Acquisition's single card description: 'The following cards are available: [acquiree_organization, acquirer_organization, press_references]' operationId: getAcquisitionCard parameters: - $ref: '#/components/parameters/entity_id' - name: card_id in: path description: An acquisition card to lookup required: true style: simple explode: false schema: title: card_id type: string enum: - acquiree_organization - acquirer_organization - press_references - $ref: '#/components/parameters/card_field_ids' - $ref: '#/components/parameters/after_id' - $ref: '#/components/parameters/before_id' - $ref: '#/components/parameters/order' - $ref: '#/components/parameters/limit' responses: '200': $ref: '#/components/responses/AcquisitionCardLookupResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/investments/{entity_id}: get: tags: - Entity summary: Lookup an Investment operationId: getInvestment parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/InvestmentFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - fields - funding_round - investor - organization - partner responses: '200': $ref: '#/components/responses/EntityLookupInvestmentResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/investments/{entity_id}/cards/{card_id}: get: tags: - Entity summary: Lookup Investment's single card description: 'The following cards are available: [funding_round, investor, organization, partner]' operationId: getInvestmentCard parameters: - $ref: '#/components/parameters/entity_id' - name: card_id in: path description: An investment card to lookup required: true style: simple explode: false schema: title: card_id type: string enum: - funding_round - investor - organization - partner - $ref: '#/components/parameters/card_field_ids' - $ref: '#/components/parameters/after_id' - $ref: '#/components/parameters/before_id' - $ref: '#/components/parameters/order' - $ref: '#/components/parameters/limit' responses: '200': $ref: '#/components/responses/InvestmentCardLookupResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/events/{entity_id}: get: tags: - Entity summary: Lookup an Event operationId: getEvent parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/EventFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - address - appearances - contestants - exhibitors - fields - organizers - press_references - speakers - sponsors responses: '200': $ref: '#/components/responses/EntityLookupEventResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/events/{entity_id}/cards/{card_id}: get: tags: - Entity summary: Lookup Event's single card description: 'The following cards are available: [address, appearances, contestants, exhibitors, organizers, press_references, speakers, sponsors]' operationId: getEventCard parameters: - $ref: '#/components/parameters/entity_id' - name: card_id in: path description: An event card to lookup required: true style: simple explode: false schema: title: card_id type: string enum: - address - appearances - contestants - exhibitors - organizers - press_references - speakers - sponsors - $ref: '#/components/parameters/card_field_ids' - $ref: '#/components/parameters/after_id' - $ref: '#/components/parameters/before_id' - $ref: '#/components/parameters/order' - $ref: '#/components/parameters/limit' responses: '200': $ref: '#/components/responses/EventCardLookupResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/press_references/{entity_id}: get: tags: - Entity summary: Lookup a PressReference operationId: getPressReference parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/PressReferenceFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - fields responses: '200': $ref: '#/components/responses/EntityLookupPressReferenceResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/funds/{entity_id}: get: tags: - Entity summary: Lookup a Fund operationId: getFund parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/FundFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - fields - investors - owner - press_references responses: '200': $ref: '#/components/responses/EntityLookupFundResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/funds/{entity_id}/cards/{card_id}: get: tags: - Entity summary: Lookup Fund's single card description: 'The following cards are available: [investors, owner, press_references]' operationId: getFundCard parameters: - $ref: '#/components/parameters/entity_id' - name: card_id in: path description: A fund card to lookup required: true style: simple explode: false schema: title: card_id type: string enum: - investors - owner - press_references - $ref: '#/components/parameters/card_field_ids' - $ref: '#/components/parameters/after_id' - $ref: '#/components/parameters/before_id' - $ref: '#/components/parameters/order' - $ref: '#/components/parameters/limit' responses: '200': $ref: '#/components/responses/FundCardLookupResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/event_appearances/{entity_id}: get: tags: - Entity summary: Lookup an EventAppearance operationId: getEventAppearance parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/EventAppearanceFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - event - fields - participant responses: '200': $ref: '#/components/responses/EntityLookupEventAppearanceResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/event_appearances/{entity_id}/cards/{card_id}: get: tags: - Entity summary: Lookup EventAppearance's single card description: 'The following cards are available: [event, participant]' operationId: getEventAppearanceCard parameters: - $ref: '#/components/parameters/entity_id' - name: card_id in: path description: An event_appearance card to lookup required: true style: simple explode: false schema: title: card_id type: string enum: - event - participant - $ref: '#/components/parameters/card_field_ids' - $ref: '#/components/parameters/after_id' - $ref: '#/components/parameters/before_id' - $ref: '#/components/parameters/order' - $ref: '#/components/parameters/limit' responses: '200': $ref: '#/components/responses/EventAppearanceCardLookupResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/ipos/{entity_id}: get: tags: - Entity summary: Lookup an Ipo operationId: getIpo parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/IpoFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - fields - organization - press_references responses: '200': $ref: '#/components/responses/EntityLookupIpoResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/ipos/{entity_id}/cards/{card_id}: get: tags: - Entity summary: Lookup Ipo's single card description: 'The following cards are available: [organization, press_references]' operationId: getIpoCard parameters: - $ref: '#/components/parameters/entity_id' - name: card_id in: path description: An ipo card to lookup required: true style: simple explode: false schema: title: card_id type: string enum: - organization - press_references - $ref: '#/components/parameters/card_field_ids' - $ref: '#/components/parameters/after_id' - $ref: '#/components/parameters/before_id' - $ref: '#/components/parameters/order' - $ref: '#/components/parameters/limit' responses: '200': $ref: '#/components/responses/IpoCardLookupResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/ownerships/{entity_id}: get: tags: - Entity summary: Lookup an Ownership operationId: getOwnership parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/OwnershipFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - child_organization - fields - parent_organization - press_references responses: '200': $ref: '#/components/responses/EntityLookupOwnershipResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/ownerships/{entity_id}/cards/{card_id}: get: tags: - Entity summary: Lookup Ownership's single card description: 'The following cards are available: [child_organization, parent_organization, press_references]' operationId: getOwnershipCard parameters: - $ref: '#/components/parameters/entity_id' - name: card_id in: path description: An ownership card to lookup required: true style: simple explode: false schema: title: card_id type: string enum: - child_organization - parent_organization - press_references - $ref: '#/components/parameters/card_field_ids' - $ref: '#/components/parameters/after_id' - $ref: '#/components/parameters/before_id' - $ref: '#/components/parameters/order' - $ref: '#/components/parameters/limit' responses: '200': $ref: '#/components/responses/OwnershipCardLookupResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/categories/{entity_id}: get: tags: - Entity summary: Lookup a Category operationId: getCategory parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/CategoryFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - fields responses: '200': $ref: '#/components/responses/EntityLookupCategoryResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/category_groups/{entity_id}: get: tags: - Entity summary: Lookup a CategoryGroup operationId: getCategoryGroup parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/CategoryGroupFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - fields responses: '200': $ref: '#/components/responses/EntityLookupCategoryGroupResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/locations/{entity_id}: get: tags: - Entity summary: Lookup a Location operationId: getLocation parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/LocationFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - fields responses: '200': $ref: '#/components/responses/EntityLookupLocationResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/jobs/{entity_id}: get: tags: - Entity summary: Lookup a Job operationId: getJob parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/JobFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - fields - organization - person responses: '200': $ref: '#/components/responses/EntityLookupJobResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/jobs/{entity_id}/cards/{card_id}: get: tags: - Entity summary: Lookup Job's single card description: 'The following cards are available: [organization, person]' operationId: getJobCard parameters: - $ref: '#/components/parameters/entity_id' - name: card_id in: path description: A job card to lookup required: true style: simple explode: false schema: title: card_id type: string enum: - organization - person - $ref: '#/components/parameters/card_field_ids' - $ref: '#/components/parameters/after_id' - $ref: '#/components/parameters/before_id' - $ref: '#/components/parameters/order' - $ref: '#/components/parameters/limit' responses: '200': $ref: '#/components/responses/JobCardLookupResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/addresses/{entity_id}: get: tags: - Entity summary: Lookup an Address operationId: getAddress parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/AddressFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - event - fields - organization responses: '200': $ref: '#/components/responses/EntityLookupAddressResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/addresses/{entity_id}/cards/{card_id}: get: tags: - Entity summary: Lookup Address's single card description: 'The following cards are available: [event, organization]' operationId: getAddressCard parameters: - $ref: '#/components/parameters/entity_id' - name: card_id in: path description: An address card to lookup required: true style: simple explode: false schema: title: card_id type: string enum: - event - organization - $ref: '#/components/parameters/card_field_ids' - $ref: '#/components/parameters/after_id' - $ref: '#/components/parameters/before_id' - $ref: '#/components/parameters/order' - $ref: '#/components/parameters/limit' responses: '200': $ref: '#/components/responses/AddressCardLookupResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/degrees/{entity_id}: get: tags: - Entity summary: Lookup a Degree operationId: getDegree parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/DegreeFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - fields - organization - person responses: '200': $ref: '#/components/responses/EntityLookupDegreeResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/degrees/{entity_id}/cards/{card_id}: get: tags: - Entity summary: Lookup Degree's single card description: 'The following cards are available: [organization, person]' operationId: getDegreeCard parameters: - $ref: '#/components/parameters/entity_id' - name: card_id in: path description: A degree card to lookup required: true style: simple explode: false schema: title: card_id type: string enum: - organization - person - $ref: '#/components/parameters/card_field_ids' - $ref: '#/components/parameters/after_id' - $ref: '#/components/parameters/before_id' - $ref: '#/components/parameters/order' - $ref: '#/components/parameters/limit' responses: '200': $ref: '#/components/responses/DegreeCardLookupResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/diversity_spotlights/{entity_id}: get: tags: - Entity summary: Lookup a DiversitySpotlight operationId: getDiversitySpotlight parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/DiversitySpotlightFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - fields responses: '200': $ref: '#/components/responses/EntityLookupDiversitySpotlightResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/principals/{entity_id}: get: tags: - Entity summary: Lookup a Principal operationId: getPrincipal parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/PrincipalFieldId' responses: '200': $ref: '#/components/responses/EntityLookupPrincipalResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/categories/{entity_id}/cards/{card_id}: get: tags: - Entity summary: Lookup Category's single card description: 'The following cards are available: [market_insights]' operationId: getCategoryCard parameters: - $ref: '#/components/parameters/entity_id' - name: card_id in: path description: A category card to lookup required: true style: simple explode: false schema: title: card_id type: string enum: - market_insights - $ref: '#/components/parameters/card_field_ids' - $ref: '#/components/parameters/after_id' - $ref: '#/components/parameters/before_id' - $ref: '#/components/parameters/order' - $ref: '#/components/parameters/limit' responses: '200': $ref: '#/components/responses/CategoryCardLookupResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/category_groups/{entity_id}/cards/{card_id}: get: tags: - Entity summary: Lookup CategoryGroup's single card description: 'The following cards are available: [market_insights]' operationId: getCategoryGroupCard parameters: - $ref: '#/components/parameters/entity_id' - name: card_id in: path description: A category_group card to lookup required: true style: simple explode: false schema: title: card_id type: string enum: - market_insights - $ref: '#/components/parameters/card_field_ids' - $ref: '#/components/parameters/after_id' - $ref: '#/components/parameters/before_id' - $ref: '#/components/parameters/order' - $ref: '#/components/parameters/limit' responses: '200': $ref: '#/components/responses/CategoryGroupCardLookupResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/key_employee_changes/{entity_id}: get: tags: - Entity summary: Lookup a KeyEmployeeChange operationId: getKeyEmployeeChange parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/KeyEmployeeChangeFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - fields responses: '200': $ref: '#/components/responses/EntityLookupKeyEmployeeChangeResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/layoffs/{entity_id}: get: tags: - Entity summary: Lookup a Layoff operationId: getLayoff parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/LayoffFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - fields responses: '200': $ref: '#/components/responses/EntityLookupLayoffResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/awards/{entity_id}: get: tags: - Entity summary: Lookup an Award operationId: getAward parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/AwardFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - fields responses: '200': $ref: '#/components/responses/EntityLookupAwardResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/current_valuation_estimates/{entity_id}: get: tags: - Entity summary: Lookup a CurrentValuationEstimate operationId: getCurrentValuationEstimate parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/CurrentValuationEstimateFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - fields responses: '200': $ref: '#/components/responses/EntityLookupCurrentValuationEstimateResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/growth_insights/{entity_id}: get: tags: - Entity summary: Lookup a GrowthInsight operationId: getGrowthInsight parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/GrowthInsightFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - fields responses: '200': $ref: '#/components/responses/EntityLookupGrowthInsightResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/investor_insights/{entity_id}: get: tags: - Entity summary: Lookup an InvestorInsight operationId: getInvestorInsight parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/InvestorInsightFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - fields responses: '200': $ref: '#/components/responses/EntityLookupInvestorInsightResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/investor_matches/{entity_id}: get: tags: - Entity summary: Lookup an InvestorMatch operationId: getInvestorMatch parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/InvestorMatchFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - fields responses: '200': $ref: '#/components/responses/EntityLookupInvestorMatchResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/legal_proceedings/{entity_id}: get: tags: - Entity summary: Lookup a LegalProceeding operationId: getLegalProceeding parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/LegalProceedingFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - fields responses: '200': $ref: '#/components/responses/EntityLookupLegalProceedingResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/market_insights/{entity_id}: get: tags: - Entity summary: Lookup a MarketInsight operationId: getMarketInsight parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/MarketInsightFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - fields - market_insight_reasons responses: '200': $ref: '#/components/responses/EntityLookupMarketInsightResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/market_insights/{entity_id}/cards/{card_id}: get: tags: - Entity summary: Lookup MarketInsight's single card description: 'The following cards are available: [market_insight_reasons]' operationId: getMarketInsightCard parameters: - $ref: '#/components/parameters/entity_id' - name: card_id in: path description: A market_insight card to lookup required: true style: simple explode: false schema: title: card_id type: string enum: - market_insight_reasons - $ref: '#/components/parameters/card_field_ids' - $ref: '#/components/parameters/after_id' - $ref: '#/components/parameters/before_id' - $ref: '#/components/parameters/order' - $ref: '#/components/parameters/limit' responses: '200': $ref: '#/components/responses/MarketInsightCardLookupResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/market_insight_reasons/{entity_id}: get: tags: - Entity summary: Lookup a MarketInsightReason operationId: getMarketInsightReason parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/MarketInsightReasonFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - fields responses: '200': $ref: '#/components/responses/EntityLookupMarketInsightReasonResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/micro_categories/{entity_id}: get: tags: - Entity summary: Lookup a MicroCategory operationId: getMicroCategory parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/MicroCategoryFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - fields - market_insights responses: '200': $ref: '#/components/responses/EntityLookupMicroCategoryResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/micro_categories/{entity_id}/cards/{card_id}: get: tags: - Entity summary: Lookup MicroCategory's single card description: 'The following cards are available: [market_insights]' operationId: getMicroCategoryCard parameters: - $ref: '#/components/parameters/entity_id' - name: card_id in: path description: A micro_category card to lookup required: true style: simple explode: false schema: title: card_id type: string enum: - market_insights - $ref: '#/components/parameters/card_field_ids' - $ref: '#/components/parameters/after_id' - $ref: '#/components/parameters/before_id' - $ref: '#/components/parameters/order' - $ref: '#/components/parameters/limit' responses: '200': $ref: '#/components/responses/MicroCategoryCardLookupResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/org_similarities/{entity_id}: get: tags: - Entity summary: Lookup an OrgSimilarity operationId: getOrgSimilarity parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/OrgSimilarityFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - fields responses: '200': $ref: '#/components/responses/EntityLookupOrgSimilarityResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/partnership_announcements/{entity_id}: get: tags: - Entity summary: Lookup a PartnershipAnnouncement operationId: getPartnershipAnnouncement parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/PartnershipAnnouncementFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - fields responses: '200': $ref: '#/components/responses/EntityLookupPartnershipAnnouncementResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/products/{entity_id}: get: tags: - Entity summary: Lookup a Product operationId: getProduct parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/ProductFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - fields responses: '200': $ref: '#/components/responses/EntityLookupProductResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/product_launches/{entity_id}: get: tags: - Entity summary: Lookup a ProductLaunch operationId: getProductLaunch parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/ProductLaunchFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - fields responses: '200': $ref: '#/components/responses/EntityLookupProductLaunchResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/product_similarities/{entity_id}: get: tags: - Entity summary: Lookup a ProductSimilarity operationId: getProductSimilarity parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/ProductSimilarityFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - fields responses: '200': $ref: '#/components/responses/EntityLookupProductSimilarityResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/research_insights/{entity_id}: get: tags: - Entity summary: Lookup a ResearchInsight operationId: getResearchInsight parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/ResearchInsightFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - fields responses: '200': $ref: '#/components/responses/EntityLookupResearchInsightResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/acquisition_predictions/{entity_id}: get: tags: - Entity summary: Lookup an AcquisitionPrediction operationId: getAcquisitionPrediction parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/AcquisitionPredictionFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - fields responses: '200': $ref: '#/components/responses/EntityLookupAcquisitionPredictionResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/closure_predictions/{entity_id}: get: tags: - Entity summary: Lookup a ClosurePrediction operationId: getClosurePrediction parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/ClosurePredictionFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - fields responses: '200': $ref: '#/components/responses/EntityLookupClosurePredictionResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/funding_predictions/{entity_id}: get: tags: - Entity summary: Lookup a FundingPrediction operationId: getFundingPrediction parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/FundingPredictionFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - fields responses: '200': $ref: '#/components/responses/EntityLookupFundingPredictionResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/growth_predictions/{entity_id}: get: tags: - Entity summary: Lookup a GrowthPrediction operationId: getGrowthPrediction parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/GrowthPredictionFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - fields responses: '200': $ref: '#/components/responses/EntityLookupGrowthPredictionResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/ipo_predictions/{entity_id}: get: tags: - Entity summary: Lookup an IpoPrediction operationId: getIpoPrediction parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/IpoPredictionFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - fields responses: '200': $ref: '#/components/responses/EntityLookupIpoPredictionResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/layoff_predictions/{entity_id}: get: tags: - Entity summary: Lookup a LayoffPrediction operationId: getLayoffPrediction parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/LayoffPredictionFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - fields responses: '200': $ref: '#/components/responses/EntityLookupLayoffPredictionResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 /data/entities/remain_private_predictions/{entity_id}: get: tags: - Entity summary: Lookup a RemainPrivatePrediction operationId: getRemainPrivatePrediction parameters: - $ref: '#/components/parameters/entity_id' - name: field_ids in: query description: Fields to include on the resulting entity - either an array of field_id strings in JSON or a comma-separated list encoded as string style: form explode: false schema: title: field_ids type: array items: $ref: '#/components/schemas/RemainPrivatePredictionFieldId' - name: card_ids in: query description: Cards to include on the resulting entity style: form explode: false schema: title: card_ids type: array items: type: string enum: - fields responses: '200': $ref: '#/components/responses/EntityLookupRemainPrivatePredictionResponse' '400': $ref: '#/components/responses/GenericBadRequestError' '404': $ref: '#/components/responses/GenericNotFoundError' '500': $ref: '#/components/responses/GenericInternalServerError' servers: - url: https://api.crunchbase.com/v4 components: schemas: Organization: type: object required: - identifier properties: acquirer_identifier: type: object description: Name of the organization that made the acquisition allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts aliases: type: array description: Alternate or previous names for the organization items: type: string maxLength: 255 x-cb-field-type: text_short_multi x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts categories: type: array description: Descriptive keyword for an Organization (e.g. SaaS, Android, Cloud Computing, Medical Device) items: $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all category_groups: type: array description: Superset of Industries (e.g. Software, Mobile, Health Care) items: $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all closed_on: type: object description: The date when the organization is closed allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte company_type: type: string description: 'Whether an Organization is for profit or non-profit * for_profit - For Profit * non_profit - Non-profit' enum: - for_profit - non_profit x-enum-descriptions: - For Profit - Non-profit x-cb-field-enum-values: - value: for_profit description: For Profit - value: non_profit description: Non-profit x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes contact_email: type: string description: General contact email for the organization maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte delisted_on: type: object description: The date when the Organization removed its stock from the stock exchange. allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte demo_days: type: boolean description: Whether an accelerator hosts any demo days x-cb-field-type: boolean x-cb-searchable: true x-cb-search-operators: - blank - eq description: type: string description: Organization Description, Industries, Industry Groups maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains diversity_spotlights: type: array description: Types of diversity represented in an organization, specifically of those who are founding members, currently the CEO, or have check-writing abilities in an investment firm. This feature is in beta and may change with future updates. items: $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all entity_def_id: type: string description: '* organization - Organization' enum: - organization x-enum-descriptions: - Organization x-cb-field-enum-values: - value: organization description: Organization x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes equity_funding_total: type: object description: Total funding amount raised across all Funding Rounds excluding debt allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq exited_on: type: object description: Date the organization was acquired or went public allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte facebook: type: object description: Link to Organization's Facebook page allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] facet_ids: type: array items: type: string description: '* company - Company * government_entity - Government Entity * investor - Investor * school - School' enum: - company - government_entity - investor - school x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all founded_on: type: object description: Date the Organization was founded allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte founder_identifiers: type: array description: Founders of the organization items: $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all funding_stage: type: string description: 'This field describes an organization''s most recent funding status (e.g. Early Stage Venture, Late Stage Venture, M&A) * early_stage_venture - Early Stage Venture * ipo - IPO * late_stage_venture - Late Stage Venture * m_and_a - M&A * private_equity - Private Equity * seed - Seed' enum: - seed - early_stage_venture - late_stage_venture - private_equity - m_and_a - ipo x-enum-descriptions: - Seed - Early Stage Venture - Late Stage Venture - Private Equity - M&A - IPO x-cb-field-enum-values: - value: seed description: Seed - value: early_stage_venture description: Early Stage Venture - value: late_stage_venture description: Late Stage Venture - value: private_equity description: Private Equity - value: m_and_a description: M&A - value: ipo description: IPO x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes funding_total: type: object description: Total amount raised across all funding rounds allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq funds_total: type: object description: Total funding amount raised across all Fund Raises allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq hub_tags: type: array description: Tags are labels assigned to organizations, which identify their belonging to a group with that shared label items: type: string description: 'Tags are labels assigned to organizations, which identify their belonging to a group with that shared label * cbvp - Crunchbase Venture Program * emerging_unicorn - Emerging Unicorn * exited_unicorn - Exited Unicorn * pledge_one_percent - Pledge 1% * unicorn - Unicorn' enum: - cbvp - pledge_one_percent - unicorn - emerging_unicorn - exited_unicorn x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all identifier: type: object description: Name of the Organization allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts image_id: type: string description: The profile image of the organization on Crunchbase maxLength: 255 x-cb-field-type: image_id x-cb-searchable: false x-cb-search-operators: [] image_url: type: string description: The url of the profile image maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] investor_identifiers: type: array description: The top 5 investors with investments in this company, ordered by Crunchbase Rank items: $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all investor_stage: type: array description: This describes the stage of investments made by this organization (e.g. Angel, Fund of Funds, Venture Capital) items: type: string description: 'This describes the stage of investments made by this organization (e.g. Angel, Fund of Funds, Venture Capital) * convertible_note - Convertible Note * crowdfunding - Crowdfunding * debt - Debt * early_stage_venture - Early Stage Venture * grant - Grant * initial_coin_offering - Initial Coin Offering * late_stage_venture - Late Stage Venture * non_equity_assistance - Non Equity Assistance * post_ipo - Post-Ipo * private_equity - Private Equity * secondary_market - Secondary Market * seed - Seed * venture - Venture' enum: - seed - early_stage_venture - late_stage_venture - venture - private_equity - crowdfunding - debt - grant - non_equity_assistance - convertible_note - secondary_market - post_ipo - initial_coin_offering x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all investor_type: type: array description: This describes the type of investor this organization is (e.g. Angel, Fund of Funds, Venture Capital) items: type: string description: 'This describes the type of investor this organization is (e.g. Angel, Fund of Funds, Venture Capital) * accelerator - Accelerator * angel_group - Angel Group * co_working_space - Co-Working Space * corporate_venture_capital - Corporate Venture Capital * entrepreneurship_program - Entrepreneurship Program * family_investment_office - Family Investment Office * fund_of_funds - Fund Of Funds * government_office - Government Office * hedge_fund - Hedge Fund * incubator - Incubator * investment_bank - Investment Bank * micro_vc - Micro VC * pension_funds - Pension Funds * private_equity_firm - Private Equity Firm * secondary_purchaser - Secondary Purchaser * startup_competition - Startup Competition * syndicate - Syndicate * university_program - University Program * venture_capital - Venture Capital * venture_debt - Venture Debt' enum: - venture_capital - corporate_venture_capital - private_equity_firm - accelerator - micro_vc - angel_group - incubator - investment_bank - family_investment_office - venture_debt - co_working_space - fund_of_funds - hedge_fund - government_office - university_program - entrepreneurship_program - secondary_purchaser - startup_competition - syndicate - pension_funds x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all ipo_status: type: string description: 'The current public status of the Organization * delisted - Delisted * private - Private * public - Public' enum: - public - delisted - private x-enum-descriptions: - Public - Delisted - Private x-cb-field-enum-values: - value: public description: Public - value: delisted description: Delisted - value: private description: Private x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes last_equity_funding_total: type: object description: Amount of most recent Funding Round excluding debt allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq last_equity_funding_type: type: string description: 'The most recent Funding Round excluding debt * angel - Angel * convertible_note - Convertible Note * corporate_round - Corporate Round * debt_financing - Debt Financing * equity_crowdfunding - Equity Crowdfunding * grant - Grant * initial_coin_offering - Initial Coin Offering * non_equity_assistance - Non-equity Assistance * post_ipo_debt - Post-IPO Debt * post_ipo_equity - Post-IPO Equity * post_ipo_secondary - Post-IPO Secondary * pre_seed - Pre-Seed * private_equity - Private Equity * product_crowdfunding - Product Crowdfunding * secondary_market - Secondary Market * seed - Seed * series_a - Series A * series_b - Series B * series_c - Series C * series_d - Series D * series_e - Series E * series_f - Series F * series_g - Series G * series_h - Series H * series_i - Series I * series_j - Series J * series_unknown - Venture - Series Unknown * undisclosed - Undisclosed' enum: - pre_seed - seed - series_a - series_b - series_c - series_d - series_e - series_f - series_g - series_h - series_i - series_j - series_unknown - angel - private_equity - debt_financing - convertible_note - grant - corporate_round - equity_crowdfunding - product_crowdfunding - secondary_market - post_ipo_equity - post_ipo_debt - post_ipo_secondary - non_equity_assistance - initial_coin_offering - undisclosed x-enum-descriptions: - Pre-Seed - Seed - Series A - Series B - Series C - Series D - Series E - Series F - Series G - Series H - Series I - Series J - Venture - Series Unknown - Angel - Private Equity - Debt Financing - Convertible Note - Grant - Corporate Round - Equity Crowdfunding - Product Crowdfunding - Secondary Market - Post-IPO Equity - Post-IPO Debt - Post-IPO Secondary - Non-equity Assistance - Initial Coin Offering - Undisclosed x-cb-field-enum-values: - value: pre_seed description: Pre-Seed - value: seed description: Seed - value: series_a description: Series A - value: series_b description: Series B - value: series_c description: Series C - value: series_d description: Series D - value: series_e description: Series E - value: series_f description: Series F - value: series_g description: Series G - value: series_h description: Series H - value: series_i description: Series I - value: series_j description: Series J - value: series_unknown description: Venture - Series Unknown - value: angel description: Angel - value: private_equity description: Private Equity - value: debt_financing description: Debt Financing - value: convertible_note description: Convertible Note - value: grant description: Grant - value: corporate_round description: Corporate Round - value: equity_crowdfunding description: Equity Crowdfunding - value: product_crowdfunding description: Product Crowdfunding - value: secondary_market description: Secondary Market - value: post_ipo_equity description: Post-IPO Equity - value: post_ipo_debt description: Post-IPO Debt - value: post_ipo_secondary description: Post-IPO Secondary - value: non_equity_assistance description: Non-equity Assistance - value: initial_coin_offering description: Initial Coin Offering - value: undisclosed description: Undisclosed x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes last_funding_at: type: string description: Date of most recent Funding Round format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte last_funding_total: type: object description: Amount of most recent Funding Round allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq last_funding_type: type: string description: 'Last funding round type (e.g. Seed, Series A, Private Equity) * angel - Angel * convertible_note - Convertible Note * corporate_round - Corporate Round * debt_financing - Debt Financing * equity_crowdfunding - Equity Crowdfunding * grant - Grant * initial_coin_offering - Initial Coin Offering * non_equity_assistance - Non-equity Assistance * post_ipo_debt - Post-IPO Debt * post_ipo_equity - Post-IPO Equity * post_ipo_secondary - Post-IPO Secondary * pre_seed - Pre-Seed * private_equity - Private Equity * product_crowdfunding - Product Crowdfunding * secondary_market - Secondary Market * seed - Seed * series_a - Series A * series_b - Series B * series_c - Series C * series_d - Series D * series_e - Series E * series_f - Series F * series_g - Series G * series_h - Series H * series_i - Series I * series_j - Series J * series_unknown - Venture - Series Unknown * undisclosed - Undisclosed' enum: - pre_seed - seed - series_a - series_b - series_c - series_d - series_e - series_f - series_g - series_h - series_i - series_j - series_unknown - angel - private_equity - debt_financing - convertible_note - grant - corporate_round - equity_crowdfunding - product_crowdfunding - secondary_market - post_ipo_equity - post_ipo_debt - post_ipo_secondary - non_equity_assistance - initial_coin_offering - undisclosed x-enum-descriptions: - Pre-Seed - Seed - Series A - Series B - Series C - Series D - Series E - Series F - Series G - Series H - Series I - Series J - Venture - Series Unknown - Angel - Private Equity - Debt Financing - Convertible Note - Grant - Corporate Round - Equity Crowdfunding - Product Crowdfunding - Secondary Market - Post-IPO Equity - Post-IPO Debt - Post-IPO Secondary - Non-equity Assistance - Initial Coin Offering - Undisclosed x-cb-field-enum-values: - value: pre_seed description: Pre-Seed - value: seed description: Seed - value: series_a description: Series A - value: series_b description: Series B - value: series_c description: Series C - value: series_d description: Series D - value: series_e description: Series E - value: series_f description: Series F - value: series_g description: Series G - value: series_h description: Series H - value: series_i description: Series I - value: series_j description: Series J - value: series_unknown description: Venture - Series Unknown - value: angel description: Angel - value: private_equity description: Private Equity - value: debt_financing description: Debt Financing - value: convertible_note description: Convertible Note - value: grant description: Grant - value: corporate_round description: Corporate Round - value: equity_crowdfunding description: Equity Crowdfunding - value: product_crowdfunding description: Product Crowdfunding - value: secondary_market description: Secondary Market - value: post_ipo_equity description: Post-IPO Equity - value: post_ipo_debt description: Post-IPO Debt - value: post_ipo_secondary description: Post-IPO Secondary - value: non_equity_assistance description: Non-equity Assistance - value: initial_coin_offering description: Initial Coin Offering - value: undisclosed description: Undisclosed x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes layout_id: type: string description: 'This is the auto-generated layout for the profile * investor - Investor Layout * school - School Layout' enum: - school - investor x-enum-descriptions: - School Layout - Investor Layout x-cb-field-enum-values: - value: school description: School Layout - value: investor description: Investor Layout x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes legal_name: type: string description: The legal name of the organization maxLength: 255 x-cb-field-type: text_short x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts linkedin: type: object description: Link to Organization's LinkedIn page allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] listed_stock_symbol: type: string description: Stock ticker symbol (e.g. AAPL, FB, TWTR) maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] location_group_identifiers: type: array description: Where the organization is headquartered (e.g. San Francisco Bay Area, Silicon Valley) items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all location_identifiers: type: array description: Where the organization is headquartered items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all name: type: string maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] num_acquisitions: type: number description: Total number of Acquisitions x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_alumni: type: number description: Total number of alumni x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_articles: type: number description: Number of news articles that reference the Organization x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_current_advisor_positions: type: number description: Total number of board member and advisor profiles an organization has on Crunchbase x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_current_positions: type: number description: Total number of employee profiles an organization has on Crunchbase x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_diversity_spotlight_investments: type: number description: Total number of diversity investments made by an investor x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_employees_enum: type: string description: 'Total number of employees * c_00001_00010 - 1-10 * c_00011_00050 - 11-50 * c_00051_00100 - 51-100 * c_00101_00250 - 101-250 * c_00251_00500 - 251-500 * c_00501_01000 - 501-1000 * c_01001_05000 - 1001-5000 * c_05001_10000 - 5001-10000 * c_10001_max - 10001+' enum: - c_00001_00010 - c_00011_00050 - c_00051_00100 - c_00101_00250 - c_00251_00500 - c_00501_01000 - c_01001_05000 - c_05001_10000 - c_10001_max x-enum-descriptions: - 1-10 - 11-50 - 51-100 - 101-250 - 251-500 - 501-1000 - 1001-5000 - 5001-10000 - 10001+ x-cb-field-enum-values: - value: c_00001_00010 description: 1-10 - value: c_00011_00050 description: 11-50 - value: c_00051_00100 description: 51-100 - value: c_00101_00250 description: 101-250 - value: c_00251_00500 description: 251-500 - value: c_00501_01000 description: 501-1000 - value: c_01001_05000 description: 1001-5000 - value: c_05001_10000 description: 5001-10000 - value: c_10001_max description: 10001+ x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes num_enrollments: type: string description: 'Total number of Enrollments * c_00001_00010 - 1-10 * c_00011_00050 - 11-50 * c_00051_00100 - 51-100 * c_00101_00250 - 101-250 * c_00251_00500 - 251-500 * c_00501_01000 - 501-1000 * c_01001_05000 - 1001-5000 * c_05001_10000 - 5001-10000 * c_10001_max - 10001+' enum: - c_00001_00010 - c_00011_00050 - c_00051_00100 - c_00101_00250 - c_00251_00500 - c_00501_01000 - c_01001_05000 - c_05001_10000 - c_10001_max x-enum-descriptions: - 1-10 - 11-50 - 51-100 - 101-250 - 251-500 - 501-1000 - 1001-5000 - 5001-10000 - 10001+ x-cb-field-enum-values: - value: c_00001_00010 description: 1-10 - value: c_00011_00050 description: 11-50 - value: c_00051_00100 description: 51-100 - value: c_00101_00250 description: 101-250 - value: c_00251_00500 description: 251-500 - value: c_00501_01000 description: 501-1000 - value: c_01001_05000 description: 1001-5000 - value: c_05001_10000 description: 5001-10000 - value: c_10001_max description: 10001+ x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes num_event_appearances: type: number description: Total number of events an Organization appeared in x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_exits: type: number description: Total number of Exits x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_exits_ipo: type: number description: Total number of Exits (IPO) x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_founder_alumni: type: number description: Total number of Alumni that are Founders x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_founders: type: number description: Total number of Founders x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_funding_rounds: type: number description: Total number of Funding Rounds x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_funds: type: number description: Total number of Funds raised x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_investments: type: number description: Total number of Investments made x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_investors: type: number description: Total number of investment firms and individual investors x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_lead_investments: type: number description: Total number of Lead Investments made x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_lead_investors: type: number description: Total number of lead investment firms and individual investors x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_past_positions: type: number description: Total number of past employee profiles of an organization x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_portfolio_organizations: type: number description: Total number of portfolio organizations x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_sub_organizations: type: number description: Total number of sub-organizations that belongs to a parent Organization x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq operating_status: type: string description: 'Operating Status of Organization e.g. Active, Closed * active - Active * closed - Closed' enum: - active - closed x-enum-descriptions: - Active - Closed x-cb-field-enum-values: - value: active description: Active - value: closed description: Closed x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes owner_identifier: type: object description: This is the parent Organization of the sub-organization allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts permalink: type: string maxLength: 255 x-cb-field-type: permalink x-cb-searchable: false x-cb-search-operators: [] permalink_aliases: type: array description: These are the alternative aliases to the primary permalink of the Organization items: type: string maxLength: 255 x-cb-field-type: text_exact_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all phone_number: type: string description: Organization's general phone number maxLength: 255 x-cb-field-type: text_exact x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes program_application_deadline: type: string description: The deadline for applying to the Accelerator Program format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte program_duration: type: number description: The duration of the Acceleration Program in number of weeks x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq program_type: type: string description: 'The type of Accelerator Program (e.g. On-Site, Online) * on_site - On-Site * online - Online' enum: - on_site - online x-enum-descriptions: - On-Site - Online x-cb-field-enum-values: - value: on_site description: On-Site - value: online description: Online x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes rank: type: number description: Algorithmic rank assigned to the top profiles on Crunchbase x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank_delta_d30: type: number description: Movement in Rank over the last 30 days using a score from -10 to 10 format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank_delta_d7: type: number description: Movement in Rank over the last 7 days using a score from -10 to 10 format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank_delta_d90: type: number description: Movement in Rank over the last 90 days using a score from -10 to 10 format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank_org: type: number description: Algorithmic rank assigned to the top 100,000 most active Organizations x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq revenue_range: type: string description: 'Estimated revenue range for organization * r_00000000 - Less than $1M * r_00001000 - $1M to $10M * r_00010000 - $10M to $50M * r_00050000 - $50M to $100M * r_00100000 - $100M to $500M * r_00500000 - $500M to $1B * r_01000000 - $1B to $10B * r_10000000 - $10B+' enum: - r_00000000 - r_00001000 - r_00010000 - r_00050000 - r_00100000 - r_00500000 - r_01000000 - r_10000000 x-enum-descriptions: - Less than $1M - $1M to $10M - $10M to $50M - $50M to $100M - $100M to $500M - $500M to $1B - $1B to $10B - $10B+ x-cb-field-enum-values: - value: r_00000000 description: Less than $1M - value: r_00001000 description: $1M to $10M - value: r_00010000 description: $10M to $50M - value: r_00050000 description: $50M to $100M - value: r_00100000 description: $100M to $500M - value: r_00500000 description: $500M to $1B - value: r_01000000 description: $1B to $10B - value: r_10000000 description: $10B+ x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes school_method: type: string description: 'The type of School Method (e.g. On Campus, Online) * on_compus - On Campus * online - Online * online_and_on_campus - Online and On Campus' enum: - on_compus - online - online_and_on_campus x-enum-descriptions: - On Campus - Online - Online and On Campus x-cb-field-enum-values: - value: on_compus description: On Campus - value: online description: Online - value: online_and_on_campus description: Online and On Campus x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes school_program: type: string description: 'The type of School Program (e.g. Bootcamp, Four Year University) * bootcamp - Bootcamp * community_college - Community College * four_year_university - Four Year University * graduate_university - Graduate University * high_school - High School * trade_school - Trade School * two_year_university - Two Year University' enum: - four_year_university - two_year_university - graduate_university - bootcamp - trade_school - community_college - high_school x-enum-descriptions: - Four Year University - Two Year University - Graduate University - Bootcamp - Trade School - Community College - High School x-cb-field-enum-values: - value: four_year_university description: Four Year University - value: two_year_university description: Two Year University - value: graduate_university description: Graduate University - value: bootcamp description: Bootcamp - value: trade_school description: Trade School - value: community_college description: Community College - value: high_school description: High School x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes school_type: type: string description: 'The type of school * for_profit_private - Private * non_profit_private - Private (Non-Profit) * public - Public' enum: - public - for_profit_private - non_profit_private x-enum-descriptions: - Public - Private - Private (Non-Profit) x-cb-field-enum-values: - value: public description: Public - value: for_profit_private description: Private - value: non_profit_private description: Private (Non-Profit) x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes short_description: type: string description: Text of Organization Description, Industries, and Industry Groups maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains status: type: string description: 'Status of Organization e.g. Operating, Closed, Acquired, IPO * closed - Closed * ipo - IPO * operating - Operating * was_acquired - Was Acquired' enum: - closed - ipo - operating - was_acquired x-enum-descriptions: - Closed - IPO - Operating - Was Acquired x-cb-field-enum-values: - value: closed description: Closed - value: ipo description: IPO - value: operating description: Operating - value: was_acquired description: Was Acquired x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes stock_exchange_symbol: type: string description: 'Stock exchange where the Organization is listed e.g. NYSE, NASDAQ * adx - ADX - Abu Dhabi Securities Exchange * afx - AFX - Afghanistan Stock Exchange * altx - ALTX - ALTX East Africa Exchange * amex - AMEX - American Stock Exchange * ams - AMS - Euronext Amsterdam * amx - AMX - Armenia Securities Exchange * asce - ASCE - Abuja Securities and Commodities Exchange * asx - ASX - Australian Securities Exchange * ath - ATH - Athens Stock Exchange * bcba - BCBA - Buenos Aires Stock Exchange * bdp - BDP - Budapest Stock Exchange * belex - BELEX - Belgrade Stock Exchange * ber - BER - Berliner Börse * bfb - BFB - Baku Stock Exchange * bit - BIT - Italian Stock Exchange * bkk - BKK - Thailand Stock Exchange * blse - BLSE - Banja Luka Stock Exchange * bme - BME - Madrid Stock Exchange * bmv - BMV - Mexican Stock Exchange * bom - BOM - Bombay Stock Exchange * brvm - BRVM - Regional Securities Exchange SA * bse - BSE - Bulgarian Stock Exchange * bse_lb - BSE - Beirut Stock Exchange * bsse - BSSE - Bratislava Stock Exchange * bsx - BSX - Bermuda Stock Exchange * bvb - BVB - Bucharest Stock Exchange * bvc - BVC - Colombian Stock Exchange * bvfb - BVFB - Belarusian Currency and Stock Exchange * bvm - BVM - Montevideo Stock Exchange * bvmf - B3 - Brazil Stock Exchange and OTC Market * bvmt - BVMT - Tunis Stock Exchange * bx - BX - Berne Stock Exchange * cas - CAS - Casablanca Stock Exchange * cise - CISE - Channel Islands Stock Exchange * cnsx - CNSX - Canadian National Stock Exchange * col - COL - Colombo Stock Exchange * cph - CPH - Copenhagen Stock Exchange * cse - CSE - Canadian Securities Exchange * cse_cy - CSE - Cyprus Stock Exchange * csx - CSX - Cambodia Securities Exchange * cve - TSX-V - Toronto TSX Venture Exchange * dfm - DFM - Dubai Financial Market * dse - DSE - Dhaka Stock Exchange * dsx - DSX - Douala Stock Exchange * dus - DUS - Börse Düsseldorf * ebr - EBR - Euronext Brussels * egx - EGX - Egypt Stock Exchange * eli - ELI - Euronext Lisbon * epa - EPA - Euronext Paris * etr - ETR - Deutsche Börse XETRA * eurex - EUREX - Eurex Exchange * fra - FRA - Frankfurt Stock Exchange * fwb - FWB - Börse Frankfurt Stock Exchange * gha - GHA - Ghana Stock Exchange * gsx - GSX - Georgian Stock Exchange * gsx_gi - GSX - Gibraltar Stock Exchange * hel - HEL - Helsinki Stock Exchange * hkg - HKG - Hong Kong Stock Exchange * hnx - HNX - Hanoi Stock Exchange * hose - HOSE - Ho Chi Minh Stock Exchange * ice - ICE - Iceland Stock Exchange * idx - IDX - Indonesia Stock Exchange * iex - IEX - Investors Exchange * ifb - IFB - Iran Fara Bourse * ime - IME - Iran Mercantile Exchange * irenex - IRENEX - Iran Energy Exchange * ise - ISE - Irish Stock Exchange * ist - IST - Istanbul Stock Exchange * isx - ISX - Iraq Stock Exchange * jp - JP - Japan Exchange * jsc - JSC - Belarusian Currency and Stock Exchange * jse - JSE - Johannesburg Stock Exchange * jse_jam - JSE - Jamaica Stock Exchange * kase - KASE - Kazakhstan Stock Exchange * klse - KLSE - Malaysia Stock Exchange * kosdaq - KOSDAQ - Korean Securities Dealers Automated Quotations * krx - KRX - Korea Stock Exchange * kse - KSE - Kuwait Stock Exchange * lje - LJE - Ljubljana Stock Exchange * lse - LSE - London Stock Exchange * lsm - LSM - Libyan Stock Market * lsx - LSX - Lao Securities Exchange * luse - LuSE - Lusaka Securities Exchange * luxse - LuxSE - Luxembourg Stock Exchange * mal - MAL - Malta Stock Exchange * mcx - MCX - Multi Commodity Exchange of India * meff - MEFF - Mercado Spanish Financial Futures Market * mnse - MNSE - Montenegro Stock Exchange * moex - MOEX - Moscow Exchange * mse - MSE - Metropolitan Stock Exchange * mse_md - MSE - Moldova Stock Exchange * mse_mk - MSE - Macedonian Stock Exchange * msei - MSEI - Metropolitan Stock Exchange of India * msm - MSM - Muscat Securities Market * mun - MUN - Börse München * nasdaq - NASDAQ * nbo - NSE - Nairobi Securities Exchange * neeq - NEEQ - National Equities Exchange and Quotations * nepse - NEPSE - Nepal Stock Exchange * nex - NEX - NEX Exchange * ngm - NGM - Nordic Growth Market Exchange * nig - NIG - Nigerian Stock Exchange * notc - NOTC - Norwegian OTC * npex - NPEX - NPEX Stock Exchange * nse - NSE - National Stock Exchange of India * nsx - NSX - National Stock Exchange of Australia * nyse - NYSE - New York Stock Exchange * nysearca - NYSEARCA - NYSE Arca * nysemkt - NYSEAMERICAN - NYSE American * nze - NZE - New Zealand Stock Exchange * ose - OSE - Oslo Stock Exchange * otcbb - OTCBB - FINRA OTC Bulletin Board * otcpink - OTC Pink * otcqb - OTCQB * otcqx - OTCQX * pdex - PDEx - Philippine Dealing Exchange * pex - PEX - Palestine Exchange * pfts - PFTS - PFTS Ukraine Stock Exchange * pomsox - POMSoX - Port Moresby Stock Exchange * prg - PRA - Prague Stock Exchange * pse - PSE - Philippine Stock Exchange * psx - PSX - Pakistan Stock Exchange * qse - QSE - Qatar Stock Exchange * rfb - RFB - Riga Stock Exchange * rse - RSE - Rwanda Stock Exchange * rsebl - RSEBL - Royal Securities Exchange of Bhutan * sase - SASE - Sarajevo Stock Exchange * sbx - SBX - BX Swiss * sehk - SEHK - The Stock Exchange of Hong Kong * sem - SEM - Stock Exchange of Mauritius * sgbv - SGBV - Algiers Stock Exchange * sgx - SGX - Singapore Stock Exchange * six - SIX - SIX Swiss Exchange * spbex - SPBEX - Saint Petersburg Stock Exchange * spse - SPSE - South Pacific Stock Exchange * sse - SSE - Shanghai Stock Exchange * ssx - SSX - Sydney Stock Exchange * sto - STO - Stockholm Stock Exchange * stu - STU - Börse Stuttgart * swx - SWX - SIX Swiss Exchange * szse - SZSE - Shenzhen Stock Exchange * tadawul - Tadawul - Saudi Stock Exchange * tal - TSE - Tallinn Stock Exchange * tfex - TFEX - Thailand Futures Exchange * tise - TISE - The International Stock Exchange * tlv - TLV - Tel Aviv Stock Exchange * tpe - TWSE - Taiwan Stock Exchange * tse_al - TSE - Tirana Stock Exchange * tse_ir - TSE - Tehran Stock Exchange * tsec - TWO - Taiwan OTC Exchange * tsx - TSX - Toronto Stock Exchange * ttse - TTSE - Trinidad and Tobago Stock Exchange * tyo - TYO - Tokyo Stock Exchange * use - USE - Uganda Securities Exchange * ux - UX - Ukrainian Exchange * vie - VIE - Vienna Stock Exchange * vmf - VMF - Faroese Securities Market * vse - VSE - Vancouver Stock Exchange * wse - WSE - Warsaw Stock Exchange * ysx - YSX - Yangon Stock Exchange * zamace - ZAMACE - Zambian Commodity Exchange * zse - ZSE - Zimbabwe Stock Exchange * zse_hr - ZSE - Zagreb Stock Exchange' enum: - adx - afx - altx - amx - amex - ams - asce - asx - ath - bcba - bdp - belex - ber - bfb - bit - bkk - blse - bme - bmv - bom - brvm - bse - bse_lb - bsse - bsx - bvb - bvc - bvfb - bvm - bvmf - bvmt - bx - cas - cise - cnsx - col - cph - cse - cse_cy - csx - dfm - dse - dsx - dus - ebr - egx - eli - epa - etr - eurex - fra - fwb - gha - gsx - gsx_gi - hel - hkg - hnx - hose - ice - idx - iex - ifb - ime - irenex - ise - ist - isx - jp - jsc - jse - jse_jam - kase - klse - kosdaq - krx - kse - lje - lse - lsm - lsx - luse - luxse - mal - mcx - meff - mnse - moex - mse - mse_md - mse_mk - msei - msm - mun - nasdaq - nbo - nex - nepse - neeq - ngm - nig - notc - npex - nse - nsx - nyse - nysearca - nysemkt - nze - ose - otcbb - otcpink - otcqb - otcqx - pdex - pex - pfts - pomsox - prg - pse - psx - qse - rfb - rse - rsebl - sase - sbx - sehk - sem - sgbv - sgx - six - spbex - spse - sse - ssx - sto - stu - swx - szse - tal - tfex - tise - tlv - tpe - tse_al - tse_ir - tsec - tsx - cve - tyo - ttse - tadawul - use - ux - vie - vmf - vse - wse - ysx - zamace - zse - zse_hr x-enum-descriptions: - ADX - Abu Dhabi Securities Exchange - AFX - Afghanistan Stock Exchange - ALTX - ALTX East Africa Exchange - AMX - Armenia Securities Exchange - AMEX - American Stock Exchange - AMS - Euronext Amsterdam - ASCE - Abuja Securities and Commodities Exchange - ASX - Australian Securities Exchange - ATH - Athens Stock Exchange - BCBA - Buenos Aires Stock Exchange - BDP - Budapest Stock Exchange - BELEX - Belgrade Stock Exchange - BER - Berliner Börse - BFB - Baku Stock Exchange - BIT - Italian Stock Exchange - BKK - Thailand Stock Exchange - BLSE - Banja Luka Stock Exchange - BME - Madrid Stock Exchange - BMV - Mexican Stock Exchange - BOM - Bombay Stock Exchange - BRVM - Regional Securities Exchange SA - BSE - Bulgarian Stock Exchange - BSE - Beirut Stock Exchange - BSSE - Bratislava Stock Exchange - BSX - Bermuda Stock Exchange - BVB - Bucharest Stock Exchange - BVC - Colombian Stock Exchange - BVFB - Belarusian Currency and Stock Exchange - BVM - Montevideo Stock Exchange - B3 - Brazil Stock Exchange and OTC Market - BVMT - Tunis Stock Exchange - BX - Berne Stock Exchange - CAS - Casablanca Stock Exchange - CISE - Channel Islands Stock Exchange - CNSX - Canadian National Stock Exchange - COL - Colombo Stock Exchange - CPH - Copenhagen Stock Exchange - CSE - Canadian Securities Exchange - CSE - Cyprus Stock Exchange - CSX - Cambodia Securities Exchange - DFM - Dubai Financial Market - DSE - Dhaka Stock Exchange - DSX - Douala Stock Exchange - DUS - Börse Düsseldorf - EBR - Euronext Brussels - EGX - Egypt Stock Exchange - ELI - Euronext Lisbon - EPA - Euronext Paris - ETR - Deutsche Börse XETRA - EUREX - Eurex Exchange - FRA - Frankfurt Stock Exchange - FWB - Börse Frankfurt Stock Exchange - GHA - Ghana Stock Exchange - GSX - Georgian Stock Exchange - GSX - Gibraltar Stock Exchange - HEL - Helsinki Stock Exchange - HKG - Hong Kong Stock Exchange - HNX - Hanoi Stock Exchange - HOSE - Ho Chi Minh Stock Exchange - ICE - Iceland Stock Exchange - IDX - Indonesia Stock Exchange - IEX - Investors Exchange - IFB - Iran Fara Bourse - IME - Iran Mercantile Exchange - IRENEX - Iran Energy Exchange - ISE - Irish Stock Exchange - IST - Istanbul Stock Exchange - ISX - Iraq Stock Exchange - JP - Japan Exchange - JSC - Belarusian Currency and Stock Exchange - JSE - Johannesburg Stock Exchange - JSE - Jamaica Stock Exchange - KASE - Kazakhstan Stock Exchange - KLSE - Malaysia Stock Exchange - KOSDAQ - Korean Securities Dealers Automated Quotations - KRX - Korea Stock Exchange - KSE - Kuwait Stock Exchange - LJE - Ljubljana Stock Exchange - LSE - London Stock Exchange - LSM - Libyan Stock Market - LSX - Lao Securities Exchange - LuSE - Lusaka Securities Exchange - LuxSE - Luxembourg Stock Exchange - MAL - Malta Stock Exchange - MCX - Multi Commodity Exchange of India - MEFF - Mercado Spanish Financial Futures Market - MNSE - Montenegro Stock Exchange - MOEX - Moscow Exchange - MSE - Metropolitan Stock Exchange - MSE - Moldova Stock Exchange - MSE - Macedonian Stock Exchange - MSEI - Metropolitan Stock Exchange of India - MSM - Muscat Securities Market - MUN - Börse München - NASDAQ - NSE - Nairobi Securities Exchange - NEX - NEX Exchange - NEPSE - Nepal Stock Exchange - NEEQ - National Equities Exchange and Quotations - NGM - Nordic Growth Market Exchange - NIG - Nigerian Stock Exchange - NOTC - Norwegian OTC - NPEX - NPEX Stock Exchange - NSE - National Stock Exchange of India - NSX - National Stock Exchange of Australia - NYSE - New York Stock Exchange - NYSEARCA - NYSE Arca - NYSEAMERICAN - NYSE American - NZE - New Zealand Stock Exchange - OSE - Oslo Stock Exchange - OTCBB - FINRA OTC Bulletin Board - OTC Pink - OTCQB - OTCQX - PDEx - Philippine Dealing Exchange - PEX - Palestine Exchange - PFTS - PFTS Ukraine Stock Exchange - POMSoX - Port Moresby Stock Exchange - PRA - Prague Stock Exchange - PSE - Philippine Stock Exchange - PSX - Pakistan Stock Exchange - QSE - Qatar Stock Exchange - RFB - Riga Stock Exchange - RSE - Rwanda Stock Exchange - RSEBL - Royal Securities Exchange of Bhutan - SASE - Sarajevo Stock Exchange - SBX - BX Swiss - SEHK - The Stock Exchange of Hong Kong - SEM - Stock Exchange of Mauritius - SGBV - Algiers Stock Exchange - SGX - Singapore Stock Exchange - SIX - SIX Swiss Exchange - SPBEX - Saint Petersburg Stock Exchange - SPSE - South Pacific Stock Exchange - SSE - Shanghai Stock Exchange - SSX - Sydney Stock Exchange - STO - Stockholm Stock Exchange - STU - Börse Stuttgart - SWX - SIX Swiss Exchange - SZSE - Shenzhen Stock Exchange - TSE - Tallinn Stock Exchange - TFEX - Thailand Futures Exchange - TISE - The International Stock Exchange - TLV - Tel Aviv Stock Exchange - TWSE - Taiwan Stock Exchange - TSE - Tirana Stock Exchange - TSE - Tehran Stock Exchange - TWO - Taiwan OTC Exchange - TSX - Toronto Stock Exchange - TSX-V - Toronto TSX Venture Exchange - TYO - Tokyo Stock Exchange - TTSE - Trinidad and Tobago Stock Exchange - Tadawul - Saudi Stock Exchange - USE - Uganda Securities Exchange - UX - Ukrainian Exchange - VIE - Vienna Stock Exchange - VMF - Faroese Securities Market - VSE - Vancouver Stock Exchange - WSE - Warsaw Stock Exchange - YSX - Yangon Stock Exchange - ZAMACE - Zambian Commodity Exchange - ZSE - Zimbabwe Stock Exchange - ZSE - Zagreb Stock Exchange x-cb-field-enum-values: - value: adx description: ADX - Abu Dhabi Securities Exchange - value: afx description: AFX - Afghanistan Stock Exchange - value: altx description: ALTX - ALTX East Africa Exchange - value: amx description: AMX - Armenia Securities Exchange - value: amex description: AMEX - American Stock Exchange - value: ams description: AMS - Euronext Amsterdam - value: asce description: ASCE - Abuja Securities and Commodities Exchange - value: asx description: ASX - Australian Securities Exchange - value: ath description: ATH - Athens Stock Exchange - value: bcba description: BCBA - Buenos Aires Stock Exchange - value: bdp description: BDP - Budapest Stock Exchange - value: belex description: BELEX - Belgrade Stock Exchange - value: ber description: BER - Berliner Börse - value: bfb description: BFB - Baku Stock Exchange - value: bit description: BIT - Italian Stock Exchange - value: bkk description: BKK - Thailand Stock Exchange - value: blse description: BLSE - Banja Luka Stock Exchange - value: bme description: BME - Madrid Stock Exchange - value: bmv description: BMV - Mexican Stock Exchange - value: bom description: BOM - Bombay Stock Exchange - value: brvm description: BRVM - Regional Securities Exchange SA - value: bse description: BSE - Bulgarian Stock Exchange - value: bse_lb description: BSE - Beirut Stock Exchange - value: bsse description: BSSE - Bratislava Stock Exchange - value: bsx description: BSX - Bermuda Stock Exchange - value: bvb description: BVB - Bucharest Stock Exchange - value: bvc description: BVC - Colombian Stock Exchange - value: bvfb description: BVFB - Belarusian Currency and Stock Exchange - value: bvm description: BVM - Montevideo Stock Exchange - value: bvmf description: B3 - Brazil Stock Exchange and OTC Market - value: bvmt description: BVMT - Tunis Stock Exchange - value: bx description: BX - Berne Stock Exchange - value: cas description: CAS - Casablanca Stock Exchange - value: cise description: CISE - Channel Islands Stock Exchange - value: cnsx description: CNSX - Canadian National Stock Exchange - value: col description: COL - Colombo Stock Exchange - value: cph description: CPH - Copenhagen Stock Exchange - value: cse description: CSE - Canadian Securities Exchange - value: cse_cy description: CSE - Cyprus Stock Exchange - value: csx description: CSX - Cambodia Securities Exchange - value: dfm description: DFM - Dubai Financial Market - value: dse description: DSE - Dhaka Stock Exchange - value: dsx description: DSX - Douala Stock Exchange - value: dus description: DUS - Börse Düsseldorf - value: ebr description: EBR - Euronext Brussels - value: egx description: EGX - Egypt Stock Exchange - value: eli description: ELI - Euronext Lisbon - value: epa description: EPA - Euronext Paris - value: etr description: ETR - Deutsche Börse XETRA - value: eurex description: EUREX - Eurex Exchange - value: fra description: FRA - Frankfurt Stock Exchange - value: fwb description: FWB - Börse Frankfurt Stock Exchange - value: gha description: GHA - Ghana Stock Exchange - value: gsx description: GSX - Georgian Stock Exchange - value: gsx_gi description: GSX - Gibraltar Stock Exchange - value: hel description: HEL - Helsinki Stock Exchange - value: hkg description: HKG - Hong Kong Stock Exchange - value: hnx description: HNX - Hanoi Stock Exchange - value: hose description: HOSE - Ho Chi Minh Stock Exchange - value: ice description: ICE - Iceland Stock Exchange - value: idx description: IDX - Indonesia Stock Exchange - value: iex description: IEX - Investors Exchange - value: ifb description: IFB - Iran Fara Bourse - value: ime description: IME - Iran Mercantile Exchange - value: irenex description: IRENEX - Iran Energy Exchange - value: ise description: ISE - Irish Stock Exchange - value: ist description: IST - Istanbul Stock Exchange - value: isx description: ISX - Iraq Stock Exchange - value: jp description: JP - Japan Exchange - value: jsc description: JSC - Belarusian Currency and Stock Exchange - value: jse description: JSE - Johannesburg Stock Exchange - value: jse_jam description: JSE - Jamaica Stock Exchange - value: kase description: KASE - Kazakhstan Stock Exchange - value: klse description: KLSE - Malaysia Stock Exchange - value: kosdaq description: KOSDAQ - Korean Securities Dealers Automated Quotations - value: krx description: KRX - Korea Stock Exchange - value: kse description: KSE - Kuwait Stock Exchange - value: lje description: LJE - Ljubljana Stock Exchange - value: lse description: LSE - London Stock Exchange - value: lsm description: LSM - Libyan Stock Market - value: lsx description: LSX - Lao Securities Exchange - value: luse description: LuSE - Lusaka Securities Exchange - value: luxse description: LuxSE - Luxembourg Stock Exchange - value: mal description: MAL - Malta Stock Exchange - value: mcx description: MCX - Multi Commodity Exchange of India - value: meff description: MEFF - Mercado Spanish Financial Futures Market - value: mnse description: MNSE - Montenegro Stock Exchange - value: moex description: MOEX - Moscow Exchange - value: mse description: MSE - Metropolitan Stock Exchange - value: mse_md description: MSE - Moldova Stock Exchange - value: mse_mk description: MSE - Macedonian Stock Exchange - value: msei description: MSEI - Metropolitan Stock Exchange of India - value: msm description: MSM - Muscat Securities Market - value: mun description: MUN - Börse München - value: nasdaq description: NASDAQ - value: nbo description: NSE - Nairobi Securities Exchange - value: nex description: NEX - NEX Exchange - value: nepse description: NEPSE - Nepal Stock Exchange - value: neeq description: NEEQ - National Equities Exchange and Quotations - value: ngm description: NGM - Nordic Growth Market Exchange - value: nig description: NIG - Nigerian Stock Exchange - value: notc description: NOTC - Norwegian OTC - value: npex description: NPEX - NPEX Stock Exchange - value: nse description: NSE - National Stock Exchange of India - value: nsx description: NSX - National Stock Exchange of Australia - value: nyse description: NYSE - New York Stock Exchange - value: nysearca description: NYSEARCA - NYSE Arca - value: nysemkt description: NYSEAMERICAN - NYSE American - value: nze description: NZE - New Zealand Stock Exchange - value: ose description: OSE - Oslo Stock Exchange - value: otcbb description: OTCBB - FINRA OTC Bulletin Board - value: otcpink description: OTC Pink - value: otcqb description: OTCQB - value: otcqx description: OTCQX - value: pdex description: PDEx - Philippine Dealing Exchange - value: pex description: PEX - Palestine Exchange - value: pfts description: PFTS - PFTS Ukraine Stock Exchange - value: pomsox description: POMSoX - Port Moresby Stock Exchange - value: prg description: PRA - Prague Stock Exchange - value: pse description: PSE - Philippine Stock Exchange - value: psx description: PSX - Pakistan Stock Exchange - value: qse description: QSE - Qatar Stock Exchange - value: rfb description: RFB - Riga Stock Exchange - value: rse description: RSE - Rwanda Stock Exchange - value: rsebl description: RSEBL - Royal Securities Exchange of Bhutan - value: sase description: SASE - Sarajevo Stock Exchange - value: sbx description: SBX - BX Swiss - value: sehk description: SEHK - The Stock Exchange of Hong Kong - value: sem description: SEM - Stock Exchange of Mauritius - value: sgbv description: SGBV - Algiers Stock Exchange - value: sgx description: SGX - Singapore Stock Exchange - value: six description: SIX - SIX Swiss Exchange - value: spbex description: SPBEX - Saint Petersburg Stock Exchange - value: spse description: SPSE - South Pacific Stock Exchange - value: sse description: SSE - Shanghai Stock Exchange - value: ssx description: SSX - Sydney Stock Exchange - value: sto description: STO - Stockholm Stock Exchange - value: stu description: STU - Börse Stuttgart - value: swx description: SWX - SIX Swiss Exchange - value: szse description: SZSE - Shenzhen Stock Exchange - value: tal description: TSE - Tallinn Stock Exchange - value: tfex description: TFEX - Thailand Futures Exchange - value: tise description: TISE - The International Stock Exchange - value: tlv description: TLV - Tel Aviv Stock Exchange - value: tpe description: TWSE - Taiwan Stock Exchange - value: tse_al description: TSE - Tirana Stock Exchange - value: tse_ir description: TSE - Tehran Stock Exchange - value: tsec description: TWO - Taiwan OTC Exchange - value: tsx description: TSX - Toronto Stock Exchange - value: cve description: TSX-V - Toronto TSX Venture Exchange - value: tyo description: TYO - Tokyo Stock Exchange - value: ttse description: TTSE - Trinidad and Tobago Stock Exchange - value: tadawul description: Tadawul - Saudi Stock Exchange - value: use description: USE - Uganda Securities Exchange - value: ux description: UX - Ukrainian Exchange - value: vie description: VIE - Vienna Stock Exchange - value: vmf description: VMF - Faroese Securities Market - value: vse description: VSE - Vancouver Stock Exchange - value: wse description: WSE - Warsaw Stock Exchange - value: ysx description: YSX - Yangon Stock Exchange - value: zamace description: ZAMACE - Zambian Commodity Exchange - value: zse description: ZSE - Zimbabwe Stock Exchange - value: zse_hr description: ZSE - Zagreb Stock Exchange x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes stock_symbol: type: object description: Stock ticker symbol (e.g. AAPL, FB, TWTR) allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts twitter: type: object description: Link to an organization's X page allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes valuation: type: object description: Latest post money valuation of organization allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq valuation_date: type: string description: Date of latest post money valuation format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte website: type: object description: Link to homepage allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] website_url: type: string description: Link to homepage maxLength: 8192 x-cb-field-type: url x-cb-searchable: true x-cb-search-operators: - domain_blank - domain_eq - domain_includes - not_domain_eq - not_domain_includes went_public_on: type: string description: The date when the Organization went public format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte EntityIdentifier: type: object description: Every entity in the system has a unique identifier that contains all necessary properties to represent it. required: - entity_def_id - uuid properties: entity_def_id: type: string enum: - acquisition - address - category - category_group - degree - diversity_spotlight - event - event_appearance - fund - funding_round - investment - ipo - job - location - organization - ownership - person - press_reference image_id: type: string maxLength: 255 permalink: type: string maxLength: 255 uuid: type: string description: Universally Unique Identifier format: uuid value: type: string maxLength: 255 EventAppearance: type: object required: - identifier properties: appearance_type: type: string description: 'Describe how an Organization or a Person is participating in an Event (e.g. Speaker, Sponsor, etc.) * contestant - Contestant * exhibitor - Exhibitor * organizer - Organizer * speaker - Speaker * sponsor - Sponsor' enum: - exhibitor - speaker - sponsor - organizer - contestant x-enum-descriptions: - Exhibitor - Speaker - Sponsor - Organizer - Contestant x-cb-field-enum-values: - value: exhibitor description: Exhibitor - value: speaker description: Speaker - value: sponsor description: Sponsor - value: organizer description: Organizer - value: contestant description: Contestant x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* event_appearance - Event Appearance' enum: - event_appearance x-enum-descriptions: - Event Appearance x-cb-field-enum-values: - value: event_appearance description: Event Appearance x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes event_identifier: type: object description: Name of the Event allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts event_location_identifiers: type: array description: Location of the Event (e.g. Japan, San Francisco, Europe, Asia) items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all event_starts_on: type: string description: Start date of the Event format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte identifier: type: object description: Name of the Event Appearance allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts name: type: string maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains participant_identifier: type: object description: The name of the participant in an Event allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts permalink: type: string maxLength: 255 x-cb-field-type: permalink x-cb-searchable: false x-cb-search-operators: [] short_description: type: string description: A short description of how a person or an organization is participant in an Event maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes JobEntity: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/Job' organization: type: array items: $ref: '#/components/schemas/Organization' person: type: array items: $ref: '#/components/schemas/Person' properties: $ref: '#/components/schemas/Job' LocationTypeEnum: type: string enum: - city - region - country - continent - group Event: type: object required: - identifier properties: categories: type: array description: Descriptive keyword for a Company (e.g. SaaS, Android, Cloud Computing, Medical Device) items: $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all category_groups: type: array description: Superset of Industries (e.g. Software, Mobile, Health Care) items: $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte description: type: string description: Text from Event's description maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains ends_on: type: string description: End date of the Event format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* event - Event' enum: - event x-enum-descriptions: - Event x-cb-field-enum-values: - value: event description: Event x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes event_type: type: array description: Type of Event (e.g. hackathon, meetup, conference) items: type: string description: 'Type of Event (e.g. hackathon, meetup, conference) * class - Class * competition - Competition * conference - Conference * demo_day - Demo Day * expo - Expo * festival - Festival * hackathon - Hackathon * meetup - Meetup * networking - Networking * other - Other * seminar - Seminar * virtual - Virtual * webinar - Webinar' enum: - conference - meetup - demo_day - networking - hackathon - seminar - expo - competition - festival - webinar - virtual - class - other x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all event_url: type: object description: Link to main Event page allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] identifier: type: object description: Name of the Event allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts image_id: type: string description: The profile image of the event on Crunchbase maxLength: 255 x-cb-field-type: image_id x-cb-searchable: false x-cb-search-operators: [] image_url: type: string description: The url of the profile image maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] location_group_identifiers: type: array description: Regions of the Event (e.g. San Francisco Bay Area, Silicon Valley) items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all location_identifiers: type: array description: Location of the Event (e.g. Japan, San Francisco, Europe, Asia) items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all name: type: string description: Event Name maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] num_contestants: type: number description: Total number of Contestants at the Event x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_exhibitors: type: number description: Total number of Exhibitors at the Event x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_organizers: type: number description: Total number of Organizers at the Event x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_speakers: type: number description: Total number of Speakers at the Event x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_sponsors: type: number description: Total number of Sponsors for the Event x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq organizer_identifiers: type: array description: The organizer of the Event items: $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all permalink: type: string maxLength: 255 x-cb-field-type: permalink x-cb-searchable: false x-cb-search-operators: [] permalink_aliases: type: array description: These are the alternative aliases to the primary permalink of the Organization items: type: string maxLength: 255 x-cb-field-type: text_exact_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all rank: type: number description: Algorithmic rank assigned to the top profiles on Crunchbase x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank_event: type: number description: Algorithmic rank assigned to the top 100,000 most active Events x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq registration_url: type: object description: Link to the Event registration page allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] short_description: type: string description: A short description of the Event maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains starts_on: type: string description: Start date of the Event format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes venue_name: type: string description: Name of the Event venue maxLength: 255 x-cb-field-type: text_short x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts OrganizationEntity: type: object properties: cards: type: object properties: acquiree_acquisitions: type: array items: $ref: '#/components/schemas/Acquisition' acquirer_acquisitions: type: array items: $ref: '#/components/schemas/Acquisition' child_organizations: type: array items: $ref: '#/components/schemas/Organization' child_ownerships: type: array items: $ref: '#/components/schemas/Ownership' event_appearances: type: array items: $ref: '#/components/schemas/EventAppearance' fields: $ref: '#/components/schemas/Organization' founders: type: array items: $ref: '#/components/schemas/Person' headquarters_address: type: array items: $ref: '#/components/schemas/Address' investors: type: array items: $ref: '#/components/schemas/Principal' ipos: type: array items: $ref: '#/components/schemas/Ipo' jobs: type: array items: $ref: '#/components/schemas/Job' parent_organization: type: array items: $ref: '#/components/schemas/Organization' parent_ownership: type: array items: $ref: '#/components/schemas/Ownership' participated_funding_rounds: type: array items: $ref: '#/components/schemas/FundingRound' participated_funds: type: array items: $ref: '#/components/schemas/Fund' participated_investments: type: array items: $ref: '#/components/schemas/Investment' press_references: type: array items: $ref: '#/components/schemas/PressReference' raised_funding_rounds: type: array items: $ref: '#/components/schemas/FundingRound' raised_funds: type: array items: $ref: '#/components/schemas/Fund' raised_investments: type: array items: $ref: '#/components/schemas/Investment' properties: $ref: '#/components/schemas/Organization' JobFieldId: type: string description: Job field ids enum: - created_at - employee_featured_order - ended_on - entity_def_id - identifier - is_current - job_type - name - organization_identifier - permalink - person_identifier - short_description - started_on - title - updated_at - uuid DiversitySpotlight: type: object required: - identifier properties: created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* diversity_spotlight - Diversity Spotlight' enum: - diversity_spotlight x-enum-descriptions: - Diversity Spotlight x-cb-field-enum-values: - value: diversity_spotlight description: Diversity Spotlight x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes facet_ids: type: array items: type: string description: '* external - External * internal - Internal' enum: - external - internal x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all identifier: type: object description: Types of diversity represented in an organization, specifically of those who are founding members, currently the CEO, or have check-writing abilities in an investment firm. This feature is in beta and may change with future updates. allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts name: type: string description: Types of diversity represented in an organization, specifically of those who are founding members, currently the CEO, or have check-writing abilities in an investment firm. This feature is in beta and may change with future updates. maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes Investment: type: object required: - identifier properties: announced_on: type: string description: Date when the Investment is announced format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* investment - Investment' enum: - investment x-enum-descriptions: - Investment x-cb-field-enum-values: - value: investment description: Investment x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes funding_round_identifier: type: object description: Name of the funding round where the Investment is made allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts funding_round_investment_type: type: string description: 'Type of Funding Round where the Investment is made (e.g. Seed, Series A, Private Equity, Debt Financing) * angel - Angel * convertible_note - Convertible Note * corporate_round - Corporate Round * debt_financing - Debt Financing * equity_crowdfunding - Equity Crowdfunding * grant - Grant * initial_coin_offering - Initial Coin Offering * non_equity_assistance - Non-equity Assistance * post_ipo_debt - Post-IPO Debt * post_ipo_equity - Post-IPO Equity * post_ipo_secondary - Post-IPO Secondary * pre_seed - Pre-Seed * private_equity - Private Equity * product_crowdfunding - Product Crowdfunding * secondary_market - Secondary Market * seed - Seed * series_a - Series A * series_b - Series B * series_c - Series C * series_d - Series D * series_e - Series E * series_f - Series F * series_g - Series G * series_h - Series H * series_i - Series I * series_j - Series J * series_unknown - Venture - Series Unknown * undisclosed - Funding Round' enum: - pre_seed - seed - series_a - series_b - series_c - series_d - series_e - series_f - series_g - series_h - series_i - series_j - series_unknown - angel - private_equity - debt_financing - convertible_note - grant - corporate_round - equity_crowdfunding - product_crowdfunding - secondary_market - post_ipo_equity - post_ipo_debt - post_ipo_secondary - non_equity_assistance - initial_coin_offering - undisclosed x-enum-descriptions: - Pre-Seed - Seed - Series A - Series B - Series C - Series D - Series E - Series F - Series G - Series H - Series I - Series J - Venture - Series Unknown - Angel - Private Equity - Debt Financing - Convertible Note - Grant - Corporate Round - Equity Crowdfunding - Product Crowdfunding - Secondary Market - Post-IPO Equity - Post-IPO Debt - Post-IPO Secondary - Non-equity Assistance - Initial Coin Offering - Funding Round x-cb-field-enum-values: - value: pre_seed description: Pre-Seed - value: seed description: Seed - value: series_a description: Series A - value: series_b description: Series B - value: series_c description: Series C - value: series_d description: Series D - value: series_e description: Series E - value: series_f description: Series F - value: series_g description: Series G - value: series_h description: Series H - value: series_i description: Series I - value: series_j description: Series J - value: series_unknown description: Venture - Series Unknown - value: angel description: Angel - value: private_equity description: Private Equity - value: debt_financing description: Debt Financing - value: convertible_note description: Convertible Note - value: grant description: Grant - value: corporate_round description: Corporate Round - value: equity_crowdfunding description: Equity Crowdfunding - value: product_crowdfunding description: Product Crowdfunding - value: secondary_market description: Secondary Market - value: post_ipo_equity description: Post-IPO Equity - value: post_ipo_debt description: Post-IPO Debt - value: post_ipo_secondary description: Post-IPO Secondary - value: non_equity_assistance description: Non-equity Assistance - value: initial_coin_offering description: Initial Coin Offering - value: undisclosed description: Funding Round x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes funding_round_money_raised: type: object description: Amount of money raised in Funding Round allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq identifier: type: object description: Name of the Investment allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts investor_identifier: type: object description: Name of the investor who participated in the Investment allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts investor_stage: type: array description: This describes the stage of investor this organization or person is (e.g. Angel, Fund of Funds, Venture Capital) items: type: string description: 'This describes the stage of investor this organization or person is (e.g. Angel, Fund of Funds, Venture Capital) * convertible_note - Convertible Note * crowdfunding - Crowdfunding * debt - Debt * early_stage_venture - Early Stage Venture * grant - Grant * initial_coin_offering - Initial Coin Offering * late_stage_venture - Late Stage Venture * non_equity_assistance - Non Equity Assistance * post_ipo - Post-Ipo * private_equity - Private Equity * secondary_market - Secondary Market * seed - Seed * venture - Venture' enum: - seed - early_stage_venture - late_stage_venture - venture - private_equity - crowdfunding - debt - grant - non_equity_assistance - convertible_note - secondary_market - post_ipo - initial_coin_offering x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all investor_type: type: array description: This describes the type of investor this organization or person is (e.g. Angel, Fund of Funds, Venture Capital) items: type: string description: 'This describes the type of investor this organization or person is (e.g. Angel, Fund of Funds, Venture Capital) * accelerator - Accelerator * angel - Individual/Angel * angel_group - Angel Group * co_working_space - Co-Working Space * corporate_venture_capital - Corporate Venture Capital * entrepreneurship_program - Entrepreneurship Program * family_investment_office - Family Investment Office * fund_of_funds - Fund Of Funds * government_office - Government Office * hedge_fund - Hedge Fund * incubator - Incubator * investment_bank - Investment Bank * investment_partner - Investment Partner * micro_vc - Micro VC * pension_funds - Pension Funds * private_equity_firm - Private Equity Firm * secondary_purchaser - Secondary Purchaser * startup_competition - Startup Competition * syndicate - Syndicate * university_program - University Program * venture_capital - Venture Capital * venture_debt - Venture Debt' enum: - venture_capital - angel - investment_partner - corporate_venture_capital - private_equity_firm - accelerator - micro_vc - angel_group - incubator - investment_bank - family_investment_office - venture_debt - co_working_space - fund_of_funds - hedge_fund - government_office - university_program - entrepreneurship_program - secondary_purchaser - startup_competition - syndicate - pension_funds x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all is_lead_investor: type: boolean description: This field indicates whether an investor led/organized the investment x-cb-field-type: boolean x-cb-searchable: true x-cb-search-operators: - blank - eq money_invested: type: object description: Amount of money an Investor contributed into an investment allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq name: type: string maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] organization_diversity_spotlights: type: array description: Types of diversity represented in an organization, specifically of those who are founding members, currently the CEO, or have check-writing abilities in an investment firm. This feature is in beta and may change with future updates. items: $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all organization_identifier: type: object description: Name of the organization that received the investment allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts partner_identifiers: type: array description: Name of the individual who led a funding round for his/her firm items: $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all permalink: type: string maxLength: 255 x-cb-field-type: permalink x-cb-searchable: false x-cb-search-operators: [] updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes EventAppearanceFieldId: type: string description: EventAppearance field ids enum: - appearance_type - created_at - entity_def_id - event_identifier - event_location_identifiers - event_starts_on - identifier - name - participant_identifier - permalink - short_description - updated_at - uuid FundingRoundFieldId: type: string description: FundingRound field ids enum: - announced_on - closed_on - created_at - entity_def_id - funded_organization_categories - funded_organization_description - funded_organization_diversity_spotlights - funded_organization_funding_stage - funded_organization_funding_total - funded_organization_identifier - funded_organization_location - funded_organization_revenue_range - identifier - image_id - investment_stage - investment_type - investor_identifiers - is_equity - lead_investor_identifiers - money_raised - name - num_investors - num_partners - permalink - post_money_valuation - post_money_valuation_source - pre_money_valuation - rank - rank_funding_round - short_description - target_money_raised - updated_at - uuid CurrencyEnum: type: string description: Currency codes enum: - AED - AFN - ALL - AMD - ANG - AOA - ARS - AUD - AWG - AZN - BAM - BBD - BDT - BGN - BHD - BIF - BMD - BND - BOB - BRL - BSD - BTN - BWP - BYN - BYR - BZD - CAD - CDF - CHF - CLF - CLP - CNY - COP - CRC - CUC - CUP - CVE - CZK - DJF - DKK - DOP - DZD - EGP - ERN - ETB - EUR - FJD - FKP - GBP - GEL - GHS - GIP - GMD - GNF - GTQ - GYD - HKD - HNL - HRK - HTG - HUF - IDR - ILS - INR - IQD - IRR - ISK - JMD - JOD - JPY - KES - KGS - KHR - KMF - KPW - KRW - KWD - KYD - KZT - LAK - LBP - LKR - LRD - LSL - LTL - LVL - LYD - MAD - MDL - MGA - MKD - MMK - MNT - MOP - MRO - MUR - MVR - MWK - MXN - MYR - MZN - NAD - NGN - NIO - NOK - NPR - NZD - OMR - PAB - PEN - PGK - PHP - PKR - PLN - PYG - QAR - RON - RSD - RUB - RWF - SAR - SBD - SCR - SDG - SEK - SGD - SHP - SKK - SLL - SOS - SRD - SSP - STD - SVC - SYP - SZL - THB - TJS - TMT - TND - TOP - TRY - TTD - TWD - TZS - UAH - UGX - USD - UYU - UZS - VEF - VND - VUV - WST - XAF - XAG - XAU - XBA - XBB - XBC - XBD - XCD - XDR - XOF - XPD - XPF - XPT - xts - YER - ZAR - ZMK - ZMW Errors: type: object description: Developer friendly error message properties: value: type: string description: stuff Link: type: object description: An object representing both the url and some labeling text for that url properties: label: type: string maxLength: 8192 value: type: string maxLength: 8192 DiversitySpotlightEntity: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/DiversitySpotlight' properties: $ref: '#/components/schemas/DiversitySpotlight' FundingRoundEntity: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/FundingRound' investments: type: array items: $ref: '#/components/schemas/Investment' investors: type: array items: $ref: '#/components/schemas/Principal' lead_investors: type: array items: $ref: '#/components/schemas/Principal' organization: type: array items: $ref: '#/components/schemas/Organization' partners: type: array items: $ref: '#/components/schemas/Person' press_references: type: array items: $ref: '#/components/schemas/PressReference' properties: $ref: '#/components/schemas/FundingRound' LocationFieldId: type: string description: Location field ids enum: - country_code - country_code_ext - created_at - entity_def_id - facet_ids - groups - identifier - location_type - locations - name - permalink - permalink_aliases - region_code - short_description - updated_at - uuid CategoryFieldId: type: string description: Category field ids enum: - category_groups - created_at - entity_def_id - identifier - naics_code - name - updated_at - uuid Location: type: object required: - identifier properties: country_code: type: string description: Short alphabetic or numeric geographical codes that represent countries (e.g. TWN, USA, ZAF) maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] country_code_ext: type: string maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] created_at: type: string description: Created At format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* location - Location' enum: - location x-enum-descriptions: - Location x-cb-field-enum-values: - value: location description: Location x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes facet_ids: type: array description: Type of location (e.g. City, Continent, Regional Area) items: type: string description: 'Type of location (e.g. City, Continent, Regional Area) * city - City * continent - Continent * country - Country * group - Regional Area * region - Region' enum: - city - region - country - continent - group x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all groups: type: array description: Regional areas this location belongs to (e.g. San Francisco Bay Area, Silicon Valley) items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all identifier: type: object description: Short location name (e.g. Japan, San Francisco, Europe) allOf: - $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts location_type: type: string description: 'Type of location (e.g. City, Continent, Regional Area) * city - City * continent - Continent * country - Country * group - Regional Area * region - Region' enum: - city - region - country - continent - group x-enum-descriptions: - City - Region - Country - Continent - Regional Area x-cb-field-enum-values: - value: city description: City - value: region description: Region - value: country description: Country - value: continent description: Continent - value: group description: Regional Area x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes locations: type: array description: Full location name (e.g. Denver, Colorado, United States, North America) items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all name: type: string maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] permalink: type: string maxLength: 255 x-cb-field-type: permalink x-cb-searchable: false x-cb-search-operators: [] permalink_aliases: type: array description: These are the alternative aliases to the primary permalink of the Organization items: type: string maxLength: 255 x-cb-field-type: text_exact_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all region_code: type: string description: Region code used to define location maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] short_description: type: string description: Description maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains updated_at: type: string description: Updated At format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes EventAppearanceEntity: type: object properties: cards: type: object properties: event: type: array items: $ref: '#/components/schemas/Event' fields: $ref: '#/components/schemas/EventAppearance' participant: type: array items: $ref: '#/components/schemas/Principal' properties: $ref: '#/components/schemas/EventAppearance' OrganizationFieldId: type: string description: Organization field ids enum: - acquirer_identifier - aliases - categories - category_groups - closed_on - company_type - contact_email - created_at - delisted_on - demo_days - description - diversity_spotlights - entity_def_id - equity_funding_total - exited_on - facebook - facet_ids - founded_on - founder_identifiers - funding_stage - funding_total - funds_total - hub_tags - identifier - image_id - image_url - investor_identifiers - investor_stage - investor_type - ipo_status - last_equity_funding_total - last_equity_funding_type - last_funding_at - last_funding_total - last_funding_type - layout_id - legal_name - linkedin - listed_stock_symbol - location_group_identifiers - location_identifiers - name - num_acquisitions - num_alumni - num_articles - num_current_advisor_positions - num_current_positions - num_diversity_spotlight_investments - num_employees_enum - num_enrollments - num_event_appearances - num_exits - num_exits_ipo - num_founder_alumni - num_founders - num_funding_rounds - num_funds - num_investments - num_investors - num_lead_investments - num_lead_investors - num_past_positions - num_portfolio_organizations - num_sub_organizations - operating_status - owner_identifier - permalink - permalink_aliases - phone_number - program_application_deadline - program_duration - program_type - rank - rank_delta_d30 - rank_delta_d7 - rank_delta_d90 - rank_org - revenue_range - school_method - school_program - school_type - short_description - status - stock_exchange_symbol - stock_symbol - twitter - updated_at - uuid - valuation - valuation_date - website - website_url - went_public_on AddressEntity: type: object properties: cards: type: object properties: event: type: array items: $ref: '#/components/schemas/Event' fields: $ref: '#/components/schemas/Address' organization: type: array items: $ref: '#/components/schemas/Organization' properties: $ref: '#/components/schemas/Address' CategoryGroup: type: object required: - identifier properties: categories: type: array description: Descriptive keyword for an Organization (e.g. SaaS, Android, Cloud Computing, Medical Device) items: $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* category_group - Industry Group' enum: - category_group x-enum-descriptions: - Industry Group x-cb-field-enum-values: - value: category_group description: Industry Group x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Superset of Industries (e.g. Software, Mobile, Health Care) allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts name: type: string description: Descriptive name of the Industry Group maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes Acquisition: type: object required: - identifier properties: acquiree_categories: type: array description: Keyword, sector, or industry items: $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all acquiree_funding_total: type: object description: Total funding amount raised across all acquired organization's funding rounds allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq acquiree_identifier: type: object description: Name of the acquired organization allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts acquiree_last_funding_type: type: string description: 'Last funding round type (e.g. Series A, Seed, Private Equity) * angel - Angel * convertible_note - Convertible Note * corporate_round - Corporate Round * debt_financing - Debt Financing * equity_crowdfunding - Equity Crowdfunding * grant - Grant * initial_coin_offering - Initial Coin Offering * non_equity_assistance - Non-equity Assistance * post_ipo_debt - Post-IPO Debt * post_ipo_equity - Post-IPO Equity * post_ipo_secondary - Post-IPO Secondary * pre_seed - Pre-Seed * private_equity - Private Equity * product_crowdfunding - Product Crowdfunding * secondary_market - Secondary Market * seed - Seed * series_a - Series A * series_b - Series B * series_c - Series C * series_d - Series D * series_e - Series E * series_f - Series F * series_g - Series G * series_h - Series H * series_i - Series I * series_j - Series J * series_unknown - Venture - Series Unknown * undisclosed - Undisclosed' enum: - pre_seed - seed - series_a - series_b - series_c - series_d - series_e - series_f - series_g - series_h - series_i - series_j - series_unknown - angel - private_equity - debt_financing - convertible_note - grant - corporate_round - equity_crowdfunding - product_crowdfunding - secondary_market - post_ipo_equity - post_ipo_debt - post_ipo_secondary - non_equity_assistance - initial_coin_offering - undisclosed x-enum-descriptions: - Pre-Seed - Seed - Series A - Series B - Series C - Series D - Series E - Series F - Series G - Series H - Series I - Series J - Venture - Series Unknown - Angel - Private Equity - Debt Financing - Convertible Note - Grant - Corporate Round - Equity Crowdfunding - Product Crowdfunding - Secondary Market - Post-IPO Equity - Post-IPO Debt - Post-IPO Secondary - Non-equity Assistance - Initial Coin Offering - Undisclosed x-cb-field-enum-values: - value: pre_seed description: Pre-Seed - value: seed description: Seed - value: series_a description: Series A - value: series_b description: Series B - value: series_c description: Series C - value: series_d description: Series D - value: series_e description: Series E - value: series_f description: Series F - value: series_g description: Series G - value: series_h description: Series H - value: series_i description: Series I - value: series_j description: Series J - value: series_unknown description: Venture - Series Unknown - value: angel description: Angel - value: private_equity description: Private Equity - value: debt_financing description: Debt Financing - value: convertible_note description: Convertible Note - value: grant description: Grant - value: corporate_round description: Corporate Round - value: equity_crowdfunding description: Equity Crowdfunding - value: product_crowdfunding description: Product Crowdfunding - value: secondary_market description: Secondary Market - value: post_ipo_equity description: Post-IPO Equity - value: post_ipo_debt description: Post-IPO Debt - value: post_ipo_secondary description: Post-IPO Secondary - value: non_equity_assistance description: Non-equity Assistance - value: initial_coin_offering description: Initial Coin Offering - value: undisclosed description: Undisclosed x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes acquiree_locations: type: array description: Where the acquired organization is headquartered items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all acquiree_num_funding_rounds: type: number description: Acquired organization's total number of funding rounds x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq acquiree_revenue_range: type: string description: 'Estimated revenue range for acquired organization * r_00000000 - Less than $1M * r_00001000 - $1M to $10M * r_00010000 - $10M to $50M * r_00050000 - $50M to $100M * r_00100000 - $100M to $500M * r_00500000 - $500M to $1B * r_01000000 - $1B to $10B * r_10000000 - $10B+' enum: - r_00000000 - r_00001000 - r_00010000 - r_00050000 - r_00100000 - r_00500000 - r_01000000 - r_10000000 x-enum-descriptions: - Less than $1M - $1M to $10M - $10M to $50M - $50M to $100M - $100M to $500M - $500M to $1B - $1B to $10B - $10B+ x-cb-field-enum-values: - value: r_00000000 description: Less than $1M - value: r_00001000 description: $1M to $10M - value: r_00010000 description: $10M to $50M - value: r_00050000 description: $50M to $100M - value: r_00100000 description: $100M to $500M - value: r_00500000 description: $500M to $1B - value: r_01000000 description: $1B to $10B - value: r_10000000 description: $10B+ x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes acquiree_short_description: type: string description: Text of acquired organization's description, industries, and industry groups maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains acquirer_categories: type: array description: Keyword, sector, or industry items: $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all acquirer_funding_stage: type: string description: 'Acquiring organization''s most recent funding status * early_stage_venture - Early Stage Venture * ipo - IPO * late_stage_venture - Late Stage Venture * m_and_a - M&A * private_equity - Private Equity * seed - Seed' enum: - seed - early_stage_venture - late_stage_venture - private_equity - m_and_a - ipo x-enum-descriptions: - Seed - Early Stage Venture - Late Stage Venture - Private Equity - M&A - IPO x-cb-field-enum-values: - value: seed description: Seed - value: early_stage_venture description: Early Stage Venture - value: late_stage_venture description: Late Stage Venture - value: private_equity description: Private Equity - value: m_and_a description: M&A - value: ipo description: IPO x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes acquirer_funding_total: type: object description: Total funding amount raised across all acquiring organization's funding rounds allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq acquirer_identifier: type: object description: Name of the acquiring organization allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts acquirer_locations: type: array description: Where the organization is headquartered items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all acquirer_num_funding_rounds: type: number description: Acquiring organization's total number of funding rounds x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq acquirer_revenue_range: type: string description: 'Estimated revenue range for acquiring organization * r_00000000 - Less than $1M * r_00001000 - $1M to $10M * r_00010000 - $10M to $50M * r_00050000 - $50M to $100M * r_00100000 - $100M to $500M * r_00500000 - $500M to $1B * r_01000000 - $1B to $10B * r_10000000 - $10B+' enum: - r_00000000 - r_00001000 - r_00010000 - r_00050000 - r_00100000 - r_00500000 - r_01000000 - r_10000000 x-enum-descriptions: - Less than $1M - $1M to $10M - $10M to $50M - $50M to $100M - $100M to $500M - $500M to $1B - $1B to $10B - $10B+ x-cb-field-enum-values: - value: r_00000000 description: Less than $1M - value: r_00001000 description: $1M to $10M - value: r_00010000 description: $10M to $50M - value: r_00050000 description: $50M to $100M - value: r_00100000 description: $100M to $500M - value: r_00500000 description: $500M to $1B - value: r_01000000 description: $1B to $10B - value: r_10000000 description: $10B+ x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes acquirer_short_description: type: string description: Text of acquiring organization's description, industries, and industry groups maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains acquisition_type: type: string description: 'Type of acquisition * acquihire - Acquihire * acquisition - Acquisition * lbo - Leveraged Buyout * management_buyout - Management Buyout * merge - Merger' enum: - acquisition - merge - lbo - acquihire - management_buyout x-enum-descriptions: - Acquisition - Merger - Leveraged Buyout - Acquihire - Management Buyout x-cb-field-enum-values: - value: acquisition description: Acquisition - value: merge description: Merger - value: lbo description: Leveraged Buyout - value: acquihire description: Acquihire - value: management_buyout description: Management Buyout x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes announced_on: type: object description: Date the acquisition was announced allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte completed_on: type: object description: Date the Acquisition was completed allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte disposition_of_acquired: type: string description: 'How is the acquired Organization structured after the acquisition * combined - Combined * division - Division * product - Product * separate_entity - Separate Entity * subsidiary - Subsidiary' enum: - subsidiary - separate_entity - combined - division - product x-enum-descriptions: - Subsidiary - Separate Entity - Combined - Division - Product x-cb-field-enum-values: - value: subsidiary description: Subsidiary - value: separate_entity description: Separate Entity - value: combined description: Combined - value: division description: Division - value: product description: Product x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes entity_def_id: type: string description: '* acquisition - Acquisition' enum: - acquisition x-enum-descriptions: - Acquisition x-cb-field-enum-values: - value: acquisition description: Acquisition x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Auto-generated name of transaction (e.g. WhatsApp acquired by Facebook) allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts permalink: type: string maxLength: 255 x-cb-field-type: permalink x-cb-searchable: false x-cb-search-operators: [] price: type: object description: Price of the acquisition allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank: type: number description: Algorithmic rank assigned to the top profiles on Crunchbase x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank_acquisition: type: number description: Algorithmic rank assigned to the top 100,000 most active Acquisitions x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq short_description: type: string description: Short description of the Acquisition maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains status: type: string description: 'Status of the acquisition * complete - Complete * pending - Pending' enum: - complete - pending x-enum-descriptions: - Complete - Pending x-cb-field-enum-values: - value: complete description: Complete - value: pending description: Pending x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes terms: type: string description: 'Terms of the acquisition * cash - Cash * cash_and_stock - Cash & Stock * stock - Stock' enum: - cash - stock - cash_and_stock x-enum-descriptions: - Cash - Stock - Cash & Stock x-cb-field-enum-values: - value: cash description: Cash - value: stock description: Stock - value: cash_and_stock description: Cash & Stock x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes IpoFieldId: type: string description: Ipo field ids enum: - amount_raised - created_at - delisted_on - entity_def_id - identifier - image_id - organization_identifier - permalink - rank - rank_ipo - share_price - shares_outstanding - shares_sold - short_description - stock_exchange_symbol - stock_full_symbol - stock_symbol - updated_at - uuid - valuation - went_public_on EventFieldId: type: string description: Event field ids enum: - categories - category_groups - created_at - description - ends_on - entity_def_id - event_type - event_url - identifier - image_id - image_url - location_group_identifiers - location_identifiers - name - num_contestants - num_exhibitors - num_organizers - num_speakers - num_sponsors - organizer_identifiers - permalink - permalink_aliases - rank - rank_event - registration_url - short_description - starts_on - updated_at - uuid - venue_name FundEntity: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/Fund' investors: type: array items: $ref: '#/components/schemas/Principal' owner: type: array items: $ref: '#/components/schemas/Organization' press_references: type: array items: $ref: '#/components/schemas/PressReference' properties: $ref: '#/components/schemas/Fund' AddressFieldId: type: string description: Address field ids enum: - country_code - created_at - entity_def_id - headquartered_organization_identifier - identifier - location_identifiers - name - postal_code - region_code - street_1 - street_2 - updated_at - uuid CategoryGroupEntity: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/CategoryGroup' properties: $ref: '#/components/schemas/CategoryGroup' Category: type: object required: - identifier properties: category_groups: type: array description: Superset of Industries (e.g. Software, Mobile, Health Care) items: $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* category - Industry' enum: - category x-enum-descriptions: - Industry x-cb-field-enum-values: - value: category description: Industry x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Descriptive keyword for a Company (e.g. SaaS, Android, Cloud Computing, Medical Device) allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts naics_code: type: string maxLength: 255 x-cb-field-type: text_exact x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes name: type: string description: Descriptive name of the Industry maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes LocationEntity: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/Location' properties: $ref: '#/components/schemas/Location' Ipo: type: object required: - identifier properties: amount_raised: type: object description: Total amount raised from the IPO allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte delisted_on: type: object description: Date when the organization delisted its stock allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* ipo - Ipo' enum: - ipo x-enum-descriptions: - Ipo x-cb-field-enum-values: - value: ipo description: Ipo x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Stock ticker symbol (e.g. AAPL, FB, TWTR) allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts image_id: type: string maxLength: 255 x-cb-field-type: image_id x-cb-searchable: false x-cb-search-operators: [] organization_identifier: type: object description: Organization went public allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts permalink: type: string maxLength: 255 x-cb-field-type: permalink x-cb-searchable: false x-cb-search-operators: [] rank: type: number description: Algorithmic rank assigned to the top profiles on Crunchbase x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank_ipo: type: number description: Algorithmic rank assigned to the top 100,000 most active IPOs x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq share_price: type: object description: The share price for the stock at the time of IPO allOf: - $ref: '#/components/schemas/MoneyDecimal' x-cb-field-type: money_decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq shares_outstanding: type: number description: Number of shares that were outstanding at the time of IPO x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq shares_sold: type: number description: Number of shares sold at the time of IPO x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq short_description: type: string maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains stock_exchange_symbol: type: string description: 'Stock exchange where the Organization is listed (e.g. NYSE, NASDAQ) * adx - ADX - Abu Dhabi Securities Exchange * afx - AFX - Afghanistan Stock Exchange * altx - ALTX - ALTX East Africa Exchange * amex - AMEX - American Stock Exchange * ams - AMS - Euronext Amsterdam * amx - AMX - Armenia Securities Exchange * asce - ASCE - Abuja Securities and Commodities Exchange * asx - ASX - Australian Securities Exchange * ath - ATH - Athens Stock Exchange * bcba - BCBA - Buenos Aires Stock Exchange * bdp - BDP - Budapest Stock Exchange * belex - BELEX - Belgrade Stock Exchange * ber - BER - Berliner Börse * bfb - BFB - Baku Stock Exchange * bit - BIT - Italian Stock Exchange * bkk - BKK - Thailand Stock Exchange * blse - BLSE - Banja Luka Stock Exchange * bme - BME - Madrid Stock Exchange * bmv - BMV - Mexican Stock Exchange * bom - BOM - Bombay Stock Exchange * brvm - BRVM - Regional Securities Exchange SA * bse - BSE - Bulgarian Stock Exchange * bse_lb - BSE - Beirut Stock Exchange * bsse - BSSE - Bratislava Stock Exchange * bsx - BSX - Bermuda Stock Exchange * bvb - BVB - Bucharest Stock Exchange * bvc - BVC - Colombian Stock Exchange * bvfb - BVFB - Belarusian Currency and Stock Exchange * bvm - BVM - Montevideo Stock Exchange * bvmf - B3 - Brazil Stock Exchange and OTC Market * bvmt - BVMT - Tunis Stock Exchange * bx - BX - Berne Stock Exchange * cas - CAS - Casablanca Stock Exchange * cise - CISE - Channel Islands Stock Exchange * cnsx - CNSX - Canadian National Stock Exchange * col - COL - Colombo Stock Exchange * cph - CPH - Copenhagen Stock Exchange * cse - CSE - Canadian Securities Exchange * cse_cy - CSE - Cyprus Stock Exchange * csx - CSX - Cambodia Securities Exchange * cve - TSX-V - Toronto TSX Venture Exchange * dfm - DFM - Dubai Financial Market * dse - DSE - Dhaka Stock Exchange * dsx - DSX - Douala Stock Exchange * dus - DUS - Börse Düsseldorf * ebr - EBR - Euronext Brussels * egx - EGX - Egypt Stock Exchange * eli - ELI - Euronext Lisbon * epa - EPA - Euronext Paris * etr - ETR - Deutsche Börse XETRA * eurex - EUREX - Eurex Exchange * fra - FRA - Frankfurt Stock Exchange * fwb - FWB - Börse Frankfurt Stock Exchange * gha - GHA - Ghana Stock Exchange * gsx - GSX - Georgian Stock Exchange * gsx_gi - GSX - Gibraltar Stock Exchange * hel - HEL - Helsinki Stock Exchange * hkg - HKG - Hong Kong Stock Exchange * hnx - HNX - Hanoi Stock Exchange * hose - HOSE - Ho Chi Minh Stock Exchange * ice - ICE - Iceland Stock Exchange * idx - IDX - Indonesia Stock Exchange * iex - IEX - Investors Exchange * ifb - IFB - Iran Fara Bourse * ime - IME - Iran Mercantile Exchange * irenex - IRENEX - Iran Energy Exchange * ise - ISE - Irish Stock Exchange * ist - IST - Istanbul Stock Exchange * isx - ISX - Iraq Stock Exchange * jp - JP - Japan Exchange * jsc - JSC - Belarusian Currency and Stock Exchange * jse - JSE - Johannesburg Stock Exchange * jse_jam - JSE - Jamaica Stock Exchange * kase - KASE - Kazakhstan Stock Exchange * klse - KLSE - Malaysia Stock Exchange * kosdaq - KOSDAQ - Korean Securities Dealers Automated Quotations * krx - KRX - Korea Stock Exchange * kse - KSE - Kuwait Stock Exchange * lje - LJE - Ljubljana Stock Exchange * lse - LSE - London Stock Exchange * lsm - LSM - Libyan Stock Market * lsx - LSX - Lao Securities Exchange * luse - LuSE - Lusaka Securities Exchange * luxse - LuxSE - Luxembourg Stock Exchange * mal - MAL - Malta Stock Exchange * mcx - MCX - Multi Commodity Exchange of India * meff - MEFF - Mercado Spanish Financial Futures Market * mnse - MNSE - Montenegro Stock Exchange * moex - MOEX - Moscow Exchange * mse - MSE - Metropolitan Stock Exchange * mse_md - MSE - Moldova Stock Exchange * mse_mk - MSE - Macedonian Stock Exchange * msei - MSEI - Metropolitan Stock Exchange of India * msm - MSM - Muscat Securities Market * mun - MUN - Börse München * nasdaq - NASDAQ * nbo - NSE - Nairobi Securities Exchange * neeq - NEEQ - National Equities Exchange and Quotations * nepse - NEPSE - Nepal Stock Exchange * nex - NEX - NEX Exchange * ngm - NGM - Nordic Growth Market Exchange * nig - NIG - Nigerian Stock Exchange * notc - NOTC - Norwegian OTC * npex - NPEX - NPEX Stock Exchange * nse - NSE - National Stock Exchange of India * nsx - NSX - National Stock Exchange of Australia * nyse - NYSE - New York Stock Exchange * nysearca - NYSEARCA - NYSE Arca * nysemkt - NYSEAMERICAN - NYSE American * nze - NZE - New Zealand Stock Exchange * ose - OSE - Oslo Stock Exchange * otcbb - OTCBB - FINRA OTC Bulletin Board * otcpink - OTC Pink * otcqb - OTCQB * otcqx - OTCQX * pdex - PDEx - Philippine Dealing Exchange * pex - PEX - Palestine Exchange * pfts - PFTS - PFTS Ukraine Stock Exchange * pomsox - POMSoX - Port Moresby Stock Exchange * prg - PRA - Prague Stock Exchange * pse - PSE - Philippine Stock Exchange * psx - PSX - Pakistan Stock Exchange * qse - QSE - Qatar Stock Exchange * rfb - RFB - Riga Stock Exchange * rse - RSE - Rwanda Stock Exchange * rsebl - RSEBL - Royal Securities Exchange of Bhutan * sase - SASE - Sarajevo Stock Exchange * sbx - SBX - BX Swiss * sehk - SEHK - The Stock Exchange of Hong Kong * sem - SEM - Stock Exchange of Mauritius * sgbv - SGBV - Algiers Stock Exchange * sgx - SGX - Singapore Stock Exchange * six - SIX - SIX Swiss Exchange * spbex - SPBEX - Saint Petersburg Stock Exchange * spse - SPSE - South Pacific Stock Exchange * sse - SSE - Shanghai Stock Exchange * ssx - SSX - Sydney Stock Exchange * sto - STO - Stockholm Stock Exchange * stu - STU - Börse Stuttgart * swx - SWX - SIX Swiss Exchange * szse - SZSE - Shenzhen Stock Exchange * tadawul - Tadawul - Saudi Stock Exchange * tal - TSE - Tallinn Stock Exchange * tfex - TFEX - Thailand Futures Exchange * tise - TISE - The International Stock Exchange * tlv - TLV - Tel Aviv Stock Exchange * tpe - TWSE - Taiwan Stock Exchange * tse_al - TSE - Tirana Stock Exchange * tse_ir - TSE - Tehran Stock Exchange * tsec - TWO - Taiwan OTC Exchange * tsx - TSX - Toronto Stock Exchange * ttse - TTSE - Trinidad and Tobago Stock Exchange * tyo - TYO - Tokyo Stock Exchange * use - USE - Uganda Securities Exchange * ux - UX - Ukrainian Exchange * vie - VIE - Vienna Stock Exchange * vmf - VMF - Faroese Securities Market * vse - VSE - Vancouver Stock Exchange * wse - WSE - Warsaw Stock Exchange * ysx - YSX - Yangon Stock Exchange * zamace - ZAMACE - Zambian Commodity Exchange * zse - ZSE - Zimbabwe Stock Exchange * zse_hr - ZSE - Zagreb Stock Exchange' enum: - adx - afx - altx - amx - amex - ams - asce - asx - ath - bcba - bdp - belex - ber - bfb - bit - bkk - blse - bme - bmv - bom - brvm - bse - bse_lb - bsse - bsx - bvb - bvc - bvfb - bvm - bvmf - bvmt - bx - cas - cise - cnsx - col - cph - cse - cse_cy - csx - dfm - dse - dsx - dus - ebr - egx - eli - epa - etr - eurex - fra - fwb - gha - gsx - gsx_gi - hel - hkg - hnx - hose - ice - idx - iex - ifb - ime - irenex - ise - ist - isx - jp - jsc - jse - jse_jam - kase - klse - kosdaq - krx - kse - lje - lse - lsm - lsx - luse - luxse - mal - mcx - meff - mnse - moex - mse - mse_md - mse_mk - msei - msm - mun - nasdaq - nbo - nex - nepse - neeq - ngm - nig - notc - npex - nse - nsx - nyse - nysearca - nysemkt - nze - ose - otcbb - otcpink - otcqb - otcqx - pdex - pex - pfts - pomsox - prg - pse - psx - qse - rfb - rse - rsebl - sase - sbx - sehk - sem - sgbv - sgx - six - spbex - spse - sse - ssx - sto - stu - swx - szse - tal - tfex - tise - tlv - tpe - tse_al - tse_ir - tsec - tsx - cve - tyo - ttse - tadawul - use - ux - vie - vmf - vse - wse - ysx - zamace - zse - zse_hr x-enum-descriptions: - ADX - Abu Dhabi Securities Exchange - AFX - Afghanistan Stock Exchange - ALTX - ALTX East Africa Exchange - AMX - Armenia Securities Exchange - AMEX - American Stock Exchange - AMS - Euronext Amsterdam - ASCE - Abuja Securities and Commodities Exchange - ASX - Australian Securities Exchange - ATH - Athens Stock Exchange - BCBA - Buenos Aires Stock Exchange - BDP - Budapest Stock Exchange - BELEX - Belgrade Stock Exchange - BER - Berliner Börse - BFB - Baku Stock Exchange - BIT - Italian Stock Exchange - BKK - Thailand Stock Exchange - BLSE - Banja Luka Stock Exchange - BME - Madrid Stock Exchange - BMV - Mexican Stock Exchange - BOM - Bombay Stock Exchange - BRVM - Regional Securities Exchange SA - BSE - Bulgarian Stock Exchange - BSE - Beirut Stock Exchange - BSSE - Bratislava Stock Exchange - BSX - Bermuda Stock Exchange - BVB - Bucharest Stock Exchange - BVC - Colombian Stock Exchange - BVFB - Belarusian Currency and Stock Exchange - BVM - Montevideo Stock Exchange - B3 - Brazil Stock Exchange and OTC Market - BVMT - Tunis Stock Exchange - BX - Berne Stock Exchange - CAS - Casablanca Stock Exchange - CISE - Channel Islands Stock Exchange - CNSX - Canadian National Stock Exchange - COL - Colombo Stock Exchange - CPH - Copenhagen Stock Exchange - CSE - Canadian Securities Exchange - CSE - Cyprus Stock Exchange - CSX - Cambodia Securities Exchange - DFM - Dubai Financial Market - DSE - Dhaka Stock Exchange - DSX - Douala Stock Exchange - DUS - Börse Düsseldorf - EBR - Euronext Brussels - EGX - Egypt Stock Exchange - ELI - Euronext Lisbon - EPA - Euronext Paris - ETR - Deutsche Börse XETRA - EUREX - Eurex Exchange - FRA - Frankfurt Stock Exchange - FWB - Börse Frankfurt Stock Exchange - GHA - Ghana Stock Exchange - GSX - Georgian Stock Exchange - GSX - Gibraltar Stock Exchange - HEL - Helsinki Stock Exchange - HKG - Hong Kong Stock Exchange - HNX - Hanoi Stock Exchange - HOSE - Ho Chi Minh Stock Exchange - ICE - Iceland Stock Exchange - IDX - Indonesia Stock Exchange - IEX - Investors Exchange - IFB - Iran Fara Bourse - IME - Iran Mercantile Exchange - IRENEX - Iran Energy Exchange - ISE - Irish Stock Exchange - IST - Istanbul Stock Exchange - ISX - Iraq Stock Exchange - JP - Japan Exchange - JSC - Belarusian Currency and Stock Exchange - JSE - Johannesburg Stock Exchange - JSE - Jamaica Stock Exchange - KASE - Kazakhstan Stock Exchange - KLSE - Malaysia Stock Exchange - KOSDAQ - Korean Securities Dealers Automated Quotations - KRX - Korea Stock Exchange - KSE - Kuwait Stock Exchange - LJE - Ljubljana Stock Exchange - LSE - London Stock Exchange - LSM - Libyan Stock Market - LSX - Lao Securities Exchange - LuSE - Lusaka Securities Exchange - LuxSE - Luxembourg Stock Exchange - MAL - Malta Stock Exchange - MCX - Multi Commodity Exchange of India - MEFF - Mercado Spanish Financial Futures Market - MNSE - Montenegro Stock Exchange - MOEX - Moscow Exchange - MSE - Metropolitan Stock Exchange - MSE - Moldova Stock Exchange - MSE - Macedonian Stock Exchange - MSEI - Metropolitan Stock Exchange of India - MSM - Muscat Securities Market - MUN - Börse München - NASDAQ - NSE - Nairobi Securities Exchange - NEX - NEX Exchange - NEPSE - Nepal Stock Exchange - NEEQ - National Equities Exchange and Quotations - NGM - Nordic Growth Market Exchange - NIG - Nigerian Stock Exchange - NOTC - Norwegian OTC - NPEX - NPEX Stock Exchange - NSE - National Stock Exchange of India - NSX - National Stock Exchange of Australia - NYSE - New York Stock Exchange - NYSEARCA - NYSE Arca - NYSEAMERICAN - NYSE American - NZE - New Zealand Stock Exchange - OSE - Oslo Stock Exchange - OTCBB - FINRA OTC Bulletin Board - OTC Pink - OTCQB - OTCQX - PDEx - Philippine Dealing Exchange - PEX - Palestine Exchange - PFTS - PFTS Ukraine Stock Exchange - POMSoX - Port Moresby Stock Exchange - PRA - Prague Stock Exchange - PSE - Philippine Stock Exchange - PSX - Pakistan Stock Exchange - QSE - Qatar Stock Exchange - RFB - Riga Stock Exchange - RSE - Rwanda Stock Exchange - RSEBL - Royal Securities Exchange of Bhutan - SASE - Sarajevo Stock Exchange - SBX - BX Swiss - SEHK - The Stock Exchange of Hong Kong - SEM - Stock Exchange of Mauritius - SGBV - Algiers Stock Exchange - SGX - Singapore Stock Exchange - SIX - SIX Swiss Exchange - SPBEX - Saint Petersburg Stock Exchange - SPSE - South Pacific Stock Exchange - SSE - Shanghai Stock Exchange - SSX - Sydney Stock Exchange - STO - Stockholm Stock Exchange - STU - Börse Stuttgart - SWX - SIX Swiss Exchange - SZSE - Shenzhen Stock Exchange - TSE - Tallinn Stock Exchange - TFEX - Thailand Futures Exchange - TISE - The International Stock Exchange - TLV - Tel Aviv Stock Exchange - TWSE - Taiwan Stock Exchange - TSE - Tirana Stock Exchange - TSE - Tehran Stock Exchange - TWO - Taiwan OTC Exchange - TSX - Toronto Stock Exchange - TSX-V - Toronto TSX Venture Exchange - TYO - Tokyo Stock Exchange - TTSE - Trinidad and Tobago Stock Exchange - Tadawul - Saudi Stock Exchange - USE - Uganda Securities Exchange - UX - Ukrainian Exchange - VIE - Vienna Stock Exchange - VMF - Faroese Securities Market - VSE - Vancouver Stock Exchange - WSE - Warsaw Stock Exchange - YSX - Yangon Stock Exchange - ZAMACE - Zambian Commodity Exchange - ZSE - Zimbabwe Stock Exchange - ZSE - Zagreb Stock Exchange x-cb-field-enum-values: - value: adx description: ADX - Abu Dhabi Securities Exchange - value: afx description: AFX - Afghanistan Stock Exchange - value: altx description: ALTX - ALTX East Africa Exchange - value: amx description: AMX - Armenia Securities Exchange - value: amex description: AMEX - American Stock Exchange - value: ams description: AMS - Euronext Amsterdam - value: asce description: ASCE - Abuja Securities and Commodities Exchange - value: asx description: ASX - Australian Securities Exchange - value: ath description: ATH - Athens Stock Exchange - value: bcba description: BCBA - Buenos Aires Stock Exchange - value: bdp description: BDP - Budapest Stock Exchange - value: belex description: BELEX - Belgrade Stock Exchange - value: ber description: BER - Berliner Börse - value: bfb description: BFB - Baku Stock Exchange - value: bit description: BIT - Italian Stock Exchange - value: bkk description: BKK - Thailand Stock Exchange - value: blse description: BLSE - Banja Luka Stock Exchange - value: bme description: BME - Madrid Stock Exchange - value: bmv description: BMV - Mexican Stock Exchange - value: bom description: BOM - Bombay Stock Exchange - value: brvm description: BRVM - Regional Securities Exchange SA - value: bse description: BSE - Bulgarian Stock Exchange - value: bse_lb description: BSE - Beirut Stock Exchange - value: bsse description: BSSE - Bratislava Stock Exchange - value: bsx description: BSX - Bermuda Stock Exchange - value: bvb description: BVB - Bucharest Stock Exchange - value: bvc description: BVC - Colombian Stock Exchange - value: bvfb description: BVFB - Belarusian Currency and Stock Exchange - value: bvm description: BVM - Montevideo Stock Exchange - value: bvmf description: B3 - Brazil Stock Exchange and OTC Market - value: bvmt description: BVMT - Tunis Stock Exchange - value: bx description: BX - Berne Stock Exchange - value: cas description: CAS - Casablanca Stock Exchange - value: cise description: CISE - Channel Islands Stock Exchange - value: cnsx description: CNSX - Canadian National Stock Exchange - value: col description: COL - Colombo Stock Exchange - value: cph description: CPH - Copenhagen Stock Exchange - value: cse description: CSE - Canadian Securities Exchange - value: cse_cy description: CSE - Cyprus Stock Exchange - value: csx description: CSX - Cambodia Securities Exchange - value: dfm description: DFM - Dubai Financial Market - value: dse description: DSE - Dhaka Stock Exchange - value: dsx description: DSX - Douala Stock Exchange - value: dus description: DUS - Börse Düsseldorf - value: ebr description: EBR - Euronext Brussels - value: egx description: EGX - Egypt Stock Exchange - value: eli description: ELI - Euronext Lisbon - value: epa description: EPA - Euronext Paris - value: etr description: ETR - Deutsche Börse XETRA - value: eurex description: EUREX - Eurex Exchange - value: fra description: FRA - Frankfurt Stock Exchange - value: fwb description: FWB - Börse Frankfurt Stock Exchange - value: gha description: GHA - Ghana Stock Exchange - value: gsx description: GSX - Georgian Stock Exchange - value: gsx_gi description: GSX - Gibraltar Stock Exchange - value: hel description: HEL - Helsinki Stock Exchange - value: hkg description: HKG - Hong Kong Stock Exchange - value: hnx description: HNX - Hanoi Stock Exchange - value: hose description: HOSE - Ho Chi Minh Stock Exchange - value: ice description: ICE - Iceland Stock Exchange - value: idx description: IDX - Indonesia Stock Exchange - value: iex description: IEX - Investors Exchange - value: ifb description: IFB - Iran Fara Bourse - value: ime description: IME - Iran Mercantile Exchange - value: irenex description: IRENEX - Iran Energy Exchange - value: ise description: ISE - Irish Stock Exchange - value: ist description: IST - Istanbul Stock Exchange - value: isx description: ISX - Iraq Stock Exchange - value: jp description: JP - Japan Exchange - value: jsc description: JSC - Belarusian Currency and Stock Exchange - value: jse description: JSE - Johannesburg Stock Exchange - value: jse_jam description: JSE - Jamaica Stock Exchange - value: kase description: KASE - Kazakhstan Stock Exchange - value: klse description: KLSE - Malaysia Stock Exchange - value: kosdaq description: KOSDAQ - Korean Securities Dealers Automated Quotations - value: krx description: KRX - Korea Stock Exchange - value: kse description: KSE - Kuwait Stock Exchange - value: lje description: LJE - Ljubljana Stock Exchange - value: lse description: LSE - London Stock Exchange - value: lsm description: LSM - Libyan Stock Market - value: lsx description: LSX - Lao Securities Exchange - value: luse description: LuSE - Lusaka Securities Exchange - value: luxse description: LuxSE - Luxembourg Stock Exchange - value: mal description: MAL - Malta Stock Exchange - value: mcx description: MCX - Multi Commodity Exchange of India - value: meff description: MEFF - Mercado Spanish Financial Futures Market - value: mnse description: MNSE - Montenegro Stock Exchange - value: moex description: MOEX - Moscow Exchange - value: mse description: MSE - Metropolitan Stock Exchange - value: mse_md description: MSE - Moldova Stock Exchange - value: mse_mk description: MSE - Macedonian Stock Exchange - value: msei description: MSEI - Metropolitan Stock Exchange of India - value: msm description: MSM - Muscat Securities Market - value: mun description: MUN - Börse München - value: nasdaq description: NASDAQ - value: nbo description: NSE - Nairobi Securities Exchange - value: nex description: NEX - NEX Exchange - value: nepse description: NEPSE - Nepal Stock Exchange - value: neeq description: NEEQ - National Equities Exchange and Quotations - value: ngm description: NGM - Nordic Growth Market Exchange - value: nig description: NIG - Nigerian Stock Exchange - value: notc description: NOTC - Norwegian OTC - value: npex description: NPEX - NPEX Stock Exchange - value: nse description: NSE - National Stock Exchange of India - value: nsx description: NSX - National Stock Exchange of Australia - value: nyse description: NYSE - New York Stock Exchange - value: nysearca description: NYSEARCA - NYSE Arca - value: nysemkt description: NYSEAMERICAN - NYSE American - value: nze description: NZE - New Zealand Stock Exchange - value: ose description: OSE - Oslo Stock Exchange - value: otcbb description: OTCBB - FINRA OTC Bulletin Board - value: otcpink description: OTC Pink - value: otcqb description: OTCQB - value: otcqx description: OTCQX - value: pdex description: PDEx - Philippine Dealing Exchange - value: pex description: PEX - Palestine Exchange - value: pfts description: PFTS - PFTS Ukraine Stock Exchange - value: pomsox description: POMSoX - Port Moresby Stock Exchange - value: prg description: PRA - Prague Stock Exchange - value: pse description: PSE - Philippine Stock Exchange - value: psx description: PSX - Pakistan Stock Exchange - value: qse description: QSE - Qatar Stock Exchange - value: rfb description: RFB - Riga Stock Exchange - value: rse description: RSE - Rwanda Stock Exchange - value: rsebl description: RSEBL - Royal Securities Exchange of Bhutan - value: sase description: SASE - Sarajevo Stock Exchange - value: sbx description: SBX - BX Swiss - value: sehk description: SEHK - The Stock Exchange of Hong Kong - value: sem description: SEM - Stock Exchange of Mauritius - value: sgbv description: SGBV - Algiers Stock Exchange - value: sgx description: SGX - Singapore Stock Exchange - value: six description: SIX - SIX Swiss Exchange - value: spbex description: SPBEX - Saint Petersburg Stock Exchange - value: spse description: SPSE - South Pacific Stock Exchange - value: sse description: SSE - Shanghai Stock Exchange - value: ssx description: SSX - Sydney Stock Exchange - value: sto description: STO - Stockholm Stock Exchange - value: stu description: STU - Börse Stuttgart - value: swx description: SWX - SIX Swiss Exchange - value: szse description: SZSE - Shenzhen Stock Exchange - value: tal description: TSE - Tallinn Stock Exchange - value: tfex description: TFEX - Thailand Futures Exchange - value: tise description: TISE - The International Stock Exchange - value: tlv description: TLV - Tel Aviv Stock Exchange - value: tpe description: TWSE - Taiwan Stock Exchange - value: tse_al description: TSE - Tirana Stock Exchange - value: tse_ir description: TSE - Tehran Stock Exchange - value: tsec description: TWO - Taiwan OTC Exchange - value: tsx description: TSX - Toronto Stock Exchange - value: cve description: TSX-V - Toronto TSX Venture Exchange - value: tyo description: TYO - Tokyo Stock Exchange - value: ttse description: TTSE - Trinidad and Tobago Stock Exchange - value: tadawul description: Tadawul - Saudi Stock Exchange - value: use description: USE - Uganda Securities Exchange - value: ux description: UX - Ukrainian Exchange - value: vie description: VIE - Vienna Stock Exchange - value: vmf description: VMF - Faroese Securities Market - value: vse description: VSE - Vancouver Stock Exchange - value: wse description: WSE - Warsaw Stock Exchange - value: ysx description: YSX - Yangon Stock Exchange - value: zamace description: ZAMACE - Zambian Commodity Exchange - value: zse description: ZSE - Zimbabwe Stock Exchange - value: zse_hr description: ZSE - Zagreb Stock Exchange x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes stock_full_symbol: type: string maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] stock_symbol: type: string description: Stock ticker symbol (e.g. AAPL, FB, TWTR) maxLength: 255 x-cb-field-type: text_short x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes valuation: type: object description: Valuation of the Organization at IPO allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq went_public_on: type: string description: Date the Organization went public format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte InvestmentFieldId: type: string description: Investment field ids enum: - announced_on - created_at - entity_def_id - funding_round_identifier - funding_round_investment_type - funding_round_money_raised - identifier - investor_identifier - investor_stage - investor_type - is_lead_investor - money_invested - name - organization_diversity_spotlights - organization_identifier - partner_identifiers - permalink - updated_at - uuid DateWithPrecision: type: object description: A field that will contain date information up to a certain level of precision. E.g. month, day, etc. required: - precision properties: precision: type: string enum: - none - year - month - day value: type: string format: date PersonFieldId: type: string description: Person field ids enum: - aliases - born_on - created_at - description - died_on - entity_def_id - facebook - facet_ids - first_name - gender - identifier - image_id - image_url - investor_stage - investor_type - last_name - layout_id - linkedin - location_group_identifiers - location_identifiers - middle_name - name - num_articles - num_current_advisor_jobs - num_current_jobs - num_diversity_spotlight_investments - num_event_appearances - num_exits - num_exits_ipo - num_founded_organizations - num_investments - num_jobs - num_lead_investments - num_partner_investments - num_past_advisor_jobs - num_past_jobs - num_portfolio_organizations - permalink - permalink_aliases - primary_job_title - primary_organization - rank - rank_delta_d30 - rank_delta_d7 - rank_delta_d90 - rank_person - short_description - twitter - updated_at - uuid - website - website_url Principal: type: object required: - identifier properties: aliases: type: array description: Alternate or previous names for the organization or individual items: type: string maxLength: 255 x-cb-field-type: text_short_multi x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts born_on: type: string description: The birthdate of the person format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte categories: type: array description: Descriptive keyword for an Organization (e.g. SaaS, Android, Cloud Computing, Medical Device) items: $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all category_groups: type: array description: Superset of Industries (e.g. Software, Mobile, Health Care) items: $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all closed_on: type: object description: The date when the organization is closed allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte company_type: type: string description: 'Whether an Organization is for profit or non-profit * for_profit - For Profit * non_profit - Non-profit' enum: - for_profit - non_profit x-enum-descriptions: - For Profit - Non-profit x-cb-field-enum-values: - value: for_profit description: For Profit - value: non_profit description: Non-profit x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes contact_email: type: string description: General contact email for the organization or person maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte delisted_on: type: object description: The date when the Organization removed its stock from the stock exchange. allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte description: type: string description: Organization or Person Description, Industries, Industry Groups maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains died_on: type: string description: The date when a person died format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte diversity_spotlights: type: array description: Types of diversity represented in an organization, specifically of those who are founding members, currently the CEO, or have check-writing abilities in an investment firm. This feature is in beta and may change with future updates. items: $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all entity_def_id: type: string description: '* organization - Organization * person - Person' enum: - organization - person x-enum-descriptions: - Organization - Person x-cb-field-enum-values: - value: organization description: Organization - value: person description: Person x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes equity_funding_total: type: object description: Total funding amount raised across all Funding Rounds excluding debt allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq exited_on: type: object description: Date the organization was acquired or went public allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte facebook: type: object description: Link to organization/person's Facebook page allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] facet_ids: type: array items: type: string description: '* company - Company * government_entity - Government Entity * investor - Investor * school - School' enum: - company - government_entity - investor - school x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all first_name: type: string description: First name of a Person maxLength: 255 x-cb-field-type: text_short x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts founded_on: type: object description: Date the Organization was founded allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte founder_identifiers: type: array description: Founders of the organization items: $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all funding_stage: type: string description: 'This field describes an organization''s most recent funding status (e.g. Early Stage Venture, Late Stage Venture, M&A) * early_stage_venture - Early Stage Venture * ipo - IPO * late_stage_venture - Late Stage Venture * m_and_a - M&A * private_equity - Private Equity * seed - Seed' enum: - seed - early_stage_venture - late_stage_venture - private_equity - m_and_a - ipo x-enum-descriptions: - Seed - Early Stage Venture - Late Stage Venture - Private Equity - M&A - IPO x-cb-field-enum-values: - value: seed description: Seed - value: early_stage_venture description: Early Stage Venture - value: late_stage_venture description: Late Stage Venture - value: private_equity description: Private Equity - value: m_and_a description: M&A - value: ipo description: IPO x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes funding_total: type: object description: Total funding amount raised across all Funding Rounds allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq gender: type: string description: 'A Person''s gender * agender - Agender * androgyne - Androgyne * androgynous - Androgynous * bigender - Bigender * female - Female * ftm - Female to Male (FTM) * gender_fluid - Gender Fluid * gender_nonconforming - Gender Nonconforming * gender_questioning - Gender Questioning * gender_variant - Gender Variant * genderqueer - Genderqueer * male - Male * mtf - Male to Female (MTF) * neutrois - Neutrois * non_binary - Non-Binary * not_provided - Prefer not to identify * other - Other * pangender - Pangender * transfeminine - Transfeminine * transgender_female - Transgender Female * transgender_male - Transgender Male * transgender_man - Transgender Man * transgender_person - Transgender Person * transgender_woman - Transgender Woman * transmasculine - Transmasculine * transsexual_female - Transsexual Female * transsexual_male - Transsexual Male * transsexual_man - Transsexual Man * transsexual_person - Transsexual Person * transsexual_woman - Transsexual Woman * two_spirit - Two-Spirit' enum: - female - male - agender - androgyne - androgynous - bigender - ftm - mtf - gender_fluid - gender_nonconforming - gender_questioning - gender_variant - genderqueer - non_binary - neutrois - pangender - transgender_person - transgender_female - transgender_woman - transgender_male - transgender_man - transfeminine - transmasculine - transsexual_person - transsexual_female - transsexual_woman - transsexual_male - transsexual_man - two_spirit - other - not_provided x-enum-descriptions: - Female - Male - Agender - Androgyne - Androgynous - Bigender - Female to Male (FTM) - Male to Female (MTF) - Gender Fluid - Gender Nonconforming - Gender Questioning - Gender Variant - Genderqueer - Non-Binary - Neutrois - Pangender - Transgender Person - Transgender Female - Transgender Woman - Transgender Male - Transgender Man - Transfeminine - Transmasculine - Transsexual Person - Transsexual Female - Transsexual Woman - Transsexual Male - Transsexual Man - Two-Spirit - Other - Prefer not to identify x-cb-field-enum-values: - value: female description: Female - value: male description: Male - value: agender description: Agender - value: androgyne description: Androgyne - value: androgynous description: Androgynous - value: bigender description: Bigender - value: ftm description: Female to Male (FTM) - value: mtf description: Male to Female (MTF) - value: gender_fluid description: Gender Fluid - value: gender_nonconforming description: Gender Nonconforming - value: gender_questioning description: Gender Questioning - value: gender_variant description: Gender Variant - value: genderqueer description: Genderqueer - value: non_binary description: Non-Binary - value: neutrois description: Neutrois - value: pangender description: Pangender - value: transgender_person description: Transgender Person - value: transgender_female description: Transgender Female - value: transgender_woman description: Transgender Woman - value: transgender_male description: Transgender Male - value: transgender_man description: Transgender Man - value: transfeminine description: Transfeminine - value: transmasculine description: Transmasculine - value: transsexual_person description: Transsexual Person - value: transsexual_female description: Transsexual Female - value: transsexual_woman description: Transsexual Woman - value: transsexual_male description: Transsexual Male - value: transsexual_man description: Transsexual Man - value: two_spirit description: Two-Spirit - value: other description: Other - value: not_provided description: Prefer not to identify x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes hub_tags: type: array description: Tags representing special attributes of organizations that are used in Hubs items: type: string description: 'Tags representing special attributes of organizations that are used in Hubs * cbvp - Crunchbase Venture Program * emerging_unicorn - Emerging Unicorn * exited_unicorn - Exited Unicorn * pledge_one_percent - Pledge 1% * unicorn - Unicorn' enum: - cbvp - pledge_one_percent - unicorn - emerging_unicorn - exited_unicorn x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all identifier: type: object description: Name of the Organization or Person allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts image_id: type: string description: The profile image of this organization or person on Crunchbase maxLength: 255 x-cb-field-type: image_id x-cb-searchable: false x-cb-search-operators: [] image_url: type: string description: The url of the profile image maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] investor_identifiers: type: array description: The top 5 investors with investments in this company, ordered by Crunchbase Rank items: $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all investor_stage: type: array description: This describes the stage of investor this organization or person is (e.g. Angel, Fund of Funds, Venture Capital) items: type: string description: 'This describes the stage of investor this organization or person is (e.g. Angel, Fund of Funds, Venture Capital) * convertible_note - Convertible Note * crowdfunding - Crowdfunding * debt - Debt * early_stage_venture - Early Stage Venture * grant - Grant * initial_coin_offering - Initial Coin Offering * late_stage_venture - Late Stage Venture * non_equity_assistance - Non Equity Assistance * post_ipo - Post-Ipo * private_equity - Private Equity * secondary_market - Secondary Market * seed - Seed * venture - Venture' enum: - seed - early_stage_venture - late_stage_venture - venture - private_equity - crowdfunding - debt - grant - non_equity_assistance - convertible_note - secondary_market - post_ipo - initial_coin_offering x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all investor_type: type: array description: This describes the type of investor this organization or person is (e.g. Angel, Fund of Funds, Venture Capital) items: type: string description: 'This describes the type of investor this organization or person is (e.g. Angel, Fund of Funds, Venture Capital) * accelerator - Accelerator * angel - Individual/Angel * angel_group - Angel Group * co_working_space - Co-Working Space * corporate_venture_capital - Corporate Venture Capital * entrepreneurship_program - Entrepreneurship Program * family_investment_office - Family Investment Office * fund_of_funds - Fund Of Funds * government_office - Government Office * hedge_fund - Hedge Fund * incubator - Incubator * investment_bank - Investment Bank * investment_partner - Investment Partner * micro_vc - Micro VC * pension_funds - Pension Funds * private_equity_firm - Private Equity Firm * secondary_purchaser - Secondary Purchaser * startup_competition - Startup Competition * syndicate - Syndicate * university_program - University Program * venture_capital - Venture Capital * venture_debt - Venture Debt' enum: - venture_capital - angel - investment_partner - corporate_venture_capital - private_equity_firm - accelerator - micro_vc - angel_group - incubator - investment_bank - family_investment_office - venture_debt - co_working_space - fund_of_funds - hedge_fund - government_office - university_program - entrepreneurship_program - secondary_purchaser - startup_competition - syndicate - pension_funds x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all ipo_status: type: string description: 'The current public status of the Organization * delisted - Delisted * private - Private * public - Public' enum: - public - delisted - private x-enum-descriptions: - Public - Delisted - Private x-cb-field-enum-values: - value: public description: Public - value: delisted description: Delisted - value: private description: Private x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes last_equity_funding_total: type: object description: Amount of most recent Funding Round excluding debt allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq last_equity_funding_type: type: string description: 'The most recent Funding Round excluding debt * angel - Angel * convertible_note - Convertible Note * corporate_round - Corporate Round * debt_financing - Debt Financing * equity_crowdfunding - Equity Crowdfunding * grant - Grant * initial_coin_offering - Initial Coin Offering * non_equity_assistance - Non-equity Assistance * post_ipo_debt - Post-IPO Debt * post_ipo_equity - Post-IPO Equity * post_ipo_secondary - Post-IPO Secondary * pre_seed - Pre-Seed * private_equity - Private Equity * product_crowdfunding - Product Crowdfunding * secondary_market - Secondary Market * seed - Seed * series_a - Series A * series_b - Series B * series_c - Series C * series_d - Series D * series_e - Series E * series_f - Series F * series_g - Series G * series_h - Series H * series_i - Series I * series_j - Series J * series_unknown - Venture - Series Unknown * undisclosed - Undisclosed' enum: - pre_seed - seed - series_a - series_b - series_c - series_d - series_e - series_f - series_g - series_h - series_i - series_j - series_unknown - angel - private_equity - debt_financing - convertible_note - grant - corporate_round - equity_crowdfunding - product_crowdfunding - secondary_market - post_ipo_equity - post_ipo_debt - post_ipo_secondary - non_equity_assistance - initial_coin_offering - undisclosed x-enum-descriptions: - Pre-Seed - Seed - Series A - Series B - Series C - Series D - Series E - Series F - Series G - Series H - Series I - Series J - Venture - Series Unknown - Angel - Private Equity - Debt Financing - Convertible Note - Grant - Corporate Round - Equity Crowdfunding - Product Crowdfunding - Secondary Market - Post-IPO Equity - Post-IPO Debt - Post-IPO Secondary - Non-equity Assistance - Initial Coin Offering - Undisclosed x-cb-field-enum-values: - value: pre_seed description: Pre-Seed - value: seed description: Seed - value: series_a description: Series A - value: series_b description: Series B - value: series_c description: Series C - value: series_d description: Series D - value: series_e description: Series E - value: series_f description: Series F - value: series_g description: Series G - value: series_h description: Series H - value: series_i description: Series I - value: series_j description: Series J - value: series_unknown description: Venture - Series Unknown - value: angel description: Angel - value: private_equity description: Private Equity - value: debt_financing description: Debt Financing - value: convertible_note description: Convertible Note - value: grant description: Grant - value: corporate_round description: Corporate Round - value: equity_crowdfunding description: Equity Crowdfunding - value: product_crowdfunding description: Product Crowdfunding - value: secondary_market description: Secondary Market - value: post_ipo_equity description: Post-IPO Equity - value: post_ipo_debt description: Post-IPO Debt - value: post_ipo_secondary description: Post-IPO Secondary - value: non_equity_assistance description: Non-equity Assistance - value: initial_coin_offering description: Initial Coin Offering - value: undisclosed description: Undisclosed x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes last_funding_at: type: string description: Date of most recent Funding Round format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte last_funding_total: type: object description: Amount of most recent Funding Round allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq last_funding_type: type: string description: 'Last funding round type (e.g. Series A, Seed, Private Equity) * angel - Angel * convertible_note - Convertible Note * corporate_round - Corporate Round * debt_financing - Debt Financing * equity_crowdfunding - Equity Crowdfunding * grant - Grant * initial_coin_offering - Initial Coin Offering * non_equity_assistance - Non-equity Assistance * post_ipo_debt - Post-IPO Debt * post_ipo_equity - Post-IPO Equity * post_ipo_secondary - Post-IPO Secondary * pre_seed - Pre-Seed * private_equity - Private Equity * product_crowdfunding - Product Crowdfunding * secondary_market - Secondary Market * seed - Seed * series_a - Series A * series_b - Series B * series_c - Series C * series_d - Series D * series_e - Series E * series_f - Series F * series_g - Series G * series_h - Series H * series_i - Series I * series_j - Series J * series_unknown - Venture - Series Unknown * undisclosed - Undisclosed' enum: - pre_seed - seed - series_a - series_b - series_c - series_d - series_e - series_f - series_g - series_h - series_i - series_j - series_unknown - angel - private_equity - debt_financing - convertible_note - grant - corporate_round - equity_crowdfunding - product_crowdfunding - secondary_market - post_ipo_equity - post_ipo_debt - post_ipo_secondary - non_equity_assistance - initial_coin_offering - undisclosed x-enum-descriptions: - Pre-Seed - Seed - Series A - Series B - Series C - Series D - Series E - Series F - Series G - Series H - Series I - Series J - Venture - Series Unknown - Angel - Private Equity - Debt Financing - Convertible Note - Grant - Corporate Round - Equity Crowdfunding - Product Crowdfunding - Secondary Market - Post-IPO Equity - Post-IPO Debt - Post-IPO Secondary - Non-equity Assistance - Initial Coin Offering - Undisclosed x-cb-field-enum-values: - value: pre_seed description: Pre-Seed - value: seed description: Seed - value: series_a description: Series A - value: series_b description: Series B - value: series_c description: Series C - value: series_d description: Series D - value: series_e description: Series E - value: series_f description: Series F - value: series_g description: Series G - value: series_h description: Series H - value: series_i description: Series I - value: series_j description: Series J - value: series_unknown description: Venture - Series Unknown - value: angel description: Angel - value: private_equity description: Private Equity - value: debt_financing description: Debt Financing - value: convertible_note description: Convertible Note - value: grant description: Grant - value: corporate_round description: Corporate Round - value: equity_crowdfunding description: Equity Crowdfunding - value: product_crowdfunding description: Product Crowdfunding - value: secondary_market description: Secondary Market - value: post_ipo_equity description: Post-IPO Equity - value: post_ipo_debt description: Post-IPO Debt - value: post_ipo_secondary description: Post-IPO Secondary - value: non_equity_assistance description: Non-equity Assistance - value: initial_coin_offering description: Initial Coin Offering - value: undisclosed description: Undisclosed x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes last_name: type: string description: Last name of a Person maxLength: 255 x-cb-field-type: text_short x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts layout_id: type: string enum: - school - investor x-enum-descriptions: - school - investor x-cb-field-enum-values: [] x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes linkedin: type: object description: Link to organization/person's LinkedIn page allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] location_group_identifiers: type: array description: Where the principal is located (e.g. San Francisco Bay Area, Silicon Valley) items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all location_identifiers: type: array description: Where the organization is headquartered items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all name: type: string maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] num_alumni: type: number description: Total number of alumni x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_articles: type: number description: Number of news articles that reference the Organization x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_diversity_spotlight_investments: type: number description: Total number of diversity investments made by an investor x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_employees_enum: type: string description: 'Total number of Employees * c_00001_00010 - 1-10 * c_00011_00050 - 11-50 * c_00051_00100 - 51-100 * c_00101_00250 - 101-250 * c_00251_00500 - 251-500 * c_00501_01000 - 501-1000 * c_01001_05000 - 1001-5000 * c_05001_10000 - 5001-10000 * c_10001_max - 10001+' enum: - c_00001_00010 - c_00011_00050 - c_00051_00100 - c_00101_00250 - c_00251_00500 - c_00501_01000 - c_01001_05000 - c_05001_10000 - c_10001_max x-enum-descriptions: - 1-10 - 11-50 - 51-100 - 101-250 - 251-500 - 501-1000 - 1001-5000 - 5001-10000 - 10001+ x-cb-field-enum-values: - value: c_00001_00010 description: 1-10 - value: c_00011_00050 description: 11-50 - value: c_00051_00100 description: 51-100 - value: c_00101_00250 description: 101-250 - value: c_00251_00500 description: 251-500 - value: c_00501_01000 description: 501-1000 - value: c_01001_05000 description: 1001-5000 - value: c_05001_10000 description: 5001-10000 - value: c_10001_max description: 10001+ x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes num_enrollments: type: string description: 'Total number of Enrollments * c_00001_00010 - 1-10 * c_00011_00050 - 11-50 * c_00051_00100 - 51-100 * c_00101_00250 - 101-250 * c_00251_00500 - 251-500 * c_00501_01000 - 501-1000 * c_01001_05000 - 1001-5000 * c_05001_10000 - 5001-10000 * c_10001_max - 10001+' enum: - c_00001_00010 - c_00011_00050 - c_00051_00100 - c_00101_00250 - c_00251_00500 - c_00501_01000 - c_01001_05000 - c_05001_10000 - c_10001_max x-enum-descriptions: - 1-10 - 11-50 - 51-100 - 101-250 - 251-500 - 501-1000 - 1001-5000 - 5001-10000 - 10001+ x-cb-field-enum-values: - value: c_00001_00010 description: 1-10 - value: c_00011_00050 description: 11-50 - value: c_00051_00100 description: 51-100 - value: c_00101_00250 description: 101-250 - value: c_00251_00500 description: 251-500 - value: c_00501_01000 description: 501-1000 - value: c_01001_05000 description: 1001-5000 - value: c_05001_10000 description: 5001-10000 - value: c_10001_max description: 10001+ x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes num_event_appearances: type: number description: Total number of events An Organization or Person appeared in x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_exits: type: number description: Total number of Exits x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_exits_ipo: type: number description: Total number of Exits (IPO) x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_founded_organizations: type: number description: Number of Organizations that the Person founded x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_founders: type: number description: Total number of Founders x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_funding_rounds: type: number description: Total number of Funding Rounds x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_funds: type: number description: Total number of Funds raised x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_investments: type: number description: Total number of Investments made x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_investors: type: number description: Total number of investment firms and individual investors x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_jobs: type: number description: Total number of Jobs the person has x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_lead_investments: type: number description: Number of Investments led by the Person x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_lead_investors: type: number description: Total number of lead investment firms and individual investors x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_partner_investments: type: number description: Number of Investments the Individual has partnered in x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_portfolio_organizations: type: number description: Total number of portfolio organizations x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq operating_status: type: string description: 'Operating Status of Organization e.g. Active, Closed * active - Active * closed - Closed' enum: - active - closed x-enum-descriptions: - Active - Closed x-cb-field-enum-values: - value: active description: Active - value: closed description: Closed x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes permalink: type: string maxLength: 255 x-cb-field-type: permalink x-cb-searchable: false x-cb-search-operators: [] permalink_aliases: type: array description: Alternative aliases to the primary permalink of the organization or person items: type: string maxLength: 255 x-cb-field-type: text_exact_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all phone_number: type: string description: General phone number of the organization or person maxLength: 255 x-cb-field-type: text_exact x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes primary_job_title: type: string description: The person's primary job title (e.g. CEO, Chief Architect, Product Manager) maxLength: 255 x-cb-field-type: text_short x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts primary_organization: type: object description: The organization associated to the person's primary job allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts program_application_deadline: type: string description: The deadline for applying to the Accelerator Program format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte program_duration: type: number description: The duration of the Acceleration Program in number of weeks x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq program_type: type: string description: 'The type of Accelerator Program (e.g. On-Site, Online) * on_site - On-Site * online - Online' enum: - on_site - online x-enum-descriptions: - On-Site - Online x-cb-field-enum-values: - value: on_site description: On-Site - value: online description: Online x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes rank: type: number description: Algorithmic rank assigned to the top profiles on Crunchbase x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank_delta_d30: type: number description: Movement in Rank over the last 30 days using a score from -10 to 10 format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank_delta_d7: type: number description: Movement in Rank over the last 7 days using a score from -10 to 10 format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank_delta_d90: type: number description: Movement in Rank over the last 90 days using a score from -10 to 10 format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq revenue_range: type: string description: 'Estimated Revenue Range for Organizations * r_00000000 - Less than $1M * r_00001000 - $1M to $10M * r_00010000 - $10M to $50M * r_00050000 - $50M to $100M * r_00100000 - $100M to $500M * r_00500000 - $500M to $1B * r_01000000 - $1B to $10B * r_10000000 - $10B+' enum: - r_00000000 - r_00001000 - r_00010000 - r_00050000 - r_00100000 - r_00500000 - r_01000000 - r_10000000 x-enum-descriptions: - Less than $1M - $1M to $10M - $10M to $50M - $50M to $100M - $100M to $500M - $500M to $1B - $1B to $10B - $10B+ x-cb-field-enum-values: - value: r_00000000 description: Less than $1M - value: r_00001000 description: $1M to $10M - value: r_00010000 description: $10M to $50M - value: r_00050000 description: $50M to $100M - value: r_00100000 description: $100M to $500M - value: r_00500000 description: $500M to $1B - value: r_01000000 description: $1B to $10B - value: r_10000000 description: $10B+ x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes school_method: type: string description: 'The type of School Method (e.g. On Campus, Online) * on_compus - On Campus * online - Online * online_and_on_campus - Online and On Campus' enum: - on_compus - online - online_and_on_campus x-enum-descriptions: - On Campus - Online - Online and On Campus x-cb-field-enum-values: - value: on_compus description: On Campus - value: online description: Online - value: online_and_on_campus description: Online and On Campus x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes school_program: type: string description: 'The type of School Program (e.g. Bootcamp, Four Year University) * bootcamp - Bootcamp * community_college - Community College * four_year_university - Four Year University * graduate_university - Graduate University * high_school - High School * trade_school - Trade School * two_year_university - Two Year University' enum: - four_year_university - two_year_university - graduate_university - bootcamp - trade_school - community_college - high_school x-enum-descriptions: - Four Year University - Two Year University - Graduate University - Bootcamp - Trade School - Community College - High School x-cb-field-enum-values: - value: four_year_university description: Four Year University - value: two_year_university description: Two Year University - value: graduate_university description: Graduate University - value: bootcamp description: Bootcamp - value: trade_school description: Trade School - value: community_college description: Community College - value: high_school description: High School x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes school_type: type: string description: 'The type of School (e.g. Public, Private) * for_profit_private - Private * non_profit_private - Private (Non-Profit) * public - Public' enum: - public - for_profit_private - non_profit_private x-enum-descriptions: - Public - Private - Private (Non-Profit) x-cb-field-enum-values: - value: public description: Public - value: for_profit_private description: Private - value: non_profit_private description: Private (Non-Profit) x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes short_description: type: string description: Text of Organization or Person Description, Industries, and Industry Groups maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains status: type: string description: 'Status of Organization e.g. Operating, Closed, Acquired, IPO * closed - Closed * ipo - IPO * operating - Operating * was_acquired - Was Acquired' enum: - closed - ipo - operating - was_acquired x-enum-descriptions: - Closed - IPO - Operating - Was Acquired x-cb-field-enum-values: - value: closed description: Closed - value: ipo description: IPO - value: operating description: Operating - value: was_acquired description: Was Acquired x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes stock_exchange_symbol: type: string description: 'Stock exchange where the Organization is listed e.g. NYSE, NASDAQ * adx - ADX - Abu Dhabi Securities Exchange * afx - AFX - Afghanistan Stock Exchange * altx - ALTX - ALTX East Africa Exchange * amex - AMEX - American Stock Exchange * ams - AMS - Euronext Amsterdam * amx - AMX - Armenia Securities Exchange * asce - ASCE - Abuja Securities and Commodities Exchange * asx - ASX - Australian Securities Exchange * ath - ATH - Athens Stock Exchange * bcba - BCBA - Buenos Aires Stock Exchange * bdp - BDP - Budapest Stock Exchange * belex - BELEX - Belgrade Stock Exchange * ber - BER - Berliner Börse * bfb - BFB - Baku Stock Exchange * bit - BIT - Italian Stock Exchange * bkk - BKK - Thailand Stock Exchange * blse - BLSE - Banja Luka Stock Exchange * bme - BME - Madrid Stock Exchange * bmv - BMV - Mexican Stock Exchange * bom - BOM - Bombay Stock Exchange * brvm - BRVM - Regional Securities Exchange SA * bse - BSE - Bulgarian Stock Exchange * bse_lb - BSE - Beirut Stock Exchange * bsse - BSSE - Bratislava Stock Exchange * bsx - BSX - Bermuda Stock Exchange * bvb - BVB - Bucharest Stock Exchange * bvc - BVC - Colombian Stock Exchange * bvfb - BVFB - Belarusian Currency and Stock Exchange * bvm - BVM - Montevideo Stock Exchange * bvmf - B3 - Brazil Stock Exchange and OTC Market * bvmt - BVMT - Tunis Stock Exchange * bx - BX - Berne Stock Exchange * cas - CAS - Casablanca Stock Exchange * cise - CISE - Channel Islands Stock Exchange * cnsx - CNSX - Canadian National Stock Exchange * col - COL - Colombo Stock Exchange * cph - CPH - Copenhagen Stock Exchange * cse - CSE - Canadian Securities Exchange * cse_cy - CSE - Cyprus Stock Exchange * csx - CSX - Cambodia Securities Exchange * cve - TSX-V - Toronto TSX Venture Exchange * dfm - DFM - Dubai Financial Market * dse - DSE - Dhaka Stock Exchange * dsx - DSX - Douala Stock Exchange * dus - DUS - Börse Düsseldorf * ebr - EBR - Euronext Brussels * egx - EGX - Egypt Stock Exchange * eli - ELI - Euronext Lisbon * epa - EPA - Euronext Paris * etr - ETR - Deutsche Börse XETRA * eurex - EUREX - Eurex Exchange * fra - FRA - Frankfurt Stock Exchange * fwb - FWB - Börse Frankfurt Stock Exchange * gha - GHA - Ghana Stock Exchange * gsx - GSX - Georgian Stock Exchange * gsx_gi - GSX - Gibraltar Stock Exchange * hel - HEL - Helsinki Stock Exchange * hkg - HKG - Hong Kong Stock Exchange * hnx - HNX - Hanoi Stock Exchange * hose - HOSE - Ho Chi Minh Stock Exchange * ice - ICE - Iceland Stock Exchange * idx - IDX - Indonesia Stock Exchange * iex - IEX - Investors Exchange * ifb - IFB - Iran Fara Bourse * ime - IME - Iran Mercantile Exchange * irenex - IRENEX - Iran Energy Exchange * ise - ISE - Irish Stock Exchange * ist - IST - Istanbul Stock Exchange * isx - ISX - Iraq Stock Exchange * jp - JP - Japan Exchange * jsc - JSC - Belarusian Currency and Stock Exchange * jse - JSE - Johannesburg Stock Exchange * jse_jam - JSE - Jamaica Stock Exchange * kase - KASE - Kazakhstan Stock Exchange * klse - KLSE - Malaysia Stock Exchange * kosdaq - KOSDAQ - Korean Securities Dealers Automated Quotations * krx - KRX - Korea Stock Exchange * kse - KSE - Kuwait Stock Exchange * lje - LJE - Ljubljana Stock Exchange * lse - LSE - London Stock Exchange * lsm - LSM - Libyan Stock Market * lsx - LSX - Lao Securities Exchange * luse - LuSE - Lusaka Securities Exchange * luxse - LuxSE - Luxembourg Stock Exchange * mal - MAL - Malta Stock Exchange * mcx - MCX - Multi Commodity Exchange of India * meff - MEFF - Mercado Spanish Financial Futures Market * mnse - MNSE - Montenegro Stock Exchange * moex - MOEX - Moscow Exchange * mse - MSE - Metropolitan Stock Exchange * mse_md - MSE - Moldova Stock Exchange * mse_mk - MSE - Macedonian Stock Exchange * msei - MSEI - Metropolitan Stock Exchange of India * msm - MSM - Muscat Securities Market * mun - MUN - Börse München * nasdaq - NASDAQ * nbo - NSE - Nairobi Securities Exchange * neeq - NEEQ - National Equities Exchange and Quotations * nepse - NEPSE - Nepal Stock Exchange * nex - NEX - NEX Exchange * ngm - NGM - Nordic Growth Market Exchange * nig - NIG - Nigerian Stock Exchange * notc - NOTC - Norwegian OTC * npex - NPEX - NPEX Stock Exchange * nse - NSE - National Stock Exchange of India * nsx - NSX - National Stock Exchange of Australia * nyse - NYSE - New York Stock Exchange * nysearca - NYSEARCA - NYSE Arca * nysemkt - NYSEAMERICAN - NYSE American * nze - NZE - New Zealand Stock Exchange * ose - OSE - Oslo Stock Exchange * otcbb - OTCBB - FINRA OTC Bulletin Board * otcpink - OTC Pink * otcqb - OTCQB * otcqx - OTCQX * pdex - PDEx - Philippine Dealing Exchange * pex - PEX - Palestine Exchange * pfts - PFTS - PFTS Ukraine Stock Exchange * pomsox - POMSoX - Port Moresby Stock Exchange * prg - PRA - Prague Stock Exchange * pse - PSE - Philippine Stock Exchange * psx - PSX - Pakistan Stock Exchange * qse - QSE - Qatar Stock Exchange * rfb - RFB - Riga Stock Exchange * rse - RSE - Rwanda Stock Exchange * rsebl - RSEBL - Royal Securities Exchange of Bhutan * sase - SASE - Sarajevo Stock Exchange * sbx - SBX - BX Swiss * sehk - SEHK - The Stock Exchange of Hong Kong * sem - SEM - Stock Exchange of Mauritius * sgbv - SGBV - Algiers Stock Exchange * sgx - SGX - Singapore Stock Exchange * six - SIX - SIX Swiss Exchange * spbex - SPBEX - Saint Petersburg Stock Exchange * spse - SPSE - South Pacific Stock Exchange * sse - SSE - Shanghai Stock Exchange * ssx - SSX - Sydney Stock Exchange * sto - STO - Stockholm Stock Exchange * stu - STU - Börse Stuttgart * swx - SWX - SIX Swiss Exchange * szse - SZSE - Shenzhen Stock Exchange * tadawul - Tadawul - Saudi Stock Exchange * tal - TSE - Tallinn Stock Exchange * tfex - TFEX - Thailand Futures Exchange * tise - TISE - The International Stock Exchange * tlv - TLV - Tel Aviv Stock Exchange * tpe - TWSE - Taiwan Stock Exchange * tse_al - TSE - Tirana Stock Exchange * tse_ir - TSE - Tehran Stock Exchange * tsec - TWO - Taiwan OTC Exchange * tsx - TSX - Toronto Stock Exchange * ttse - TTSE - Trinidad and Tobago Stock Exchange * tyo - TYO - Tokyo Stock Exchange * use - USE - Uganda Securities Exchange * ux - UX - Ukrainian Exchange * vie - VIE - Vienna Stock Exchange * vmf - VMF - Faroese Securities Market * vse - VSE - Vancouver Stock Exchange * wse - WSE - Warsaw Stock Exchange * ysx - YSX - Yangon Stock Exchange * zamace - ZAMACE - Zambian Commodity Exchange * zse - ZSE - Zimbabwe Stock Exchange * zse_hr - ZSE - Zagreb Stock Exchange' enum: - adx - afx - altx - amx - amex - ams - asce - asx - ath - bcba - bdp - belex - ber - bfb - bit - bkk - blse - bme - bmv - bom - brvm - bse - bse_lb - bsse - bsx - bvb - bvc - bvfb - bvm - bvmf - bvmt - bx - cas - cise - cnsx - col - cph - cse - cse_cy - csx - dfm - dse - dsx - dus - ebr - egx - eli - epa - etr - eurex - fra - fwb - gha - gsx - gsx_gi - hel - hkg - hnx - hose - ice - idx - iex - ifb - ime - irenex - ise - ist - isx - jp - jsc - jse - jse_jam - kase - klse - kosdaq - krx - kse - lje - lse - lsm - lsx - luse - luxse - mal - mcx - meff - mnse - moex - mse - mse_md - mse_mk - msei - msm - mun - nasdaq - nbo - nex - nepse - neeq - ngm - nig - notc - npex - nse - nsx - nyse - nysearca - nysemkt - nze - ose - otcbb - otcpink - otcqb - otcqx - pdex - pex - pfts - pomsox - prg - pse - psx - qse - rfb - rse - rsebl - sase - sbx - sehk - sem - sgbv - sgx - six - spbex - spse - sse - ssx - sto - stu - swx - szse - tal - tfex - tise - tlv - tpe - tse_al - tse_ir - tsec - tsx - cve - tyo - ttse - tadawul - use - ux - vie - vmf - vse - wse - ysx - zamace - zse - zse_hr x-enum-descriptions: - ADX - Abu Dhabi Securities Exchange - AFX - Afghanistan Stock Exchange - ALTX - ALTX East Africa Exchange - AMX - Armenia Securities Exchange - AMEX - American Stock Exchange - AMS - Euronext Amsterdam - ASCE - Abuja Securities and Commodities Exchange - ASX - Australian Securities Exchange - ATH - Athens Stock Exchange - BCBA - Buenos Aires Stock Exchange - BDP - Budapest Stock Exchange - BELEX - Belgrade Stock Exchange - BER - Berliner Börse - BFB - Baku Stock Exchange - BIT - Italian Stock Exchange - BKK - Thailand Stock Exchange - BLSE - Banja Luka Stock Exchange - BME - Madrid Stock Exchange - BMV - Mexican Stock Exchange - BOM - Bombay Stock Exchange - BRVM - Regional Securities Exchange SA - BSE - Bulgarian Stock Exchange - BSE - Beirut Stock Exchange - BSSE - Bratislava Stock Exchange - BSX - Bermuda Stock Exchange - BVB - Bucharest Stock Exchange - BVC - Colombian Stock Exchange - BVFB - Belarusian Currency and Stock Exchange - BVM - Montevideo Stock Exchange - B3 - Brazil Stock Exchange and OTC Market - BVMT - Tunis Stock Exchange - BX - Berne Stock Exchange - CAS - Casablanca Stock Exchange - CISE - Channel Islands Stock Exchange - CNSX - Canadian National Stock Exchange - COL - Colombo Stock Exchange - CPH - Copenhagen Stock Exchange - CSE - Canadian Securities Exchange - CSE - Cyprus Stock Exchange - CSX - Cambodia Securities Exchange - DFM - Dubai Financial Market - DSE - Dhaka Stock Exchange - DSX - Douala Stock Exchange - DUS - Börse Düsseldorf - EBR - Euronext Brussels - EGX - Egypt Stock Exchange - ELI - Euronext Lisbon - EPA - Euronext Paris - ETR - Deutsche Börse XETRA - EUREX - Eurex Exchange - FRA - Frankfurt Stock Exchange - FWB - Börse Frankfurt Stock Exchange - GHA - Ghana Stock Exchange - GSX - Georgian Stock Exchange - GSX - Gibraltar Stock Exchange - HEL - Helsinki Stock Exchange - HKG - Hong Kong Stock Exchange - HNX - Hanoi Stock Exchange - HOSE - Ho Chi Minh Stock Exchange - ICE - Iceland Stock Exchange - IDX - Indonesia Stock Exchange - IEX - Investors Exchange - IFB - Iran Fara Bourse - IME - Iran Mercantile Exchange - IRENEX - Iran Energy Exchange - ISE - Irish Stock Exchange - IST - Istanbul Stock Exchange - ISX - Iraq Stock Exchange - JP - Japan Exchange - JSC - Belarusian Currency and Stock Exchange - JSE - Johannesburg Stock Exchange - JSE - Jamaica Stock Exchange - KASE - Kazakhstan Stock Exchange - KLSE - Malaysia Stock Exchange - KOSDAQ - Korean Securities Dealers Automated Quotations - KRX - Korea Stock Exchange - KSE - Kuwait Stock Exchange - LJE - Ljubljana Stock Exchange - LSE - London Stock Exchange - LSM - Libyan Stock Market - LSX - Lao Securities Exchange - LuSE - Lusaka Securities Exchange - LuxSE - Luxembourg Stock Exchange - MAL - Malta Stock Exchange - MCX - Multi Commodity Exchange of India - MEFF - Mercado Spanish Financial Futures Market - MNSE - Montenegro Stock Exchange - MOEX - Moscow Exchange - MSE - Metropolitan Stock Exchange - MSE - Moldova Stock Exchange - MSE - Macedonian Stock Exchange - MSEI - Metropolitan Stock Exchange of India - MSM - Muscat Securities Market - MUN - Börse München - NASDAQ - NSE - Nairobi Securities Exchange - NEX - NEX Exchange - NEPSE - Nepal Stock Exchange - NEEQ - National Equities Exchange and Quotations - NGM - Nordic Growth Market Exchange - NIG - Nigerian Stock Exchange - NOTC - Norwegian OTC - NPEX - NPEX Stock Exchange - NSE - National Stock Exchange of India - NSX - National Stock Exchange of Australia - NYSE - New York Stock Exchange - NYSEARCA - NYSE Arca - NYSEAMERICAN - NYSE American - NZE - New Zealand Stock Exchange - OSE - Oslo Stock Exchange - OTCBB - FINRA OTC Bulletin Board - OTC Pink - OTCQB - OTCQX - PDEx - Philippine Dealing Exchange - PEX - Palestine Exchange - PFTS - PFTS Ukraine Stock Exchange - POMSoX - Port Moresby Stock Exchange - PRA - Prague Stock Exchange - PSE - Philippine Stock Exchange - PSX - Pakistan Stock Exchange - QSE - Qatar Stock Exchange - RFB - Riga Stock Exchange - RSE - Rwanda Stock Exchange - RSEBL - Royal Securities Exchange of Bhutan - SASE - Sarajevo Stock Exchange - SBX - BX Swiss - SEHK - The Stock Exchange of Hong Kong - SEM - Stock Exchange of Mauritius - SGBV - Algiers Stock Exchange - SGX - Singapore Stock Exchange - SIX - SIX Swiss Exchange - SPBEX - Saint Petersburg Stock Exchange - SPSE - South Pacific Stock Exchange - SSE - Shanghai Stock Exchange - SSX - Sydney Stock Exchange - STO - Stockholm Stock Exchange - STU - Börse Stuttgart - SWX - SIX Swiss Exchange - SZSE - Shenzhen Stock Exchange - TSE - Tallinn Stock Exchange - TFEX - Thailand Futures Exchange - TISE - The International Stock Exchange - TLV - Tel Aviv Stock Exchange - TWSE - Taiwan Stock Exchange - TSE - Tirana Stock Exchange - TSE - Tehran Stock Exchange - TWO - Taiwan OTC Exchange - TSX - Toronto Stock Exchange - TSX-V - Toronto TSX Venture Exchange - TYO - Tokyo Stock Exchange - TTSE - Trinidad and Tobago Stock Exchange - Tadawul - Saudi Stock Exchange - USE - Uganda Securities Exchange - UX - Ukrainian Exchange - VIE - Vienna Stock Exchange - VMF - Faroese Securities Market - VSE - Vancouver Stock Exchange - WSE - Warsaw Stock Exchange - YSX - Yangon Stock Exchange - ZAMACE - Zambian Commodity Exchange - ZSE - Zimbabwe Stock Exchange - ZSE - Zagreb Stock Exchange x-cb-field-enum-values: - value: adx description: ADX - Abu Dhabi Securities Exchange - value: afx description: AFX - Afghanistan Stock Exchange - value: altx description: ALTX - ALTX East Africa Exchange - value: amx description: AMX - Armenia Securities Exchange - value: amex description: AMEX - American Stock Exchange - value: ams description: AMS - Euronext Amsterdam - value: asce description: ASCE - Abuja Securities and Commodities Exchange - value: asx description: ASX - Australian Securities Exchange - value: ath description: ATH - Athens Stock Exchange - value: bcba description: BCBA - Buenos Aires Stock Exchange - value: bdp description: BDP - Budapest Stock Exchange - value: belex description: BELEX - Belgrade Stock Exchange - value: ber description: BER - Berliner Börse - value: bfb description: BFB - Baku Stock Exchange - value: bit description: BIT - Italian Stock Exchange - value: bkk description: BKK - Thailand Stock Exchange - value: blse description: BLSE - Banja Luka Stock Exchange - value: bme description: BME - Madrid Stock Exchange - value: bmv description: BMV - Mexican Stock Exchange - value: bom description: BOM - Bombay Stock Exchange - value: brvm description: BRVM - Regional Securities Exchange SA - value: bse description: BSE - Bulgarian Stock Exchange - value: bse_lb description: BSE - Beirut Stock Exchange - value: bsse description: BSSE - Bratislava Stock Exchange - value: bsx description: BSX - Bermuda Stock Exchange - value: bvb description: BVB - Bucharest Stock Exchange - value: bvc description: BVC - Colombian Stock Exchange - value: bvfb description: BVFB - Belarusian Currency and Stock Exchange - value: bvm description: BVM - Montevideo Stock Exchange - value: bvmf description: B3 - Brazil Stock Exchange and OTC Market - value: bvmt description: BVMT - Tunis Stock Exchange - value: bx description: BX - Berne Stock Exchange - value: cas description: CAS - Casablanca Stock Exchange - value: cise description: CISE - Channel Islands Stock Exchange - value: cnsx description: CNSX - Canadian National Stock Exchange - value: col description: COL - Colombo Stock Exchange - value: cph description: CPH - Copenhagen Stock Exchange - value: cse description: CSE - Canadian Securities Exchange - value: cse_cy description: CSE - Cyprus Stock Exchange - value: csx description: CSX - Cambodia Securities Exchange - value: dfm description: DFM - Dubai Financial Market - value: dse description: DSE - Dhaka Stock Exchange - value: dsx description: DSX - Douala Stock Exchange - value: dus description: DUS - Börse Düsseldorf - value: ebr description: EBR - Euronext Brussels - value: egx description: EGX - Egypt Stock Exchange - value: eli description: ELI - Euronext Lisbon - value: epa description: EPA - Euronext Paris - value: etr description: ETR - Deutsche Börse XETRA - value: eurex description: EUREX - Eurex Exchange - value: fra description: FRA - Frankfurt Stock Exchange - value: fwb description: FWB - Börse Frankfurt Stock Exchange - value: gha description: GHA - Ghana Stock Exchange - value: gsx description: GSX - Georgian Stock Exchange - value: gsx_gi description: GSX - Gibraltar Stock Exchange - value: hel description: HEL - Helsinki Stock Exchange - value: hkg description: HKG - Hong Kong Stock Exchange - value: hnx description: HNX - Hanoi Stock Exchange - value: hose description: HOSE - Ho Chi Minh Stock Exchange - value: ice description: ICE - Iceland Stock Exchange - value: idx description: IDX - Indonesia Stock Exchange - value: iex description: IEX - Investors Exchange - value: ifb description: IFB - Iran Fara Bourse - value: ime description: IME - Iran Mercantile Exchange - value: irenex description: IRENEX - Iran Energy Exchange - value: ise description: ISE - Irish Stock Exchange - value: ist description: IST - Istanbul Stock Exchange - value: isx description: ISX - Iraq Stock Exchange - value: jp description: JP - Japan Exchange - value: jsc description: JSC - Belarusian Currency and Stock Exchange - value: jse description: JSE - Johannesburg Stock Exchange - value: jse_jam description: JSE - Jamaica Stock Exchange - value: kase description: KASE - Kazakhstan Stock Exchange - value: klse description: KLSE - Malaysia Stock Exchange - value: kosdaq description: KOSDAQ - Korean Securities Dealers Automated Quotations - value: krx description: KRX - Korea Stock Exchange - value: kse description: KSE - Kuwait Stock Exchange - value: lje description: LJE - Ljubljana Stock Exchange - value: lse description: LSE - London Stock Exchange - value: lsm description: LSM - Libyan Stock Market - value: lsx description: LSX - Lao Securities Exchange - value: luse description: LuSE - Lusaka Securities Exchange - value: luxse description: LuxSE - Luxembourg Stock Exchange - value: mal description: MAL - Malta Stock Exchange - value: mcx description: MCX - Multi Commodity Exchange of India - value: meff description: MEFF - Mercado Spanish Financial Futures Market - value: mnse description: MNSE - Montenegro Stock Exchange - value: moex description: MOEX - Moscow Exchange - value: mse description: MSE - Metropolitan Stock Exchange - value: mse_md description: MSE - Moldova Stock Exchange - value: mse_mk description: MSE - Macedonian Stock Exchange - value: msei description: MSEI - Metropolitan Stock Exchange of India - value: msm description: MSM - Muscat Securities Market - value: mun description: MUN - Börse München - value: nasdaq description: NASDAQ - value: nbo description: NSE - Nairobi Securities Exchange - value: nex description: NEX - NEX Exchange - value: nepse description: NEPSE - Nepal Stock Exchange - value: neeq description: NEEQ - National Equities Exchange and Quotations - value: ngm description: NGM - Nordic Growth Market Exchange - value: nig description: NIG - Nigerian Stock Exchange - value: notc description: NOTC - Norwegian OTC - value: npex description: NPEX - NPEX Stock Exchange - value: nse description: NSE - National Stock Exchange of India - value: nsx description: NSX - National Stock Exchange of Australia - value: nyse description: NYSE - New York Stock Exchange - value: nysearca description: NYSEARCA - NYSE Arca - value: nysemkt description: NYSEAMERICAN - NYSE American - value: nze description: NZE - New Zealand Stock Exchange - value: ose description: OSE - Oslo Stock Exchange - value: otcbb description: OTCBB - FINRA OTC Bulletin Board - value: otcpink description: OTC Pink - value: otcqb description: OTCQB - value: otcqx description: OTCQX - value: pdex description: PDEx - Philippine Dealing Exchange - value: pex description: PEX - Palestine Exchange - value: pfts description: PFTS - PFTS Ukraine Stock Exchange - value: pomsox description: POMSoX - Port Moresby Stock Exchange - value: prg description: PRA - Prague Stock Exchange - value: pse description: PSE - Philippine Stock Exchange - value: psx description: PSX - Pakistan Stock Exchange - value: qse description: QSE - Qatar Stock Exchange - value: rfb description: RFB - Riga Stock Exchange - value: rse description: RSE - Rwanda Stock Exchange - value: rsebl description: RSEBL - Royal Securities Exchange of Bhutan - value: sase description: SASE - Sarajevo Stock Exchange - value: sbx description: SBX - BX Swiss - value: sehk description: SEHK - The Stock Exchange of Hong Kong - value: sem description: SEM - Stock Exchange of Mauritius - value: sgbv description: SGBV - Algiers Stock Exchange - value: sgx description: SGX - Singapore Stock Exchange - value: six description: SIX - SIX Swiss Exchange - value: spbex description: SPBEX - Saint Petersburg Stock Exchange - value: spse description: SPSE - South Pacific Stock Exchange - value: sse description: SSE - Shanghai Stock Exchange - value: ssx description: SSX - Sydney Stock Exchange - value: sto description: STO - Stockholm Stock Exchange - value: stu description: STU - Börse Stuttgart - value: swx description: SWX - SIX Swiss Exchange - value: szse description: SZSE - Shenzhen Stock Exchange - value: tal description: TSE - Tallinn Stock Exchange - value: tfex description: TFEX - Thailand Futures Exchange - value: tise description: TISE - The International Stock Exchange - value: tlv description: TLV - Tel Aviv Stock Exchange - value: tpe description: TWSE - Taiwan Stock Exchange - value: tse_al description: TSE - Tirana Stock Exchange - value: tse_ir description: TSE - Tehran Stock Exchange - value: tsec description: TWO - Taiwan OTC Exchange - value: tsx description: TSX - Toronto Stock Exchange - value: cve description: TSX-V - Toronto TSX Venture Exchange - value: tyo description: TYO - Tokyo Stock Exchange - value: ttse description: TTSE - Trinidad and Tobago Stock Exchange - value: tadawul description: Tadawul - Saudi Stock Exchange - value: use description: USE - Uganda Securities Exchange - value: ux description: UX - Ukrainian Exchange - value: vie description: VIE - Vienna Stock Exchange - value: vmf description: VMF - Faroese Securities Market - value: vse description: VSE - Vancouver Stock Exchange - value: wse description: WSE - Warsaw Stock Exchange - value: ysx description: YSX - Yangon Stock Exchange - value: zamace description: ZAMACE - Zambian Commodity Exchange - value: zse description: ZSE - Zimbabwe Stock Exchange - value: zse_hr description: ZSE - Zagreb Stock Exchange x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes stock_symbol: type: object description: Stock ticker symbol (e.g. AAPL, FB, TWTR) allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts twitter: type: object description: Link to an organization/person's X page allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes website: type: object description: Link to homepage allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] website_url: type: string description: Link to homepage maxLength: 8192 x-cb-field-type: url x-cb-searchable: true x-cb-search-operators: - domain_blank - domain_eq - domain_includes - not_domain_eq - not_domain_includes went_public_on: type: string description: The date when the Organization went public format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte PressReferenceEntity: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/PressReference' properties: $ref: '#/components/schemas/PressReference' PersonEntity: type: object properties: cards: type: object properties: degrees: type: array items: $ref: '#/components/schemas/Degree' event_appearances: type: array items: $ref: '#/components/schemas/EventAppearance' fields: $ref: '#/components/schemas/Person' founded_organizations: type: array items: $ref: '#/components/schemas/Organization' jobs: type: array items: $ref: '#/components/schemas/Job' participated_funding_rounds: type: array items: $ref: '#/components/schemas/FundingRound' participated_funds: type: array items: $ref: '#/components/schemas/Fund' participated_investments: type: array items: $ref: '#/components/schemas/Investment' partner_funding_rounds: type: array items: $ref: '#/components/schemas/FundingRound' partner_investments: type: array items: $ref: '#/components/schemas/Investment' press_references: type: array items: $ref: '#/components/schemas/PressReference' primary_job: type: array items: $ref: '#/components/schemas/Job' primary_organization: type: array items: $ref: '#/components/schemas/Organization' properties: $ref: '#/components/schemas/Person' Address: type: object required: - identifier properties: country_code: type: string description: Country Code maxLength: 255 x-cb-field-type: text_exact x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* address - Address' enum: - address x-enum-descriptions: - Address x-cb-field-enum-values: - value: address description: Address x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes headquartered_organization_identifier: type: object description: Identifier of the organization that's headquartered on this address allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts identifier: type: object description: Descriptive name of the Address (e.g. Headquarters, London Office) allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts location_identifiers: type: array description: What city the address is located in (e.g. San Francisco, London, Kiev). items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all name: type: string description: Descriptive name of the Address (e.g. Headquarters, London Office) maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] postal_code: type: string description: The postal code of the address maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] region_code: type: string description: Region Code maxLength: 255 x-cb-field-type: text_exact x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes street_1: type: string description: The street address of the location maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] street_2: type: string description: The street address of the location maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes OwnershipEntity: type: object properties: cards: type: object properties: child_organization: type: array items: $ref: '#/components/schemas/Organization' fields: $ref: '#/components/schemas/Ownership' parent_organization: type: array items: $ref: '#/components/schemas/Organization' press_references: type: array items: $ref: '#/components/schemas/PressReference' properties: $ref: '#/components/schemas/Ownership' Job: type: object required: - identifier properties: created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte employee_featured_order: type: number description: These are the featured employees of an organization x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq ended_on: type: object description: End date of the Person's Job allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* job - Job' enum: - job x-enum-descriptions: - Job x-cb-field-enum-values: - value: job description: Job x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Position name field (e.g. Steve Jobs, Founder @ Pixar) allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts is_current: type: boolean description: This indicates whether the Job is current or not x-cb-field-type: boolean x-cb-searchable: true x-cb-search-operators: - blank - eq job_type: type: string description: 'Select a job type that best represent your role at the organization * advisor - Advisor * board_member - Board Member * board_observer - Board Observer * employee - Non-Executive Employee * executive - Executive' enum: - employee - executive - board_member - advisor - board_observer x-enum-descriptions: - Non-Executive Employee - Executive - Board Member - Advisor - Board Observer x-cb-field-enum-values: - value: employee description: Non-Executive Employee - value: executive description: Executive - value: board_member description: Board Member - value: advisor description: Advisor - value: board_observer description: Board Observer x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes name: type: string maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] organization_identifier: type: object description: This is the name of the organization allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts permalink: type: string maxLength: 255 x-cb-field-type: permalink x-cb-searchable: false x-cb-search-operators: [] person_identifier: type: object description: First and last name of a Person allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts short_description: type: string description: Text of Job Description maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains started_on: type: object description: Start date of the Person's Job allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte title: type: string description: Title of a Person's Job maxLength: 255 x-cb-field-type: text_short x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes Ownership: type: object required: - identifier properties: created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* ownership - Ownership' enum: - ownership x-enum-descriptions: - Ownership x-cb-field-enum-values: - value: ownership description: Ownership x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Short description of the ownership (e.g. Google owns YouTube) allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts name: type: string maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] ownee_identifier: type: object description: Name of the sub-organization that is related to a parent organization allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts owner_identifier: type: object description: Name of the organization that has sub-organizations allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts ownership_type: type: string description: 'This is the relationship defining how a sub-organization is related to a parent organization * affiliated_company - Affiliated Company * division - Division * investment_arm - Investment Arm * joint_venture - Joint Venture * subsidiary - Subsidiary' enum: - subsidiary - division - investment_arm - joint_venture - affiliated_company x-enum-descriptions: - Subsidiary - Division - Investment Arm - Joint Venture - Affiliated Company x-cb-field-enum-values: - value: subsidiary description: Subsidiary - value: division description: Division - value: investment_arm description: Investment Arm - value: joint_venture description: Joint Venture - value: affiliated_company description: Affiliated Company x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes permalink: type: string maxLength: 255 x-cb-field-type: permalink x-cb-searchable: false x-cb-search-operators: [] rank: type: number description: Algorithmic rank assigned to the top profiles on Crunchbase x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes CategoryEntity: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/Category' properties: $ref: '#/components/schemas/Category' EventEntity: type: object properties: cards: type: object properties: address: type: array items: $ref: '#/components/schemas/Address' appearances: type: array items: $ref: '#/components/schemas/EventAppearance' contestants: type: array items: $ref: '#/components/schemas/Principal' exhibitors: type: array items: $ref: '#/components/schemas/Principal' fields: $ref: '#/components/schemas/Event' organizers: type: array items: $ref: '#/components/schemas/Principal' press_references: type: array items: $ref: '#/components/schemas/PressReference' speakers: type: array items: $ref: '#/components/schemas/Principal' sponsors: type: array items: $ref: '#/components/schemas/Principal' properties: $ref: '#/components/schemas/Event' AcquisitionEntity: type: object properties: cards: type: object properties: acquiree_organization: type: array items: $ref: '#/components/schemas/Organization' acquirer_organization: type: array items: $ref: '#/components/schemas/Organization' fields: $ref: '#/components/schemas/Acquisition' press_references: type: array items: $ref: '#/components/schemas/PressReference' properties: $ref: '#/components/schemas/Acquisition' Person: type: object required: - identifier properties: aliases: type: array description: Alternate or previous names for the individual items: type: string maxLength: 255 x-cb-field-type: text_short_multi x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts born_on: type: string description: The birthdate of the person format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte description: type: string description: Text from a Person's biography maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains died_on: type: string description: The date when a person died format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* person - Person' enum: - person x-enum-descriptions: - Person x-cb-field-enum-values: - value: person description: Person x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes facebook: type: object description: Link to a Person's Facebook page allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] facet_ids: type: array items: type: string description: '* investor - Investor' enum: - investor x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all first_name: type: string description: First name of a Person maxLength: 255 x-cb-field-type: text_short x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts gender: type: string description: 'A Person''s gender * agender - Agender * androgyne - Androgyne * androgynous - Androgynous * bigender - Bigender * female - Female * ftm - Female to Male (FTM) * gender_fluid - Gender Fluid * gender_nonconforming - Gender Nonconforming * gender_questioning - Gender Questioning * gender_variant - Gender Variant * genderqueer - Genderqueer * male - Male * mtf - Male to Female (MTF) * neutrois - Neutrois * non_binary - Non-Binary * not_provided - Prefer not to identify * other - Other * pangender - Pangender * transfeminine - Transfeminine * transgender_female - Transgender Female * transgender_male - Transgender Male * transgender_man - Transgender Man * transgender_person - Transgender Person * transgender_woman - Transgender Woman * transmasculine - Transmasculine * transsexual_female - Transsexual Female * transsexual_male - Transsexual Male * transsexual_man - Transsexual Man * transsexual_person - Transsexual Person * transsexual_woman - Transsexual Woman * two_spirit - Two-Spirit' enum: - female - male - agender - androgyne - androgynous - bigender - ftm - mtf - gender_fluid - gender_nonconforming - gender_questioning - gender_variant - genderqueer - non_binary - neutrois - pangender - transgender_person - transgender_female - transgender_woman - transgender_male - transgender_man - transfeminine - transmasculine - transsexual_person - transsexual_female - transsexual_woman - transsexual_male - transsexual_man - two_spirit - other - not_provided x-enum-descriptions: - Female - Male - Agender - Androgyne - Androgynous - Bigender - Female to Male (FTM) - Male to Female (MTF) - Gender Fluid - Gender Nonconforming - Gender Questioning - Gender Variant - Genderqueer - Non-Binary - Neutrois - Pangender - Transgender Person - Transgender Female - Transgender Woman - Transgender Male - Transgender Man - Transfeminine - Transmasculine - Transsexual Person - Transsexual Female - Transsexual Woman - Transsexual Male - Transsexual Man - Two-Spirit - Other - Prefer not to identify x-cb-field-enum-values: - value: female description: Female - value: male description: Male - value: agender description: Agender - value: androgyne description: Androgyne - value: androgynous description: Androgynous - value: bigender description: Bigender - value: ftm description: Female to Male (FTM) - value: mtf description: Male to Female (MTF) - value: gender_fluid description: Gender Fluid - value: gender_nonconforming description: Gender Nonconforming - value: gender_questioning description: Gender Questioning - value: gender_variant description: Gender Variant - value: genderqueer description: Genderqueer - value: non_binary description: Non-Binary - value: neutrois description: Neutrois - value: pangender description: Pangender - value: transgender_person description: Transgender Person - value: transgender_female description: Transgender Female - value: transgender_woman description: Transgender Woman - value: transgender_male description: Transgender Male - value: transgender_man description: Transgender Man - value: transfeminine description: Transfeminine - value: transmasculine description: Transmasculine - value: transsexual_person description: Transsexual Person - value: transsexual_female description: Transsexual Female - value: transsexual_woman description: Transsexual Woman - value: transsexual_male description: Transsexual Male - value: transsexual_man description: Transsexual Man - value: two_spirit description: Two-Spirit - value: other description: Other - value: not_provided description: Prefer not to identify x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: First and last name of a Person allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts image_id: type: string description: The profile image of the person on Crunchbase maxLength: 255 x-cb-field-type: image_id x-cb-searchable: false x-cb-search-operators: [] image_url: type: string description: The url of the profile image maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] investor_stage: type: array description: This describes the stage of investor this person is (e.g. Angel, Fund of Funds, Venture Capital) items: type: string description: 'This describes the stage of investor this person is (e.g. Angel, Fund of Funds, Venture Capital) * convertible_note - Convertible Note * crowdfunding - Crowdfunding * debt - Debt * early_stage_venture - Early Stage Venture * grant - Grant * initial_coin_offering - Initial Coin Offering * late_stage_venture - Late Stage Venture * non_equity_assistance - Non Equity Assistance * post_ipo - Post-Ipo * private_equity - Private Equity * secondary_market - Secondary Market * seed - Seed * venture - Venture' enum: - seed - early_stage_venture - late_stage_venture - venture - private_equity - crowdfunding - debt - grant - non_equity_assistance - convertible_note - secondary_market - post_ipo - initial_coin_offering x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all investor_type: type: array description: This describes the type of investor the person is (e.g. Angel, Fund of Funds, Venture Capital) items: type: string description: 'This describes the type of investor the person is (e.g. Angel, Fund of Funds, Venture Capital) * angel - Individual/Angel * investment_partner - Investment Partner' enum: - angel - investment_partner x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all last_name: type: string description: Last name of a Person maxLength: 255 x-cb-field-type: text_short x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts layout_id: type: string description: 'This is the auto-generated layout for the profile * investor - Investor Layout' enum: - investor x-enum-descriptions: - Investor Layout x-cb-field-enum-values: - value: investor description: Investor Layout x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes linkedin: type: object description: Link to a Person's LinkedIn page allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] location_group_identifiers: type: array description: Where the person is located (e.g. San Francisco Bay Area, Silicon Valley) items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all location_identifiers: type: array description: Where the person is located (e.g. Europe, Menlo Park, China) items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all middle_name: type: string description: Middle name of a Person maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] name: type: string description: Full name of a Person maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] num_articles: type: number description: Number of news articles that reference the Person x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_current_advisor_jobs: type: number description: Total number of current Advisors and Board roles the person has x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_current_jobs: type: number description: Total number of current Jobs the person has x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_diversity_spotlight_investments: type: number description: Total number of diversity investments made by an investor x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_event_appearances: type: number description: Total number of events the individual appeared in x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_exits: type: number description: Total number of Exits x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_exits_ipo: type: number description: Total number of Exits (IPO) x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_founded_organizations: type: number description: Number of Organizations that the person founded x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_investments: type: number description: Number of Investments the Individual has participated in x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_jobs: type: number description: Total number of Jobs the person has x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_lead_investments: type: number description: Number of Investments led by the Individual x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_partner_investments: type: number description: Number of Investments the Individual has partnered in x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_past_advisor_jobs: type: number description: Total number of past Board and Advisor roles the person has x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_past_jobs: type: number description: Total number of past Jobs the person has x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_portfolio_organizations: type: number description: Number of portfolio companies associated to the Person x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq permalink: type: string maxLength: 255 x-cb-field-type: permalink x-cb-searchable: false x-cb-search-operators: [] permalink_aliases: type: array description: These are the alternative aliases to the primary permalink of the Organization items: type: string maxLength: 255 x-cb-field-type: text_exact_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all primary_job_title: type: string description: The person's primary job title maxLength: 255 x-cb-field-type: text_short x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts primary_organization: type: object description: The organization associated to the person's primary job allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts rank: type: number description: Algorithmic rank assigned to the top profiles on Crunchbase x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank_delta_d30: type: number description: Movement in Rank over the last 30 days using a score from -10 to 10 format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank_delta_d7: type: number description: Movement in Rank over the last 7 days using a score from -10 to 10 format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank_delta_d90: type: number description: Movement in Rank over the last 90 days using a score from -10 to 10 format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank_person: type: number description: Algorithmic rank assigned to the top 100,000 most active People x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq short_description: type: string description: Text of Person Description, Industries, and Industry Groups maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains twitter: type: object description: Link to a person's X profile allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes website: type: object description: Link to a Person's website allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] website_url: type: string description: Link to a Person's website maxLength: 8192 x-cb-field-type: url x-cb-searchable: true x-cb-search-operators: - domain_blank - domain_eq - domain_includes - not_domain_eq - not_domain_includes PressReference: type: object required: - identifier properties: activity_entities: type: array description: Entities mentioned in the press reference items: $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all author: type: string description: The author of the press reference maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* press_reference - Press Reference' enum: - press_reference x-enum-descriptions: - Press Reference x-cb-field-enum-values: - value: press_reference description: Press Reference x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes facet_ids: type: array items: type: string x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all identifier: type: object description: Name of the Article allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts posted_on: type: string description: Date when the press reference is posted format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte publisher: type: string description: The publisher of the press reference maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] thumbnail_url: type: string maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] title: type: string description: The title of the press reference maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte url: type: object description: The URL of the press reference allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes Degree: type: object required: - identifier properties: completed_on: type: object description: Date when the degree is completed allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* degree - Degree' enum: - degree x-enum-descriptions: - Degree x-cb-field-enum-values: - value: degree description: Degree x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Name of the Degree allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts name: type: string maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] person_identifier: type: object description: The Person that received the Degree allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts school_identifier: type: object description: The School that awarded the Degree allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts started_on: type: object description: Date when the degree is started allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte subject: type: string description: The subject or major that the person focused his/her degree on maxLength: 255 x-cb-field-type: text_short x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts type_name: type: string description: The type of degree that the person received maxLength: 255 x-cb-field-type: text_short x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes InvestmentEntity: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/Investment' funding_round: type: array items: $ref: '#/components/schemas/FundingRound' investor: type: array items: $ref: '#/components/schemas/Principal' organization: type: array items: $ref: '#/components/schemas/Organization' partner: type: array items: $ref: '#/components/schemas/Person' properties: $ref: '#/components/schemas/Investment' DegreeFieldId: type: string description: Degree field ids enum: - completed_on - created_at - entity_def_id - identifier - name - person_identifier - school_identifier - started_on - subject - type_name - updated_at - uuid PressReferenceFieldId: type: string description: PressReference field ids enum: - activity_entities - author - created_at - entity_def_id - facet_ids - identifier - posted_on - publisher - thumbnail_url - title - updated_at - url - uuid Fund: type: object required: - identifier properties: announced_on: type: string description: Date when a fund raised is announced format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* fund - Fund' enum: - fund x-enum-descriptions: - Fund x-cb-field-enum-values: - value: fund description: Fund x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Name of the Fund allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts image_id: type: string maxLength: 255 x-cb-field-type: image_id x-cb-searchable: false x-cb-search-operators: [] investor_identifiers: type: array items: $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all money_raised: type: object description: Amount raised by the Fund allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq name: type: string description: Name of the Fund maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] num_investors: type: number description: Total number of investment firms and individual investors x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq owner_identifier: type: object description: Name of the fund owner allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts permalink: type: string maxLength: 255 x-cb-field-type: permalink x-cb-searchable: false x-cb-search-operators: [] rank: type: number description: Algorithmic rank assigned to the top profiles on Crunchbase x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq short_description: type: string description: A short description of the Fund maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains started_on: type: object description: Date when Fund Owner started invested the Fund allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes OwnershipFieldId: type: string description: Ownership field ids enum: - created_at - entity_def_id - identifier - name - ownee_identifier - owner_identifier - ownership_type - permalink - rank - updated_at - uuid CategoryGroupFieldId: type: string description: CategoryGroup field ids enum: - categories - created_at - entity_def_id - identifier - name - updated_at - uuid IpoEntity: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/Ipo' organization: type: array items: $ref: '#/components/schemas/Organization' press_references: type: array items: $ref: '#/components/schemas/PressReference' properties: $ref: '#/components/schemas/Ipo' LocationIdentifier: type: object description: Every location entity in the system has a unique identifier that contains all necessary properties to represent it. required: - uuid - entity_def_id properties: entity_def_id: type: string description: What type of entity this be image_id: type: string description: Optionally provided location to obtain an image representing this entity location_type: $ref: '#/components/schemas/LocationTypeEnum' permalink: type: string description: Optionally provided within Entity Def unique nice id of this entity uuid: type: string description: Globally unique id of this entity format: uuid value: type: string description: Textual representation of this entity (i.e. its "name") FundingRound: type: object required: - identifier properties: announced_on: type: string description: Date that the Funding Round was publicly announced format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte closed_on: type: object description: Date that the Funding Round was closed allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* funding_round - Funding Round' enum: - funding_round x-enum-descriptions: - Funding Round x-cb-field-enum-values: - value: funding_round description: Funding Round x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes funded_organization_categories: type: array description: Industries of the organization that got funded items: $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all funded_organization_description: type: string description: Description of the organization that got funded maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains funded_organization_diversity_spotlights: type: array description: Types of diversity represented in an organization, specifically of those who are founding members, currently the CEO, or have check-writing abilities in an investment firm. This feature is in beta and may change with future updates. items: $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all funded_organization_funding_stage: type: string description: 'Organization''s most recent funding status * early_stage_venture - Early Stage Venture * ipo - IPO * late_stage_venture - Late Stage Venture * m_and_a - M&A * private_equity - Private Equity * seed - Seed' enum: - seed - early_stage_venture - late_stage_venture - private_equity - m_and_a - ipo x-enum-descriptions: - Seed - Early Stage Venture - Late Stage Venture - Private Equity - M&A - IPO x-cb-field-enum-values: - value: seed description: Seed - value: early_stage_venture description: Early Stage Venture - value: late_stage_venture description: Late Stage Venture - value: private_equity description: Private Equity - value: m_and_a description: M&A - value: ipo description: IPO x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes funded_organization_funding_total: type: object description: Total funding amount raised across all Funding Rounds allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq funded_organization_identifier: type: object description: Name of the organization that got funded allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts funded_organization_location: type: array description: Location of the organization that got funded items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all funded_organization_revenue_range: type: string description: 'Revenue range of the organization that got funded * r_00000000 - Less than $1M * r_00001000 - $1M to $10M * r_00010000 - $10M to $50M * r_00050000 - $50M to $100M * r_00100000 - $100M to $500M * r_00500000 - $500M to $1B * r_01000000 - $1B to $10B * r_10000000 - $10B+' enum: - r_00000000 - r_00001000 - r_00010000 - r_00050000 - r_00100000 - r_00500000 - r_01000000 - r_10000000 x-enum-descriptions: - Less than $1M - $1M to $10M - $10M to $50M - $50M to $100M - $100M to $500M - $500M to $1B - $1B to $10B - $10B+ x-cb-field-enum-values: - value: r_00000000 description: Less than $1M - value: r_00001000 description: $1M to $10M - value: r_00010000 description: $10M to $50M - value: r_00050000 description: $50M to $100M - value: r_00100000 description: $100M to $500M - value: r_00500000 description: $500M to $1B - value: r_01000000 description: $1B to $10B - value: r_10000000 description: $10B+ x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Auto-generated name of transaction (e.g. Angel - Uber) allOf: - $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts image_id: type: string maxLength: 255 x-cb-field-type: image_id x-cb-searchable: false x-cb-search-operators: [] investment_stage: type: string description: 'The funding stage of a funding round * early_stage_venture - Early Stage Venture * late_stage_venture - Late Stage Venture * private_equity - Private Equity * seed - Seed' enum: - seed - early_stage_venture - late_stage_venture - private_equity x-enum-descriptions: - Seed - Early Stage Venture - Late Stage Venture - Private Equity x-cb-field-enum-values: - value: seed description: Seed - value: early_stage_venture description: Early Stage Venture - value: late_stage_venture description: Late Stage Venture - value: private_equity description: Private Equity x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes investment_type: type: string description: 'Type of Funding Round (e.g. Seed, Series A, Private Equity, Debt Financing) * angel - Angel * convertible_note - Convertible Note * corporate_round - Corporate Round * debt_financing - Debt Financing * equity_crowdfunding - Equity Crowdfunding * grant - Grant * initial_coin_offering - Initial Coin Offering * non_equity_assistance - Non-equity Assistance * post_ipo_debt - Post-IPO Debt * post_ipo_equity - Post-IPO Equity * post_ipo_secondary - Post-IPO Secondary * pre_seed - Pre-Seed * private_equity - Private Equity * product_crowdfunding - Product Crowdfunding * secondary_market - Secondary Market * seed - Seed * series_a - Series A * series_b - Series B * series_c - Series C * series_d - Series D * series_e - Series E * series_f - Series F * series_g - Series G * series_h - Series H * series_i - Series I * series_j - Series J * series_unknown - Venture - Series Unknown * undisclosed - Funding Round' enum: - pre_seed - seed - series_a - series_b - series_c - series_d - series_e - series_f - series_g - series_h - series_i - series_j - series_unknown - angel - private_equity - debt_financing - convertible_note - grant - corporate_round - equity_crowdfunding - product_crowdfunding - secondary_market - post_ipo_equity - post_ipo_debt - post_ipo_secondary - non_equity_assistance - initial_coin_offering - undisclosed x-enum-descriptions: - Pre-Seed - Seed - Series A - Series B - Series C - Series D - Series E - Series F - Series G - Series H - Series I - Series J - Venture - Series Unknown - Angel - Private Equity - Debt Financing - Convertible Note - Grant - Corporate Round - Equity Crowdfunding - Product Crowdfunding - Secondary Market - Post-IPO Equity - Post-IPO Debt - Post-IPO Secondary - Non-equity Assistance - Initial Coin Offering - Funding Round x-cb-field-enum-values: - value: pre_seed description: Pre-Seed - value: seed description: Seed - value: series_a description: Series A - value: series_b description: Series B - value: series_c description: Series C - value: series_d description: Series D - value: series_e description: Series E - value: series_f description: Series F - value: series_g description: Series G - value: series_h description: Series H - value: series_i description: Series I - value: series_j description: Series J - value: series_unknown description: Venture - Series Unknown - value: angel description: Angel - value: private_equity description: Private Equity - value: debt_financing description: Debt Financing - value: convertible_note description: Convertible Note - value: grant description: Grant - value: corporate_round description: Corporate Round - value: equity_crowdfunding description: Equity Crowdfunding - value: product_crowdfunding description: Product Crowdfunding - value: secondary_market description: Secondary Market - value: post_ipo_equity description: Post-IPO Equity - value: post_ipo_debt description: Post-IPO Debt - value: post_ipo_secondary description: Post-IPO Secondary - value: non_equity_assistance description: Non-equity Assistance - value: initial_coin_offering description: Initial Coin Offering - value: undisclosed description: Funding Round x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes investor_identifiers: type: array description: Names of all investors who invested in the funding round items: $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all is_equity: type: boolean description: This indicates whether the Funding Round is financed only through equity. x-cb-field-type: boolean x-cb-searchable: true x-cb-search-operators: - blank - eq lead_investor_identifiers: type: array description: Name of the investor who led the investment in the funding round items: $ref: '#/components/schemas/EntityIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all money_raised: type: object description: Amount of money raised in Funding Round allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq name: type: string maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] num_investors: type: number description: Total number of Investors in a Funding Round x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_partners: type: number description: Total number of Partner Investors in a Funding Round x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq permalink: type: string maxLength: 255 x-cb-field-type: permalink x-cb-searchable: false x-cb-search-operators: [] post_money_valuation: type: object description: Valuation of a Company after a Funding Round allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq post_money_valuation_source: type: string description: 'Source of the Post-Money Valuation for a Funding Round * c100_confirmed - Confirmed * c200_estimated - Estimated' enum: - c100_confirmed - c200_estimated x-enum-descriptions: - Confirmed - Estimated x-cb-field-enum-values: - value: c100_confirmed description: Confirmed - value: c200_estimated description: Estimated x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes pre_money_valuation: type: object description: Valuation of a Company prior to a Funding Round allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank: type: number description: Algorithmic rank assigned to the top profiles on Crunchbase x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank_funding_round: type: number description: Algorithmic rank assigned to the top 100,000 most active Funding Rounds x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq short_description: type: string description: Short description of the Funding Round maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains target_money_raised: type: object description: Amount of money the funded Organization would like to raised in the Funding Round allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes AcquisitionFieldId: type: string description: Acquisition field ids enum: - acquiree_categories - acquiree_funding_total - acquiree_identifier - acquiree_last_funding_type - acquiree_locations - acquiree_num_funding_rounds - acquiree_revenue_range - acquiree_short_description - acquirer_categories - acquirer_funding_stage - acquirer_funding_total - acquirer_identifier - acquirer_locations - acquirer_num_funding_rounds - acquirer_revenue_range - acquirer_short_description - acquisition_type - announced_on - completed_on - created_at - disposition_of_acquired - entity_def_id - identifier - permalink - price - rank - rank_acquisition - short_description - status - terms - updated_at - uuid DegreeEntity: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/Degree' organization: type: array items: $ref: '#/components/schemas/Organization' person: type: array items: $ref: '#/components/schemas/Person' properties: $ref: '#/components/schemas/Degree' DiversitySpotlightFieldId: type: string description: DiversitySpotlight field ids enum: - created_at - entity_def_id - facet_ids - identifier - name - updated_at - uuid MoneyDecimal: type: object description: A field containing decimal data that represents some amount of money required: - currency - value properties: currency: $ref: '#/components/schemas/CurrencyEnum' value: type: number format: double value_usd: type: number format: double FundFieldId: type: string description: Fund field ids enum: - announced_on - created_at - entity_def_id - identifier - image_id - investor_identifiers - money_raised - name - num_investors - owner_identifier - permalink - rank - short_description - started_on - updated_at - uuid PrincipalEntity: type: object properties: cards: type: object properties: $ref: '#/components/schemas/Principal' PrincipalFieldId: type: string description: Principal field ids enum: - aliases - born_on - categories - category_groups - closed_on - company_type - contact_email - created_at - delisted_on - description - died_on - diversity_spotlights - entity_def_id - equity_funding_total - exited_on - facebook - facet_ids - first_name - founded_on - founder_identifiers - funding_stage - funding_total - gender - hub_tags - identifier - image_id - image_url - investor_identifiers - investor_stage - investor_type - ipo_status - last_equity_funding_total - last_equity_funding_type - last_funding_at - last_funding_total - last_funding_type - last_name - layout_id - linkedin - location_group_identifiers - location_identifiers - name - num_alumni - num_articles - num_diversity_spotlight_investments - num_employees_enum - num_enrollments - num_event_appearances - num_exits - num_exits_ipo - num_founded_organizations - num_founders - num_funding_rounds - num_funds - num_investments - num_investors - num_jobs - num_lead_investments - num_lead_investors - num_partner_investments - num_portfolio_organizations - operating_status - permalink - permalink_aliases - phone_number - primary_job_title - primary_organization - program_application_deadline - program_duration - program_type - rank - rank_delta_d30 - rank_delta_d7 - rank_delta_d90 - revenue_range - school_method - school_program - school_type - short_description - status - stock_exchange_symbol - stock_symbol - twitter - updated_at - uuid - website - website_url - went_public_on Money: type: object description: A field containing data that represents some amount of money required: - currency - value properties: currency: $ref: '#/components/schemas/CurrencyEnum' value: type: number value_usd: type: number Organization_2: type: object required: - identifier properties: acquirer_identifier: type: object description: Name of the organization that made the acquisition allOf: - $ref: '#/components/schemas/EntityIdentifier_2' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts aliases: type: array description: Alternate or previous names for the organization items: type: string maxLength: 255 x-cb-field-type: text_short_multi x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts categories: type: array description: Descriptive keyword for an Organization (e.g. SaaS, Android, Cloud Computing, Medical Device) items: $ref: '#/components/schemas/EntityIdentifier_2' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all category_groups: type: array description: Superset of Industries (e.g. Software, Mobile, Health Care) items: $ref: '#/components/schemas/EntityIdentifier_2' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all closed_on: type: object description: The date when the organization is closed allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte company_type: type: string description: 'Whether an Organization is for profit or non-profit * for_profit - For Profit * non_profit - Non-profit' enum: - for_profit - non_profit x-enum-descriptions: - For Profit - Non-profit x-cb-field-enum-values: - value: for_profit description: For Profit - value: non_profit description: Non-profit x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes contact_email: type: string description: General contact email for the organization maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte delisted_on: type: object description: The date when the Organization removed its stock from the stock exchange. allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte demo_days: type: boolean description: Whether an accelerator hosts any demo days x-cb-field-type: boolean x-cb-searchable: true x-cb-search-operators: - blank - eq description: type: string description: Organization Description, Industries, Industry Groups maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains diversity_spotlights: type: array description: Types of diversity represented in an organization, specifically of those who are founding members, currently the CEO, or have check-writing abilities in an investment firm. This feature is in beta and may change with future updates. items: $ref: '#/components/schemas/EntityIdentifier_2' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all entity_def_id: type: string description: '* organization - Organization' enum: - organization x-enum-descriptions: - Organization x-cb-field-enum-values: - value: organization description: Organization x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes exited_on: type: object description: Date the organization was acquired or went public allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte facebook: type: object description: Link to Organization's Facebook page allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] facet_ids: type: array items: type: string description: '* company - Company * government_entity - Government Entity * investor - Investor * school - School' enum: - company - government_entity - investor - school x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all founded_on: type: object description: Date the Organization was founded allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte founder_identifiers: type: array description: Founders of the organization items: $ref: '#/components/schemas/EntityIdentifier_2' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all funding_stage: type: string description: 'This field describes an organization''s most recent funding status (e.g. Early Stage Venture, Late Stage Venture, M&A) * early_stage_venture - Early Stage Venture * ipo - IPO * late_stage_venture - Late Stage Venture * m_and_a - M&A * private_equity - Private Equity * seed - Seed' enum: - seed - early_stage_venture - late_stage_venture - private_equity - m_and_a - ipo x-enum-descriptions: - Seed - Early Stage Venture - Late Stage Venture - Private Equity - M&A - IPO x-cb-field-enum-values: - value: seed description: Seed - value: early_stage_venture description: Early Stage Venture - value: late_stage_venture description: Late Stage Venture - value: private_equity description: Private Equity - value: m_and_a description: M&A - value: ipo description: IPO x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes hub_tags: type: array description: Tags are labels assigned to organizations, which identify their belonging to a group with that shared label items: type: string description: 'Tags are labels assigned to organizations, which identify their belonging to a group with that shared label * cbvp - Crunchbase Venture Program * emerging_unicorn - Emerging Unicorn * exited_unicorn - Exited Unicorn * pledge_one_percent - Pledge 1% * unicorn - Unicorn' enum: - cbvp - pledge_one_percent - unicorn - emerging_unicorn - exited_unicorn x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all identifier: type: object description: Name of the Organization allOf: - $ref: '#/components/schemas/EntityIdentifier_2' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts image_id: type: string description: The profile image of the organization on Crunchbase maxLength: 255 x-cb-field-type: image_id x-cb-searchable: false x-cb-search-operators: [] image_url: type: string description: The url of the profile image maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] investor_identifiers: type: array description: The top 5 investors with investments in this company, ordered by Crunchbase Rank items: $ref: '#/components/schemas/EntityIdentifier_2' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all investor_stage: type: array description: This describes the stage of investments made by this organization (e.g. Angel, Fund of Funds, Venture Capital) items: type: string description: 'This describes the stage of investments made by this organization (e.g. Angel, Fund of Funds, Venture Capital) * convertible_note - Convertible Note * crowdfunding - Crowdfunding * debt - Debt * early_stage_venture - Early Stage Venture * grant - Grant * initial_coin_offering - Initial Coin Offering * late_stage_venture - Late Stage Venture * non_equity_assistance - Non Equity Assistance * post_ipo - Post-Ipo * private_equity - Private Equity * secondary_market - Secondary Market * seed - Seed * venture - Venture' enum: - seed - early_stage_venture - late_stage_venture - venture - private_equity - crowdfunding - debt - grant - non_equity_assistance - convertible_note - secondary_market - post_ipo - initial_coin_offering x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all investor_type: type: array description: This describes the type of investor this organization is (e.g. Angel, Fund of Funds, Venture Capital) items: type: string description: 'This describes the type of investor this organization is (e.g. Angel, Fund of Funds, Venture Capital) * accelerator - Accelerator * angel_group - Angel Group * co_working_space - Co-Working Space * corporate_venture_capital - Corporate Venture Capital * entrepreneurship_program - Entrepreneurship Program * family_investment_office - Family Investment Office * fund_of_funds - Fund Of Funds * government_office - Government Office * hedge_fund - Hedge Fund * incubator - Incubator * investment_bank - Investment Bank * micro_vc - Micro VC * pension_funds - Pension Funds * private_equity_firm - Private Equity Firm * secondary_purchaser - Secondary Purchaser * startup_competition - Startup Competition * syndicate - Syndicate * university_program - University Program * venture_capital - Venture Capital * venture_debt - Venture Debt' enum: - venture_capital - corporate_venture_capital - private_equity_firm - accelerator - micro_vc - angel_group - incubator - investment_bank - family_investment_office - venture_debt - co_working_space - fund_of_funds - hedge_fund - government_office - university_program - entrepreneurship_program - secondary_purchaser - startup_competition - syndicate - pension_funds x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all ipo_status: type: string description: 'The current public status of the Organization * delisted - Delisted * private - Private * public - Public' enum: - public - delisted - private x-enum-descriptions: - Public - Delisted - Private x-cb-field-enum-values: - value: public description: Public - value: delisted description: Delisted - value: private description: Private x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes last_equity_funding_total: type: object description: Amount of most recent Funding Round excluding debt allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq last_equity_funding_type: type: string description: 'The most recent Funding Round excluding debt * angel - Angel * convertible_note - Convertible Note * corporate_round - Corporate Round * debt_financing - Debt Financing * equity_crowdfunding - Equity Crowdfunding * grant - Grant * initial_coin_offering - Initial Coin Offering * non_equity_assistance - Non-equity Assistance * post_ipo_debt - Post-IPO Debt * post_ipo_equity - Post-IPO Equity * post_ipo_secondary - Post-IPO Secondary * pre_seed - Pre-Seed * private_equity - Private Equity * product_crowdfunding - Product Crowdfunding * secondary_market - Secondary Market * seed - Seed * series_a - Series A * series_b - Series B * series_c - Series C * series_d - Series D * series_e - Series E * series_f - Series F * series_g - Series G * series_h - Series H * series_i - Series I * series_j - Series J * series_unknown - Venture - Series Unknown * undisclosed - Undisclosed' enum: - pre_seed - seed - series_a - series_b - series_c - series_d - series_e - series_f - series_g - series_h - series_i - series_j - series_unknown - angel - private_equity - debt_financing - convertible_note - grant - corporate_round - equity_crowdfunding - product_crowdfunding - secondary_market - post_ipo_equity - post_ipo_debt - post_ipo_secondary - non_equity_assistance - initial_coin_offering - undisclosed x-enum-descriptions: - Pre-Seed - Seed - Series A - Series B - Series C - Series D - Series E - Series F - Series G - Series H - Series I - Series J - Venture - Series Unknown - Angel - Private Equity - Debt Financing - Convertible Note - Grant - Corporate Round - Equity Crowdfunding - Product Crowdfunding - Secondary Market - Post-IPO Equity - Post-IPO Debt - Post-IPO Secondary - Non-equity Assistance - Initial Coin Offering - Undisclosed x-cb-field-enum-values: - value: pre_seed description: Pre-Seed - value: seed description: Seed - value: series_a description: Series A - value: series_b description: Series B - value: series_c description: Series C - value: series_d description: Series D - value: series_e description: Series E - value: series_f description: Series F - value: series_g description: Series G - value: series_h description: Series H - value: series_i description: Series I - value: series_j description: Series J - value: series_unknown description: Venture - Series Unknown - value: angel description: Angel - value: private_equity description: Private Equity - value: debt_financing description: Debt Financing - value: convertible_note description: Convertible Note - value: grant description: Grant - value: corporate_round description: Corporate Round - value: equity_crowdfunding description: Equity Crowdfunding - value: product_crowdfunding description: Product Crowdfunding - value: secondary_market description: Secondary Market - value: post_ipo_equity description: Post-IPO Equity - value: post_ipo_debt description: Post-IPO Debt - value: post_ipo_secondary description: Post-IPO Secondary - value: non_equity_assistance description: Non-equity Assistance - value: initial_coin_offering description: Initial Coin Offering - value: undisclosed description: Undisclosed x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes last_funding_at: type: string description: Date of most recent Funding Round format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte last_funding_total: type: object description: Amount of most recent Funding Round allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq last_funding_type: type: string description: 'Last funding round type (e.g. Seed, Series A, Private Equity) * angel - Angel * convertible_note - Convertible Note * corporate_round - Corporate Round * debt_financing - Debt Financing * equity_crowdfunding - Equity Crowdfunding * grant - Grant * initial_coin_offering - Initial Coin Offering * non_equity_assistance - Non-equity Assistance * post_ipo_debt - Post-IPO Debt * post_ipo_equity - Post-IPO Equity * post_ipo_secondary - Post-IPO Secondary * pre_seed - Pre-Seed * private_equity - Private Equity * product_crowdfunding - Product Crowdfunding * secondary_market - Secondary Market * seed - Seed * series_a - Series A * series_b - Series B * series_c - Series C * series_d - Series D * series_e - Series E * series_f - Series F * series_g - Series G * series_h - Series H * series_i - Series I * series_j - Series J * series_unknown - Venture - Series Unknown * undisclosed - Undisclosed' enum: - pre_seed - seed - series_a - series_b - series_c - series_d - series_e - series_f - series_g - series_h - series_i - series_j - series_unknown - angel - private_equity - debt_financing - convertible_note - grant - corporate_round - equity_crowdfunding - product_crowdfunding - secondary_market - post_ipo_equity - post_ipo_debt - post_ipo_secondary - non_equity_assistance - initial_coin_offering - undisclosed x-enum-descriptions: - Pre-Seed - Seed - Series A - Series B - Series C - Series D - Series E - Series F - Series G - Series H - Series I - Series J - Venture - Series Unknown - Angel - Private Equity - Debt Financing - Convertible Note - Grant - Corporate Round - Equity Crowdfunding - Product Crowdfunding - Secondary Market - Post-IPO Equity - Post-IPO Debt - Post-IPO Secondary - Non-equity Assistance - Initial Coin Offering - Undisclosed x-cb-field-enum-values: - value: pre_seed description: Pre-Seed - value: seed description: Seed - value: series_a description: Series A - value: series_b description: Series B - value: series_c description: Series C - value: series_d description: Series D - value: series_e description: Series E - value: series_f description: Series F - value: series_g description: Series G - value: series_h description: Series H - value: series_i description: Series I - value: series_j description: Series J - value: series_unknown description: Venture - Series Unknown - value: angel description: Angel - value: private_equity description: Private Equity - value: debt_financing description: Debt Financing - value: convertible_note description: Convertible Note - value: grant description: Grant - value: corporate_round description: Corporate Round - value: equity_crowdfunding description: Equity Crowdfunding - value: product_crowdfunding description: Product Crowdfunding - value: secondary_market description: Secondary Market - value: post_ipo_equity description: Post-IPO Equity - value: post_ipo_debt description: Post-IPO Debt - value: post_ipo_secondary description: Post-IPO Secondary - value: non_equity_assistance description: Non-equity Assistance - value: initial_coin_offering description: Initial Coin Offering - value: undisclosed description: Undisclosed x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes layout_id: type: string description: 'This is the auto-generated layout for the profile * investor - Investor Layout * school - School Layout' enum: - school - investor x-enum-descriptions: - School Layout - Investor Layout x-cb-field-enum-values: - value: school description: School Layout - value: investor description: Investor Layout x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes legal_name: type: string description: The legal name of the organization maxLength: 255 x-cb-field-type: text_short x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts linkedin: type: object description: Link to Organization's LinkedIn page allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] listed_stock_symbol: type: string description: Stock ticker symbol (e.g. AAPL, FB, TWTR) maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] location_group_identifiers: type: array description: Where the organization is headquartered (e.g. San Francisco Bay Area, Silicon Valley) items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all location_identifiers: type: array description: Where the organization is headquartered items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all name: type: string maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] num_alumni: type: number description: Total number of alumni x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_current_advisor_positions: type: number description: Total number of board member and advisor profiles an organization has on Crunchbase x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_current_positions: type: number description: Total number of employee profiles an organization has on Crunchbase x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_diversity_spotlight_investments: type: number description: Total number of diversity investments made by an investor x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_employees_enum: type: string description: 'Total number of employees * c_00001_00010 - 1-10 * c_00011_00050 - 11-50 * c_00051_00100 - 51-100 * c_00101_00250 - 101-250 * c_00251_00500 - 251-500 * c_00501_01000 - 501-1000 * c_01001_05000 - 1001-5000 * c_05001_10000 - 5001-10000 * c_10001_max - 10001+' enum: - c_00001_00010 - c_00011_00050 - c_00051_00100 - c_00101_00250 - c_00251_00500 - c_00501_01000 - c_01001_05000 - c_05001_10000 - c_10001_max x-enum-descriptions: - 1-10 - 11-50 - 51-100 - 101-250 - 251-500 - 501-1000 - 1001-5000 - 5001-10000 - 10001+ x-cb-field-enum-values: - value: c_00001_00010 description: 1-10 - value: c_00011_00050 description: 11-50 - value: c_00051_00100 description: 51-100 - value: c_00101_00250 description: 101-250 - value: c_00251_00500 description: 251-500 - value: c_00501_01000 description: 501-1000 - value: c_01001_05000 description: 1001-5000 - value: c_05001_10000 description: 5001-10000 - value: c_10001_max description: 10001+ x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes num_enrollments: type: string description: 'Total number of Enrollments * c_00001_00010 - 1-10 * c_00011_00050 - 11-50 * c_00051_00100 - 51-100 * c_00101_00250 - 101-250 * c_00251_00500 - 251-500 * c_00501_01000 - 501-1000 * c_01001_05000 - 1001-5000 * c_05001_10000 - 5001-10000 * c_10001_max - 10001+' enum: - c_00001_00010 - c_00011_00050 - c_00051_00100 - c_00101_00250 - c_00251_00500 - c_00501_01000 - c_01001_05000 - c_05001_10000 - c_10001_max x-enum-descriptions: - 1-10 - 11-50 - 51-100 - 101-250 - 251-500 - 501-1000 - 1001-5000 - 5001-10000 - 10001+ x-cb-field-enum-values: - value: c_00001_00010 description: 1-10 - value: c_00011_00050 description: 11-50 - value: c_00051_00100 description: 51-100 - value: c_00101_00250 description: 101-250 - value: c_00251_00500 description: 251-500 - value: c_00501_01000 description: 501-1000 - value: c_01001_05000 description: 1001-5000 - value: c_05001_10000 description: 5001-10000 - value: c_10001_max description: 10001+ x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes num_event_appearances: type: number description: Total number of events an Organization appeared in x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_exits: type: number description: Total number of Exits x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_exits_ipo: type: number description: Total number of Exits (IPO) x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_founder_alumni: type: number description: Total number of Alumni that are Founders x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_founders: type: number description: Total number of Founders x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_funding_rounds: type: number description: Total number of Funding Rounds x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_investments: type: number description: Total number of Investments made x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_investors: type: number description: Total number of investment firms and individual investors x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_lead_investments: type: number description: Total number of Lead Investments made x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_lead_investors: type: number description: Total number of lead investment firms and individual investors x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_past_positions: type: number description: Total number of past employee profiles of an organization x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_portfolio_organizations: type: number description: Total number of portfolio organizations x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_sub_organizations: type: number description: Total number of sub-organizations that belongs to a parent Organization x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq operating_status: type: string description: 'Operating Status of Organization e.g. Active, Closed * active - Active * closed - Closed' enum: - active - closed x-enum-descriptions: - Active - Closed x-cb-field-enum-values: - value: active description: Active - value: closed description: Closed x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes owner_identifier: type: object description: This is the parent Organization of the sub-organization allOf: - $ref: '#/components/schemas/EntityIdentifier_2' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts permalink: type: string maxLength: 255 x-cb-field-type: permalink x-cb-searchable: false x-cb-search-operators: [] permalink_aliases: type: array description: These are the alternative aliases to the primary permalink of the Organization items: type: string maxLength: 255 x-cb-field-type: text_exact_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all phone_number: type: string description: Organization's general phone number maxLength: 255 x-cb-field-type: text_exact x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes program_application_deadline: type: string description: The deadline for applying to the Accelerator Program format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte program_duration: type: number description: The duration of the Acceleration Program in number of weeks x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq program_type: type: string description: 'The type of Accelerator Program (e.g. On-Site, Online) * on_site - On-Site * online - Online' enum: - on_site - online x-enum-descriptions: - On-Site - Online x-cb-field-enum-values: - value: on_site description: On-Site - value: online description: Online x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes rank: type: number description: Algorithmic rank assigned to the top profiles on Crunchbase x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank_org: type: number description: Algorithmic rank assigned to the top 100,000 most active Organizations x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq school_method: type: string description: 'The type of School Method (e.g. On Campus, Online) * on_compus - On Campus * online - Online * online_and_on_campus - Online and On Campus' enum: - on_compus - online - online_and_on_campus x-enum-descriptions: - On Campus - Online - Online and On Campus x-cb-field-enum-values: - value: on_compus description: On Campus - value: online description: Online - value: online_and_on_campus description: Online and On Campus x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes school_program: type: string description: 'The type of School Program (e.g. Bootcamp, Four Year University) * bootcamp - Bootcamp * community_college - Community College * four_year_university - Four Year University * graduate_university - Graduate University * high_school - High School * trade_school - Trade School * two_year_university - Two Year University' enum: - four_year_university - two_year_university - graduate_university - bootcamp - trade_school - community_college - high_school x-enum-descriptions: - Four Year University - Two Year University - Graduate University - Bootcamp - Trade School - Community College - High School x-cb-field-enum-values: - value: four_year_university description: Four Year University - value: two_year_university description: Two Year University - value: graduate_university description: Graduate University - value: bootcamp description: Bootcamp - value: trade_school description: Trade School - value: community_college description: Community College - value: high_school description: High School x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes school_type: type: string description: 'The type of school * for_profit_private - Private * non_profit_private - Private (Non-Profit) * public - Public' enum: - public - for_profit_private - non_profit_private x-enum-descriptions: - Public - Private - Private (Non-Profit) x-cb-field-enum-values: - value: public description: Public - value: for_profit_private description: Private - value: non_profit_private description: Private (Non-Profit) x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes short_description: type: string description: Text of Organization Description, Industries, and Industry Groups maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains status: type: string description: 'Status of Organization e.g. Operating, Closed, Acquired, IPO * closed - Closed * ipo - IPO * operating - Operating * was_acquired - Was Acquired' enum: - closed - ipo - operating - was_acquired x-enum-descriptions: - Closed - IPO - Operating - Was Acquired x-cb-field-enum-values: - value: closed description: Closed - value: ipo description: IPO - value: operating description: Operating - value: was_acquired description: Was Acquired x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes stock_exchange_symbol: type: string description: 'Stock exchange where the Organization is listed e.g. NYSE, NASDAQ * adx - ADX - Abu Dhabi Securities Exchange * afx - AFX - Afghanistan Stock Exchange * altx - ALTX - ALTX East Africa Exchange * amex - AMEX - American Stock Exchange * ams - AMS - Euronext Amsterdam * amx - AMX - Armenia Securities Exchange * asce - ASCE - Abuja Securities and Commodities Exchange * asx - ASX - Australian Securities Exchange * ath - ATH - Athens Stock Exchange * bcba - BCBA - Buenos Aires Stock Exchange * bdp - BDP - Budapest Stock Exchange * belex - BELEX - Belgrade Stock Exchange * ber - BER - Berliner Börse * bfb - BFB - Baku Stock Exchange * bit - BIT - Italian Stock Exchange * bkk - BKK - Thailand Stock Exchange * blse - BLSE - Banja Luka Stock Exchange * bme - BME - Madrid Stock Exchange * bmv - BMV - Mexican Stock Exchange * bom - BOM - Bombay Stock Exchange * brvm - BRVM - Regional Securities Exchange SA * bse - BSE - Bulgarian Stock Exchange * bse_lb - BSE - Beirut Stock Exchange * bsse - BSSE - Bratislava Stock Exchange * bsx - BSX - Bermuda Stock Exchange * bvb - BVB - Bucharest Stock Exchange * bvc - BVC - Colombian Stock Exchange * bvfb - BVFB - Belarusian Currency and Stock Exchange * bvm - BVM - Montevideo Stock Exchange * bvmf - B3 - Brazil Stock Exchange and OTC Market * bvmt - BVMT - Tunis Stock Exchange * bx - BX - Berne Stock Exchange * cas - CAS - Casablanca Stock Exchange * cise - CISE - Channel Islands Stock Exchange * cnsx - CNSX - Canadian National Stock Exchange * col - COL - Colombo Stock Exchange * cph - CPH - Copenhagen Stock Exchange * cse - CSE - Canadian Securities Exchange * cse_cy - CSE - Cyprus Stock Exchange * csx - CSX - Cambodia Securities Exchange * cve - TSX-V - Toronto TSX Venture Exchange * dfm - DFM - Dubai Financial Market * dse - DSE - Dhaka Stock Exchange * dsx - DSX - Douala Stock Exchange * dus - DUS - Börse Düsseldorf * ebr - EBR - Euronext Brussels * egx - EGX - Egypt Stock Exchange * eli - ELI - Euronext Lisbon * epa - EPA - Euronext Paris * etr - ETR - Deutsche Börse XETRA * eurex - EUREX - Eurex Exchange * fra - FRA - Frankfurt Stock Exchange * fwb - FWB - Börse Frankfurt Stock Exchange * gha - GHA - Ghana Stock Exchange * gsx - GSX - Georgian Stock Exchange * gsx_gi - GSX - Gibraltar Stock Exchange * hel - HEL - Helsinki Stock Exchange * hkg - HKG - Hong Kong Stock Exchange * hnx - HNX - Hanoi Stock Exchange * hose - HOSE - Ho Chi Minh Stock Exchange * ice - ICE - Iceland Stock Exchange * idx - IDX - Indonesia Stock Exchange * iex - IEX - Investors Exchange * ifb - IFB - Iran Fara Bourse * ime - IME - Iran Mercantile Exchange * irenex - IRENEX - Iran Energy Exchange * ise - ISE - Irish Stock Exchange * ist - IST - Istanbul Stock Exchange * isx - ISX - Iraq Stock Exchange * jp - JP - Japan Exchange * jsc - JSC - Belarusian Currency and Stock Exchange * jse - JSE - Johannesburg Stock Exchange * jse_jam - JSE - Jamaica Stock Exchange * kase - KASE - Kazakhstan Stock Exchange * klse - KLSE - Malaysia Stock Exchange * kosdaq - KOSDAQ - Korean Securities Dealers Automated Quotations * krx - KRX - Korea Stock Exchange * kse - KSE - Kuwait Stock Exchange * lje - LJE - Ljubljana Stock Exchange * lse - LSE - London Stock Exchange * lsm - LSM - Libyan Stock Market * lsx - LSX - Lao Securities Exchange * luse - LuSE - Lusaka Securities Exchange * luxse - LuxSE - Luxembourg Stock Exchange * mal - MAL - Malta Stock Exchange * mcx - MCX - Multi Commodity Exchange of India * meff - MEFF - Mercado Spanish Financial Futures Market * mnse - MNSE - Montenegro Stock Exchange * moex - MOEX - Moscow Exchange * mse - MSE - Metropolitan Stock Exchange * mse_md - MSE - Moldova Stock Exchange * mse_mk - MSE - Macedonian Stock Exchange * msei - MSEI - Metropolitan Stock Exchange of India * msm - MSM - Muscat Securities Market * mun - MUN - Börse München * nasdaq - NASDAQ * nbo - NSE - Nairobi Securities Exchange * neeq - NEEQ - National Equities Exchange and Quotations * nepse - NEPSE - Nepal Stock Exchange * nex - NEX - NEX Exchange * ngm - NGM - Nordic Growth Market Exchange * nig - NIG - Nigerian Stock Exchange * notc - NOTC - Norwegian OTC * npex - NPEX - NPEX Stock Exchange * nse - NSE - National Stock Exchange of India * nsx - NSX - National Stock Exchange of Australia * nyse - NYSE - New York Stock Exchange * nysearca - NYSEARCA - NYSE Arca * nysemkt - NYSEAMERICAN - NYSE American * nze - NZE - New Zealand Stock Exchange * ose - OSE - Oslo Stock Exchange * otcbb - OTCBB - FINRA OTC Bulletin Board * otcpink - OTC Pink * otcqb - OTCQB * otcqx - OTCQX * pdex - PDEx - Philippine Dealing Exchange * pex - PEX - Palestine Exchange * pfts - PFTS - PFTS Ukraine Stock Exchange * pomsox - POMSoX - Port Moresby Stock Exchange * prg - PRA - Prague Stock Exchange * pse - PSE - Philippine Stock Exchange * psx - PSX - Pakistan Stock Exchange * qse - QSE - Qatar Stock Exchange * rfb - RFB - Riga Stock Exchange * rse - RSE - Rwanda Stock Exchange * rsebl - RSEBL - Royal Securities Exchange of Bhutan * sase - SASE - Sarajevo Stock Exchange * sbx - SBX - BX Swiss * sehk - SEHK - The Stock Exchange of Hong Kong * sem - SEM - Stock Exchange of Mauritius * sgbv - SGBV - Algiers Stock Exchange * sgx - SGX - Singapore Stock Exchange * six - SIX - SIX Swiss Exchange * spbex - SPBEX - Saint Petersburg Stock Exchange * spse - SPSE - South Pacific Stock Exchange * sse - SSE - Shanghai Stock Exchange * ssx - SSX - Sydney Stock Exchange * sto - STO - Stockholm Stock Exchange * stu - STU - Börse Stuttgart * swx - SWX - SIX Swiss Exchange * szse - SZSE - Shenzhen Stock Exchange * tadawul - Tadawul - Saudi Stock Exchange * tal - TSE - Tallinn Stock Exchange * tfex - TFEX - Thailand Futures Exchange * tise - TISE - The International Stock Exchange * tlv - TLV - Tel Aviv Stock Exchange * tpe - TWSE - Taiwan Stock Exchange * tse_al - TSE - Tirana Stock Exchange * tse_ir - TSE - Tehran Stock Exchange * tsec - TWO - Taiwan OTC Exchange * tsx - TSX - Toronto Stock Exchange * ttse - TTSE - Trinidad and Tobago Stock Exchange * tyo - TYO - Tokyo Stock Exchange * use - USE - Uganda Securities Exchange * ux - UX - Ukrainian Exchange * vie - VIE - Vienna Stock Exchange * vmf - VMF - Faroese Securities Market * vse - VSE - Vancouver Stock Exchange * wse - WSE - Warsaw Stock Exchange * ysx - YSX - Yangon Stock Exchange * zamace - ZAMACE - Zambian Commodity Exchange * zse - ZSE - Zimbabwe Stock Exchange * zse_hr - ZSE - Zagreb Stock Exchange' enum: - adx - afx - altx - amx - amex - ams - asce - asx - ath - bcba - bdp - belex - ber - bfb - bit - bkk - blse - bme - bmv - bom - brvm - bse - bse_lb - bsse - bsx - bvb - bvc - bvfb - bvm - bvmf - bvmt - bx - cas - cise - cnsx - col - cph - cse - cse_cy - csx - dfm - dse - dsx - dus - ebr - egx - eli - epa - etr - eurex - fra - fwb - gha - gsx - gsx_gi - hel - hkg - hnx - hose - ice - idx - iex - ifb - ime - irenex - ise - ist - isx - jp - jsc - jse - jse_jam - kase - klse - kosdaq - krx - kse - lje - lse - lsm - lsx - luse - luxse - mal - mcx - meff - mnse - moex - mse - mse_md - mse_mk - msei - msm - mun - nasdaq - nbo - nex - nepse - neeq - ngm - nig - notc - npex - nse - nsx - nyse - nysearca - nysemkt - nze - ose - otcbb - otcpink - otcqb - otcqx - pdex - pex - pfts - pomsox - prg - pse - psx - qse - rfb - rse - rsebl - sase - sbx - sehk - sem - sgbv - sgx - six - spbex - spse - sse - ssx - sto - stu - swx - szse - tal - tfex - tise - tlv - tpe - tse_al - tse_ir - tsec - tsx - cve - tyo - ttse - tadawul - use - ux - vie - vmf - vse - wse - ysx - zamace - zse - zse_hr x-enum-descriptions: - ADX - Abu Dhabi Securities Exchange - AFX - Afghanistan Stock Exchange - ALTX - ALTX East Africa Exchange - AMX - Armenia Securities Exchange - AMEX - American Stock Exchange - AMS - Euronext Amsterdam - ASCE - Abuja Securities and Commodities Exchange - ASX - Australian Securities Exchange - ATH - Athens Stock Exchange - BCBA - Buenos Aires Stock Exchange - BDP - Budapest Stock Exchange - BELEX - Belgrade Stock Exchange - BER - Berliner Börse - BFB - Baku Stock Exchange - BIT - Italian Stock Exchange - BKK - Thailand Stock Exchange - BLSE - Banja Luka Stock Exchange - BME - Madrid Stock Exchange - BMV - Mexican Stock Exchange - BOM - Bombay Stock Exchange - BRVM - Regional Securities Exchange SA - BSE - Bulgarian Stock Exchange - BSE - Beirut Stock Exchange - BSSE - Bratislava Stock Exchange - BSX - Bermuda Stock Exchange - BVB - Bucharest Stock Exchange - BVC - Colombian Stock Exchange - BVFB - Belarusian Currency and Stock Exchange - BVM - Montevideo Stock Exchange - B3 - Brazil Stock Exchange and OTC Market - BVMT - Tunis Stock Exchange - BX - Berne Stock Exchange - CAS - Casablanca Stock Exchange - CISE - Channel Islands Stock Exchange - CNSX - Canadian National Stock Exchange - COL - Colombo Stock Exchange - CPH - Copenhagen Stock Exchange - CSE - Canadian Securities Exchange - CSE - Cyprus Stock Exchange - CSX - Cambodia Securities Exchange - DFM - Dubai Financial Market - DSE - Dhaka Stock Exchange - DSX - Douala Stock Exchange - DUS - Börse Düsseldorf - EBR - Euronext Brussels - EGX - Egypt Stock Exchange - ELI - Euronext Lisbon - EPA - Euronext Paris - ETR - Deutsche Börse XETRA - EUREX - Eurex Exchange - FRA - Frankfurt Stock Exchange - FWB - Börse Frankfurt Stock Exchange - GHA - Ghana Stock Exchange - GSX - Georgian Stock Exchange - GSX - Gibraltar Stock Exchange - HEL - Helsinki Stock Exchange - HKG - Hong Kong Stock Exchange - HNX - Hanoi Stock Exchange - HOSE - Ho Chi Minh Stock Exchange - ICE - Iceland Stock Exchange - IDX - Indonesia Stock Exchange - IEX - Investors Exchange - IFB - Iran Fara Bourse - IME - Iran Mercantile Exchange - IRENEX - Iran Energy Exchange - ISE - Irish Stock Exchange - IST - Istanbul Stock Exchange - ISX - Iraq Stock Exchange - JP - Japan Exchange - JSC - Belarusian Currency and Stock Exchange - JSE - Johannesburg Stock Exchange - JSE - Jamaica Stock Exchange - KASE - Kazakhstan Stock Exchange - KLSE - Malaysia Stock Exchange - KOSDAQ - Korean Securities Dealers Automated Quotations - KRX - Korea Stock Exchange - KSE - Kuwait Stock Exchange - LJE - Ljubljana Stock Exchange - LSE - London Stock Exchange - LSM - Libyan Stock Market - LSX - Lao Securities Exchange - LuSE - Lusaka Securities Exchange - LuxSE - Luxembourg Stock Exchange - MAL - Malta Stock Exchange - MCX - Multi Commodity Exchange of India - MEFF - Mercado Spanish Financial Futures Market - MNSE - Montenegro Stock Exchange - MOEX - Moscow Exchange - MSE - Metropolitan Stock Exchange - MSE - Moldova Stock Exchange - MSE - Macedonian Stock Exchange - MSEI - Metropolitan Stock Exchange of India - MSM - Muscat Securities Market - MUN - Börse München - NASDAQ - NSE - Nairobi Securities Exchange - NEX - NEX Exchange - NEPSE - Nepal Stock Exchange - NEEQ - National Equities Exchange and Quotations - NGM - Nordic Growth Market Exchange - NIG - Nigerian Stock Exchange - NOTC - Norwegian OTC - NPEX - NPEX Stock Exchange - NSE - National Stock Exchange of India - NSX - National Stock Exchange of Australia - NYSE - New York Stock Exchange - NYSEARCA - NYSE Arca - NYSEAMERICAN - NYSE American - NZE - New Zealand Stock Exchange - OSE - Oslo Stock Exchange - OTCBB - FINRA OTC Bulletin Board - OTC Pink - OTCQB - OTCQX - PDEx - Philippine Dealing Exchange - PEX - Palestine Exchange - PFTS - PFTS Ukraine Stock Exchange - POMSoX - Port Moresby Stock Exchange - PRA - Prague Stock Exchange - PSE - Philippine Stock Exchange - PSX - Pakistan Stock Exchange - QSE - Qatar Stock Exchange - RFB - Riga Stock Exchange - RSE - Rwanda Stock Exchange - RSEBL - Royal Securities Exchange of Bhutan - SASE - Sarajevo Stock Exchange - SBX - BX Swiss - SEHK - The Stock Exchange of Hong Kong - SEM - Stock Exchange of Mauritius - SGBV - Algiers Stock Exchange - SGX - Singapore Stock Exchange - SIX - SIX Swiss Exchange - SPBEX - Saint Petersburg Stock Exchange - SPSE - South Pacific Stock Exchange - SSE - Shanghai Stock Exchange - SSX - Sydney Stock Exchange - STO - Stockholm Stock Exchange - STU - Börse Stuttgart - SWX - SIX Swiss Exchange - SZSE - Shenzhen Stock Exchange - TSE - Tallinn Stock Exchange - TFEX - Thailand Futures Exchange - TISE - The International Stock Exchange - TLV - Tel Aviv Stock Exchange - TWSE - Taiwan Stock Exchange - TSE - Tirana Stock Exchange - TSE - Tehran Stock Exchange - TWO - Taiwan OTC Exchange - TSX - Toronto Stock Exchange - TSX-V - Toronto TSX Venture Exchange - TYO - Tokyo Stock Exchange - TTSE - Trinidad and Tobago Stock Exchange - Tadawul - Saudi Stock Exchange - USE - Uganda Securities Exchange - UX - Ukrainian Exchange - VIE - Vienna Stock Exchange - VMF - Faroese Securities Market - VSE - Vancouver Stock Exchange - WSE - Warsaw Stock Exchange - YSX - Yangon Stock Exchange - ZAMACE - Zambian Commodity Exchange - ZSE - Zimbabwe Stock Exchange - ZSE - Zagreb Stock Exchange x-cb-field-enum-values: - value: adx description: ADX - Abu Dhabi Securities Exchange - value: afx description: AFX - Afghanistan Stock Exchange - value: altx description: ALTX - ALTX East Africa Exchange - value: amx description: AMX - Armenia Securities Exchange - value: amex description: AMEX - American Stock Exchange - value: ams description: AMS - Euronext Amsterdam - value: asce description: ASCE - Abuja Securities and Commodities Exchange - value: asx description: ASX - Australian Securities Exchange - value: ath description: ATH - Athens Stock Exchange - value: bcba description: BCBA - Buenos Aires Stock Exchange - value: bdp description: BDP - Budapest Stock Exchange - value: belex description: BELEX - Belgrade Stock Exchange - value: ber description: BER - Berliner Börse - value: bfb description: BFB - Baku Stock Exchange - value: bit description: BIT - Italian Stock Exchange - value: bkk description: BKK - Thailand Stock Exchange - value: blse description: BLSE - Banja Luka Stock Exchange - value: bme description: BME - Madrid Stock Exchange - value: bmv description: BMV - Mexican Stock Exchange - value: bom description: BOM - Bombay Stock Exchange - value: brvm description: BRVM - Regional Securities Exchange SA - value: bse description: BSE - Bulgarian Stock Exchange - value: bse_lb description: BSE - Beirut Stock Exchange - value: bsse description: BSSE - Bratislava Stock Exchange - value: bsx description: BSX - Bermuda Stock Exchange - value: bvb description: BVB - Bucharest Stock Exchange - value: bvc description: BVC - Colombian Stock Exchange - value: bvfb description: BVFB - Belarusian Currency and Stock Exchange - value: bvm description: BVM - Montevideo Stock Exchange - value: bvmf description: B3 - Brazil Stock Exchange and OTC Market - value: bvmt description: BVMT - Tunis Stock Exchange - value: bx description: BX - Berne Stock Exchange - value: cas description: CAS - Casablanca Stock Exchange - value: cise description: CISE - Channel Islands Stock Exchange - value: cnsx description: CNSX - Canadian National Stock Exchange - value: col description: COL - Colombo Stock Exchange - value: cph description: CPH - Copenhagen Stock Exchange - value: cse description: CSE - Canadian Securities Exchange - value: cse_cy description: CSE - Cyprus Stock Exchange - value: csx description: CSX - Cambodia Securities Exchange - value: dfm description: DFM - Dubai Financial Market - value: dse description: DSE - Dhaka Stock Exchange - value: dsx description: DSX - Douala Stock Exchange - value: dus description: DUS - Börse Düsseldorf - value: ebr description: EBR - Euronext Brussels - value: egx description: EGX - Egypt Stock Exchange - value: eli description: ELI - Euronext Lisbon - value: epa description: EPA - Euronext Paris - value: etr description: ETR - Deutsche Börse XETRA - value: eurex description: EUREX - Eurex Exchange - value: fra description: FRA - Frankfurt Stock Exchange - value: fwb description: FWB - Börse Frankfurt Stock Exchange - value: gha description: GHA - Ghana Stock Exchange - value: gsx description: GSX - Georgian Stock Exchange - value: gsx_gi description: GSX - Gibraltar Stock Exchange - value: hel description: HEL - Helsinki Stock Exchange - value: hkg description: HKG - Hong Kong Stock Exchange - value: hnx description: HNX - Hanoi Stock Exchange - value: hose description: HOSE - Ho Chi Minh Stock Exchange - value: ice description: ICE - Iceland Stock Exchange - value: idx description: IDX - Indonesia Stock Exchange - value: iex description: IEX - Investors Exchange - value: ifb description: IFB - Iran Fara Bourse - value: ime description: IME - Iran Mercantile Exchange - value: irenex description: IRENEX - Iran Energy Exchange - value: ise description: ISE - Irish Stock Exchange - value: ist description: IST - Istanbul Stock Exchange - value: isx description: ISX - Iraq Stock Exchange - value: jp description: JP - Japan Exchange - value: jsc description: JSC - Belarusian Currency and Stock Exchange - value: jse description: JSE - Johannesburg Stock Exchange - value: jse_jam description: JSE - Jamaica Stock Exchange - value: kase description: KASE - Kazakhstan Stock Exchange - value: klse description: KLSE - Malaysia Stock Exchange - value: kosdaq description: KOSDAQ - Korean Securities Dealers Automated Quotations - value: krx description: KRX - Korea Stock Exchange - value: kse description: KSE - Kuwait Stock Exchange - value: lje description: LJE - Ljubljana Stock Exchange - value: lse description: LSE - London Stock Exchange - value: lsm description: LSM - Libyan Stock Market - value: lsx description: LSX - Lao Securities Exchange - value: luse description: LuSE - Lusaka Securities Exchange - value: luxse description: LuxSE - Luxembourg Stock Exchange - value: mal description: MAL - Malta Stock Exchange - value: mcx description: MCX - Multi Commodity Exchange of India - value: meff description: MEFF - Mercado Spanish Financial Futures Market - value: mnse description: MNSE - Montenegro Stock Exchange - value: moex description: MOEX - Moscow Exchange - value: mse description: MSE - Metropolitan Stock Exchange - value: mse_md description: MSE - Moldova Stock Exchange - value: mse_mk description: MSE - Macedonian Stock Exchange - value: msei description: MSEI - Metropolitan Stock Exchange of India - value: msm description: MSM - Muscat Securities Market - value: mun description: MUN - Börse München - value: nasdaq description: NASDAQ - value: nbo description: NSE - Nairobi Securities Exchange - value: nex description: NEX - NEX Exchange - value: nepse description: NEPSE - Nepal Stock Exchange - value: neeq description: NEEQ - National Equities Exchange and Quotations - value: ngm description: NGM - Nordic Growth Market Exchange - value: nig description: NIG - Nigerian Stock Exchange - value: notc description: NOTC - Norwegian OTC - value: npex description: NPEX - NPEX Stock Exchange - value: nse description: NSE - National Stock Exchange of India - value: nsx description: NSX - National Stock Exchange of Australia - value: nyse description: NYSE - New York Stock Exchange - value: nysearca description: NYSEARCA - NYSE Arca - value: nysemkt description: NYSEAMERICAN - NYSE American - value: nze description: NZE - New Zealand Stock Exchange - value: ose description: OSE - Oslo Stock Exchange - value: otcbb description: OTCBB - FINRA OTC Bulletin Board - value: otcpink description: OTC Pink - value: otcqb description: OTCQB - value: otcqx description: OTCQX - value: pdex description: PDEx - Philippine Dealing Exchange - value: pex description: PEX - Palestine Exchange - value: pfts description: PFTS - PFTS Ukraine Stock Exchange - value: pomsox description: POMSoX - Port Moresby Stock Exchange - value: prg description: PRA - Prague Stock Exchange - value: pse description: PSE - Philippine Stock Exchange - value: psx description: PSX - Pakistan Stock Exchange - value: qse description: QSE - Qatar Stock Exchange - value: rfb description: RFB - Riga Stock Exchange - value: rse description: RSE - Rwanda Stock Exchange - value: rsebl description: RSEBL - Royal Securities Exchange of Bhutan - value: sase description: SASE - Sarajevo Stock Exchange - value: sbx description: SBX - BX Swiss - value: sehk description: SEHK - The Stock Exchange of Hong Kong - value: sem description: SEM - Stock Exchange of Mauritius - value: sgbv description: SGBV - Algiers Stock Exchange - value: sgx description: SGX - Singapore Stock Exchange - value: six description: SIX - SIX Swiss Exchange - value: spbex description: SPBEX - Saint Petersburg Stock Exchange - value: spse description: SPSE - South Pacific Stock Exchange - value: sse description: SSE - Shanghai Stock Exchange - value: ssx description: SSX - Sydney Stock Exchange - value: sto description: STO - Stockholm Stock Exchange - value: stu description: STU - Börse Stuttgart - value: swx description: SWX - SIX Swiss Exchange - value: szse description: SZSE - Shenzhen Stock Exchange - value: tal description: TSE - Tallinn Stock Exchange - value: tfex description: TFEX - Thailand Futures Exchange - value: tise description: TISE - The International Stock Exchange - value: tlv description: TLV - Tel Aviv Stock Exchange - value: tpe description: TWSE - Taiwan Stock Exchange - value: tse_al description: TSE - Tirana Stock Exchange - value: tse_ir description: TSE - Tehran Stock Exchange - value: tsec description: TWO - Taiwan OTC Exchange - value: tsx description: TSX - Toronto Stock Exchange - value: cve description: TSX-V - Toronto TSX Venture Exchange - value: tyo description: TYO - Tokyo Stock Exchange - value: ttse description: TTSE - Trinidad and Tobago Stock Exchange - value: tadawul description: Tadawul - Saudi Stock Exchange - value: use description: USE - Uganda Securities Exchange - value: ux description: UX - Ukrainian Exchange - value: vie description: VIE - Vienna Stock Exchange - value: vmf description: VMF - Faroese Securities Market - value: vse description: VSE - Vancouver Stock Exchange - value: wse description: WSE - Warsaw Stock Exchange - value: ysx description: YSX - Yangon Stock Exchange - value: zamace description: ZAMACE - Zambian Commodity Exchange - value: zse description: ZSE - Zimbabwe Stock Exchange - value: zse_hr description: ZSE - Zagreb Stock Exchange x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes stock_symbol: type: object description: Stock ticker symbol (e.g. AAPL, FB, TWTR) allOf: - $ref: '#/components/schemas/EntityIdentifier_2' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts twitter: type: object description: Link to an organization's X page allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes website: type: object description: Link to homepage allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] website_url: type: string description: Link to homepage maxLength: 8192 x-cb-field-type: url x-cb-searchable: true x-cb-search-operators: - domain_blank - domain_eq - domain_includes - not_domain_eq - not_domain_includes went_public_on: type: string description: The date when the Organization went public format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte EntityIdentifier_2: type: object description: Every entity in the system has a unique identifier that contains all necessary properties to represent it. required: - entity_def_id - uuid properties: entity_def_id: type: string enum: - address - category - category_group - degree - diversity_spotlight - event - event_appearance - investment - ipo - job - location - organization - ownership - person image_id: type: string maxLength: 255 permalink: type: string maxLength: 255 uuid: type: string description: Universally Unique Identifier format: uuid value: type: string maxLength: 255 OrganizationEntity_2: type: object properties: cards: type: object properties: child_organizations: type: array items: $ref: '#/components/schemas/Organization_2' child_ownerships: type: array items: $ref: '#/components/schemas/Ownership' event_appearances: type: array items: $ref: '#/components/schemas/EventAppearance' fields: $ref: '#/components/schemas/Organization_2' founders: type: array items: $ref: '#/components/schemas/Person_2' headquarters_address: type: array items: $ref: '#/components/schemas/Address' ipos: type: array items: $ref: '#/components/schemas/Ipo' jobs: type: array items: $ref: '#/components/schemas/Job' parent_organization: type: array items: $ref: '#/components/schemas/Organization_2' parent_ownership: type: array items: $ref: '#/components/schemas/Ownership' properties: $ref: '#/components/schemas/Organization_2' Investment_2: type: object required: - identifier properties: announced_on: type: string description: Date when the Investment is announced format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* investment - Investment' enum: - investment x-enum-descriptions: - Investment x-cb-field-enum-values: - value: investment description: Investment x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes funding_round_identifier: type: object description: Name of the funding round where the Investment is made allOf: - $ref: '#/components/schemas/EntityIdentifier_2' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts funding_round_investment_type: type: string description: 'Type of Funding Round where the Investment is made (e.g. Seed, Series A, Private Equity, Debt Financing) * angel - Angel * convertible_note - Convertible Note * corporate_round - Corporate Round * debt_financing - Debt Financing * equity_crowdfunding - Equity Crowdfunding * grant - Grant * initial_coin_offering - Initial Coin Offering * non_equity_assistance - Non-equity Assistance * post_ipo_debt - Post-IPO Debt * post_ipo_equity - Post-IPO Equity * post_ipo_secondary - Post-IPO Secondary * pre_seed - Pre-Seed * private_equity - Private Equity * product_crowdfunding - Product Crowdfunding * secondary_market - Secondary Market * seed - Seed * series_a - Series A * series_b - Series B * series_c - Series C * series_d - Series D * series_e - Series E * series_f - Series F * series_g - Series G * series_h - Series H * series_i - Series I * series_j - Series J * series_unknown - Venture - Series Unknown * undisclosed - Funding Round' enum: - pre_seed - seed - series_a - series_b - series_c - series_d - series_e - series_f - series_g - series_h - series_i - series_j - series_unknown - angel - private_equity - debt_financing - convertible_note - grant - corporate_round - equity_crowdfunding - product_crowdfunding - secondary_market - post_ipo_equity - post_ipo_debt - post_ipo_secondary - non_equity_assistance - initial_coin_offering - undisclosed x-enum-descriptions: - Pre-Seed - Seed - Series A - Series B - Series C - Series D - Series E - Series F - Series G - Series H - Series I - Series J - Venture - Series Unknown - Angel - Private Equity - Debt Financing - Convertible Note - Grant - Corporate Round - Equity Crowdfunding - Product Crowdfunding - Secondary Market - Post-IPO Equity - Post-IPO Debt - Post-IPO Secondary - Non-equity Assistance - Initial Coin Offering - Funding Round x-cb-field-enum-values: - value: pre_seed description: Pre-Seed - value: seed description: Seed - value: series_a description: Series A - value: series_b description: Series B - value: series_c description: Series C - value: series_d description: Series D - value: series_e description: Series E - value: series_f description: Series F - value: series_g description: Series G - value: series_h description: Series H - value: series_i description: Series I - value: series_j description: Series J - value: series_unknown description: Venture - Series Unknown - value: angel description: Angel - value: private_equity description: Private Equity - value: debt_financing description: Debt Financing - value: convertible_note description: Convertible Note - value: grant description: Grant - value: corporate_round description: Corporate Round - value: equity_crowdfunding description: Equity Crowdfunding - value: product_crowdfunding description: Product Crowdfunding - value: secondary_market description: Secondary Market - value: post_ipo_equity description: Post-IPO Equity - value: post_ipo_debt description: Post-IPO Debt - value: post_ipo_secondary description: Post-IPO Secondary - value: non_equity_assistance description: Non-equity Assistance - value: initial_coin_offering description: Initial Coin Offering - value: undisclosed description: Funding Round x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Name of the Investment allOf: - $ref: '#/components/schemas/EntityIdentifier_2' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts investor_stage: type: array description: This describes the stage of investor this organization or person is (e.g. Angel, Fund of Funds, Venture Capital) items: type: string description: 'This describes the stage of investor this organization or person is (e.g. Angel, Fund of Funds, Venture Capital) * convertible_note - Convertible Note * crowdfunding - Crowdfunding * debt - Debt * early_stage_venture - Early Stage Venture * grant - Grant * initial_coin_offering - Initial Coin Offering * late_stage_venture - Late Stage Venture * non_equity_assistance - Non Equity Assistance * post_ipo - Post-Ipo * private_equity - Private Equity * secondary_market - Secondary Market * seed - Seed * venture - Venture' enum: - seed - early_stage_venture - late_stage_venture - venture - private_equity - crowdfunding - debt - grant - non_equity_assistance - convertible_note - secondary_market - post_ipo - initial_coin_offering x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all name: type: string maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] organization_diversity_spotlights: type: array description: Types of diversity represented in an organization, specifically of those who are founding members, currently the CEO, or have check-writing abilities in an investment firm. This feature is in beta and may change with future updates. items: $ref: '#/components/schemas/EntityIdentifier_2' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all organization_identifier: type: object description: Name of the organization that received the investment allOf: - $ref: '#/components/schemas/EntityIdentifier_2' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts permalink: type: string maxLength: 255 x-cb-field-type: permalink x-cb-searchable: false x-cb-search-operators: [] updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes OrganizationFieldId_2: type: string description: Organization field ids enum: - acquirer_identifier - aliases - categories - category_groups - closed_on - company_type - contact_email - created_at - delisted_on - demo_days - description - diversity_spotlights - entity_def_id - exited_on - facebook - facet_ids - founded_on - founder_identifiers - funding_stage - hub_tags - identifier - image_id - image_url - investor_identifiers - investor_stage - investor_type - ipo_status - last_equity_funding_total - last_equity_funding_type - last_funding_at - last_funding_total - last_funding_type - layout_id - legal_name - linkedin - listed_stock_symbol - location_group_identifiers - location_identifiers - name - num_alumni - num_current_advisor_positions - num_current_positions - num_diversity_spotlight_investments - num_employees_enum - num_enrollments - num_event_appearances - num_exits - num_exits_ipo - num_founder_alumni - num_founders - num_funding_rounds - num_investments - num_investors - num_lead_investments - num_lead_investors - num_past_positions - num_portfolio_organizations - num_sub_organizations - operating_status - owner_identifier - permalink - permalink_aliases - phone_number - program_application_deadline - program_duration - program_type - rank - rank_org - school_method - school_program - school_type - short_description - status - stock_exchange_symbol - stock_symbol - twitter - updated_at - uuid - website - website_url - went_public_on InvestmentFieldId_2: type: string description: Investment field ids enum: - announced_on - created_at - entity_def_id - funding_round_identifier - funding_round_investment_type - identifier - investor_stage - name - organization_diversity_spotlights - organization_identifier - permalink - updated_at - uuid PersonFieldId_2: type: string description: Person field ids enum: - aliases - born_on - created_at - description - died_on - entity_def_id - facebook - facet_ids - first_name - gender - identifier - image_id - image_url - investor_stage - investor_type - last_name - layout_id - linkedin - location_group_identifiers - location_identifiers - middle_name - name - num_current_advisor_jobs - num_current_jobs - num_diversity_spotlight_investments - num_event_appearances - num_exits - num_exits_ipo - num_founded_organizations - num_investments - num_jobs - num_lead_investments - num_partner_investments - num_past_advisor_jobs - num_past_jobs - num_portfolio_organizations - permalink - permalink_aliases - primary_job_title - primary_organization - rank - rank_person - short_description - twitter - updated_at - uuid - website - website_url Principal_2: type: object required: - identifier properties: aliases: type: array description: Alternate or previous names for the organization or individual items: type: string maxLength: 255 x-cb-field-type: text_short_multi x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts born_on: type: string description: The birthdate of the person format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte categories: type: array description: Descriptive keyword for an Organization (e.g. SaaS, Android, Cloud Computing, Medical Device) items: $ref: '#/components/schemas/EntityIdentifier_2' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all category_groups: type: array description: Superset of Industries (e.g. Software, Mobile, Health Care) items: $ref: '#/components/schemas/EntityIdentifier_2' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all closed_on: type: object description: The date when the organization is closed allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte company_type: type: string description: 'Whether an Organization is for profit or non-profit * for_profit - For Profit * non_profit - Non-profit' enum: - for_profit - non_profit x-enum-descriptions: - For Profit - Non-profit x-cb-field-enum-values: - value: for_profit description: For Profit - value: non_profit description: Non-profit x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes contact_email: type: string description: General contact email for the organization or person maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte delisted_on: type: object description: The date when the Organization removed its stock from the stock exchange. allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte description: type: string description: Organization or Person Description, Industries, Industry Groups maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains died_on: type: string description: The date when a person died format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte diversity_spotlights: type: array description: Types of diversity represented in an organization, specifically of those who are founding members, currently the CEO, or have check-writing abilities in an investment firm. This feature is in beta and may change with future updates. items: $ref: '#/components/schemas/EntityIdentifier_2' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all entity_def_id: type: string description: '* organization - Organization * person - Person' enum: - organization - person x-enum-descriptions: - Organization - Person x-cb-field-enum-values: - value: organization description: Organization - value: person description: Person x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes exited_on: type: object description: Date the organization was acquired or went public allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte facebook: type: object description: Link to organization/person's Facebook page allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] facet_ids: type: array items: type: string description: '* company - Company * government_entity - Government Entity * investor - Investor * school - School' enum: - company - government_entity - investor - school x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all first_name: type: string description: First name of a Person maxLength: 255 x-cb-field-type: text_short x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts founded_on: type: object description: Date the Organization was founded allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte founder_identifiers: type: array description: Founders of the organization items: $ref: '#/components/schemas/EntityIdentifier_2' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all funding_stage: type: string description: 'This field describes an organization''s most recent funding status (e.g. Early Stage Venture, Late Stage Venture, M&A) * early_stage_venture - Early Stage Venture * ipo - IPO * late_stage_venture - Late Stage Venture * m_and_a - M&A * private_equity - Private Equity * seed - Seed' enum: - seed - early_stage_venture - late_stage_venture - private_equity - m_and_a - ipo x-enum-descriptions: - Seed - Early Stage Venture - Late Stage Venture - Private Equity - M&A - IPO x-cb-field-enum-values: - value: seed description: Seed - value: early_stage_venture description: Early Stage Venture - value: late_stage_venture description: Late Stage Venture - value: private_equity description: Private Equity - value: m_and_a description: M&A - value: ipo description: IPO x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes gender: type: string description: 'A Person''s gender * agender - Agender * androgyne - Androgyne * androgynous - Androgynous * bigender - Bigender * female - Female * ftm - Female to Male (FTM) * gender_fluid - Gender Fluid * gender_nonconforming - Gender Nonconforming * gender_questioning - Gender Questioning * gender_variant - Gender Variant * genderqueer - Genderqueer * male - Male * mtf - Male to Female (MTF) * neutrois - Neutrois * non_binary - Non-Binary * not_provided - Prefer not to identify * other - Other * pangender - Pangender * transfeminine - Transfeminine * transgender_female - Transgender Female * transgender_male - Transgender Male * transgender_man - Transgender Man * transgender_person - Transgender Person * transgender_woman - Transgender Woman * transmasculine - Transmasculine * transsexual_female - Transsexual Female * transsexual_male - Transsexual Male * transsexual_man - Transsexual Man * transsexual_person - Transsexual Person * transsexual_woman - Transsexual Woman * two_spirit - Two-Spirit' enum: - female - male - agender - androgyne - androgynous - bigender - ftm - mtf - gender_fluid - gender_nonconforming - gender_questioning - gender_variant - genderqueer - non_binary - neutrois - pangender - transgender_person - transgender_female - transgender_woman - transgender_male - transgender_man - transfeminine - transmasculine - transsexual_person - transsexual_female - transsexual_woman - transsexual_male - transsexual_man - two_spirit - other - not_provided x-enum-descriptions: - Female - Male - Agender - Androgyne - Androgynous - Bigender - Female to Male (FTM) - Male to Female (MTF) - Gender Fluid - Gender Nonconforming - Gender Questioning - Gender Variant - Genderqueer - Non-Binary - Neutrois - Pangender - Transgender Person - Transgender Female - Transgender Woman - Transgender Male - Transgender Man - Transfeminine - Transmasculine - Transsexual Person - Transsexual Female - Transsexual Woman - Transsexual Male - Transsexual Man - Two-Spirit - Other - Prefer not to identify x-cb-field-enum-values: - value: female description: Female - value: male description: Male - value: agender description: Agender - value: androgyne description: Androgyne - value: androgynous description: Androgynous - value: bigender description: Bigender - value: ftm description: Female to Male (FTM) - value: mtf description: Male to Female (MTF) - value: gender_fluid description: Gender Fluid - value: gender_nonconforming description: Gender Nonconforming - value: gender_questioning description: Gender Questioning - value: gender_variant description: Gender Variant - value: genderqueer description: Genderqueer - value: non_binary description: Non-Binary - value: neutrois description: Neutrois - value: pangender description: Pangender - value: transgender_person description: Transgender Person - value: transgender_female description: Transgender Female - value: transgender_woman description: Transgender Woman - value: transgender_male description: Transgender Male - value: transgender_man description: Transgender Man - value: transfeminine description: Transfeminine - value: transmasculine description: Transmasculine - value: transsexual_person description: Transsexual Person - value: transsexual_female description: Transsexual Female - value: transsexual_woman description: Transsexual Woman - value: transsexual_male description: Transsexual Male - value: transsexual_man description: Transsexual Man - value: two_spirit description: Two-Spirit - value: other description: Other - value: not_provided description: Prefer not to identify x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes hub_tags: type: array description: Tags representing special attributes of organizations that are used in Hubs items: type: string description: 'Tags representing special attributes of organizations that are used in Hubs * cbvp - Crunchbase Venture Program * emerging_unicorn - Emerging Unicorn * exited_unicorn - Exited Unicorn * pledge_one_percent - Pledge 1% * unicorn - Unicorn' enum: - cbvp - pledge_one_percent - unicorn - emerging_unicorn - exited_unicorn x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all identifier: type: object description: Name of the Organization or Person allOf: - $ref: '#/components/schemas/EntityIdentifier_2' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts image_id: type: string description: The profile image of this organization or person on Crunchbase maxLength: 255 x-cb-field-type: image_id x-cb-searchable: false x-cb-search-operators: [] image_url: type: string description: The url of the profile image maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] investor_identifiers: type: array description: The top 5 investors with investments in this company, ordered by Crunchbase Rank items: $ref: '#/components/schemas/EntityIdentifier_2' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all investor_stage: type: array description: This describes the stage of investor this organization or person is (e.g. Angel, Fund of Funds, Venture Capital) items: type: string description: 'This describes the stage of investor this organization or person is (e.g. Angel, Fund of Funds, Venture Capital) * convertible_note - Convertible Note * crowdfunding - Crowdfunding * debt - Debt * early_stage_venture - Early Stage Venture * grant - Grant * initial_coin_offering - Initial Coin Offering * late_stage_venture - Late Stage Venture * non_equity_assistance - Non Equity Assistance * post_ipo - Post-Ipo * private_equity - Private Equity * secondary_market - Secondary Market * seed - Seed * venture - Venture' enum: - seed - early_stage_venture - late_stage_venture - venture - private_equity - crowdfunding - debt - grant - non_equity_assistance - convertible_note - secondary_market - post_ipo - initial_coin_offering x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all investor_type: type: array description: This describes the type of investor this organization or person is (e.g. Angel, Fund of Funds, Venture Capital) items: type: string description: 'This describes the type of investor this organization or person is (e.g. Angel, Fund of Funds, Venture Capital) * accelerator - Accelerator * angel - Individual/Angel * angel_group - Angel Group * co_working_space - Co-Working Space * corporate_venture_capital - Corporate Venture Capital * entrepreneurship_program - Entrepreneurship Program * family_investment_office - Family Investment Office * fund_of_funds - Fund Of Funds * government_office - Government Office * hedge_fund - Hedge Fund * incubator - Incubator * investment_bank - Investment Bank * investment_partner - Investment Partner * micro_vc - Micro VC * pension_funds - Pension Funds * private_equity_firm - Private Equity Firm * secondary_purchaser - Secondary Purchaser * startup_competition - Startup Competition * syndicate - Syndicate * university_program - University Program * venture_capital - Venture Capital * venture_debt - Venture Debt' enum: - venture_capital - angel - investment_partner - corporate_venture_capital - private_equity_firm - accelerator - micro_vc - angel_group - incubator - investment_bank - family_investment_office - venture_debt - co_working_space - fund_of_funds - hedge_fund - government_office - university_program - entrepreneurship_program - secondary_purchaser - startup_competition - syndicate - pension_funds x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all ipo_status: type: string description: 'The current public status of the Organization * delisted - Delisted * private - Private * public - Public' enum: - public - delisted - private x-enum-descriptions: - Public - Delisted - Private x-cb-field-enum-values: - value: public description: Public - value: delisted description: Delisted - value: private description: Private x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes last_equity_funding_total: type: object description: Amount of most recent Funding Round excluding debt allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq last_equity_funding_type: type: string description: 'The most recent Funding Round excluding debt * angel - Angel * convertible_note - Convertible Note * corporate_round - Corporate Round * debt_financing - Debt Financing * equity_crowdfunding - Equity Crowdfunding * grant - Grant * initial_coin_offering - Initial Coin Offering * non_equity_assistance - Non-equity Assistance * post_ipo_debt - Post-IPO Debt * post_ipo_equity - Post-IPO Equity * post_ipo_secondary - Post-IPO Secondary * pre_seed - Pre-Seed * private_equity - Private Equity * product_crowdfunding - Product Crowdfunding * secondary_market - Secondary Market * seed - Seed * series_a - Series A * series_b - Series B * series_c - Series C * series_d - Series D * series_e - Series E * series_f - Series F * series_g - Series G * series_h - Series H * series_i - Series I * series_j - Series J * series_unknown - Venture - Series Unknown * undisclosed - Undisclosed' enum: - pre_seed - seed - series_a - series_b - series_c - series_d - series_e - series_f - series_g - series_h - series_i - series_j - series_unknown - angel - private_equity - debt_financing - convertible_note - grant - corporate_round - equity_crowdfunding - product_crowdfunding - secondary_market - post_ipo_equity - post_ipo_debt - post_ipo_secondary - non_equity_assistance - initial_coin_offering - undisclosed x-enum-descriptions: - Pre-Seed - Seed - Series A - Series B - Series C - Series D - Series E - Series F - Series G - Series H - Series I - Series J - Venture - Series Unknown - Angel - Private Equity - Debt Financing - Convertible Note - Grant - Corporate Round - Equity Crowdfunding - Product Crowdfunding - Secondary Market - Post-IPO Equity - Post-IPO Debt - Post-IPO Secondary - Non-equity Assistance - Initial Coin Offering - Undisclosed x-cb-field-enum-values: - value: pre_seed description: Pre-Seed - value: seed description: Seed - value: series_a description: Series A - value: series_b description: Series B - value: series_c description: Series C - value: series_d description: Series D - value: series_e description: Series E - value: series_f description: Series F - value: series_g description: Series G - value: series_h description: Series H - value: series_i description: Series I - value: series_j description: Series J - value: series_unknown description: Venture - Series Unknown - value: angel description: Angel - value: private_equity description: Private Equity - value: debt_financing description: Debt Financing - value: convertible_note description: Convertible Note - value: grant description: Grant - value: corporate_round description: Corporate Round - value: equity_crowdfunding description: Equity Crowdfunding - value: product_crowdfunding description: Product Crowdfunding - value: secondary_market description: Secondary Market - value: post_ipo_equity description: Post-IPO Equity - value: post_ipo_debt description: Post-IPO Debt - value: post_ipo_secondary description: Post-IPO Secondary - value: non_equity_assistance description: Non-equity Assistance - value: initial_coin_offering description: Initial Coin Offering - value: undisclosed description: Undisclosed x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes last_funding_at: type: string description: Date of most recent Funding Round format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte last_funding_total: type: object description: Amount of most recent Funding Round allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq last_funding_type: type: string description: 'Last funding round type (e.g. Series A, Seed, Private Equity) * angel - Angel * convertible_note - Convertible Note * corporate_round - Corporate Round * debt_financing - Debt Financing * equity_crowdfunding - Equity Crowdfunding * grant - Grant * initial_coin_offering - Initial Coin Offering * non_equity_assistance - Non-equity Assistance * post_ipo_debt - Post-IPO Debt * post_ipo_equity - Post-IPO Equity * post_ipo_secondary - Post-IPO Secondary * pre_seed - Pre-Seed * private_equity - Private Equity * product_crowdfunding - Product Crowdfunding * secondary_market - Secondary Market * seed - Seed * series_a - Series A * series_b - Series B * series_c - Series C * series_d - Series D * series_e - Series E * series_f - Series F * series_g - Series G * series_h - Series H * series_i - Series I * series_j - Series J * series_unknown - Venture - Series Unknown * undisclosed - Undisclosed' enum: - pre_seed - seed - series_a - series_b - series_c - series_d - series_e - series_f - series_g - series_h - series_i - series_j - series_unknown - angel - private_equity - debt_financing - convertible_note - grant - corporate_round - equity_crowdfunding - product_crowdfunding - secondary_market - post_ipo_equity - post_ipo_debt - post_ipo_secondary - non_equity_assistance - initial_coin_offering - undisclosed x-enum-descriptions: - Pre-Seed - Seed - Series A - Series B - Series C - Series D - Series E - Series F - Series G - Series H - Series I - Series J - Venture - Series Unknown - Angel - Private Equity - Debt Financing - Convertible Note - Grant - Corporate Round - Equity Crowdfunding - Product Crowdfunding - Secondary Market - Post-IPO Equity - Post-IPO Debt - Post-IPO Secondary - Non-equity Assistance - Initial Coin Offering - Undisclosed x-cb-field-enum-values: - value: pre_seed description: Pre-Seed - value: seed description: Seed - value: series_a description: Series A - value: series_b description: Series B - value: series_c description: Series C - value: series_d description: Series D - value: series_e description: Series E - value: series_f description: Series F - value: series_g description: Series G - value: series_h description: Series H - value: series_i description: Series I - value: series_j description: Series J - value: series_unknown description: Venture - Series Unknown - value: angel description: Angel - value: private_equity description: Private Equity - value: debt_financing description: Debt Financing - value: convertible_note description: Convertible Note - value: grant description: Grant - value: corporate_round description: Corporate Round - value: equity_crowdfunding description: Equity Crowdfunding - value: product_crowdfunding description: Product Crowdfunding - value: secondary_market description: Secondary Market - value: post_ipo_equity description: Post-IPO Equity - value: post_ipo_debt description: Post-IPO Debt - value: post_ipo_secondary description: Post-IPO Secondary - value: non_equity_assistance description: Non-equity Assistance - value: initial_coin_offering description: Initial Coin Offering - value: undisclosed description: Undisclosed x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes last_name: type: string description: Last name of a Person maxLength: 255 x-cb-field-type: text_short x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts layout_id: type: string enum: - school - investor x-enum-descriptions: - school - investor x-cb-field-enum-values: [] x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes linkedin: type: object description: Link to organization/person's LinkedIn page allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] location_group_identifiers: type: array description: Where the principal is located (e.g. San Francisco Bay Area, Silicon Valley) items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all location_identifiers: type: array description: Where the organization is headquartered items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all name: type: string maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] num_alumni: type: number description: Total number of alumni x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_diversity_spotlight_investments: type: number description: Total number of diversity investments made by an investor x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_employees_enum: type: string description: 'Total number of Employees * c_00001_00010 - 1-10 * c_00011_00050 - 11-50 * c_00051_00100 - 51-100 * c_00101_00250 - 101-250 * c_00251_00500 - 251-500 * c_00501_01000 - 501-1000 * c_01001_05000 - 1001-5000 * c_05001_10000 - 5001-10000 * c_10001_max - 10001+' enum: - c_00001_00010 - c_00011_00050 - c_00051_00100 - c_00101_00250 - c_00251_00500 - c_00501_01000 - c_01001_05000 - c_05001_10000 - c_10001_max x-enum-descriptions: - 1-10 - 11-50 - 51-100 - 101-250 - 251-500 - 501-1000 - 1001-5000 - 5001-10000 - 10001+ x-cb-field-enum-values: - value: c_00001_00010 description: 1-10 - value: c_00011_00050 description: 11-50 - value: c_00051_00100 description: 51-100 - value: c_00101_00250 description: 101-250 - value: c_00251_00500 description: 251-500 - value: c_00501_01000 description: 501-1000 - value: c_01001_05000 description: 1001-5000 - value: c_05001_10000 description: 5001-10000 - value: c_10001_max description: 10001+ x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes num_enrollments: type: string description: 'Total number of Enrollments * c_00001_00010 - 1-10 * c_00011_00050 - 11-50 * c_00051_00100 - 51-100 * c_00101_00250 - 101-250 * c_00251_00500 - 251-500 * c_00501_01000 - 501-1000 * c_01001_05000 - 1001-5000 * c_05001_10000 - 5001-10000 * c_10001_max - 10001+' enum: - c_00001_00010 - c_00011_00050 - c_00051_00100 - c_00101_00250 - c_00251_00500 - c_00501_01000 - c_01001_05000 - c_05001_10000 - c_10001_max x-enum-descriptions: - 1-10 - 11-50 - 51-100 - 101-250 - 251-500 - 501-1000 - 1001-5000 - 5001-10000 - 10001+ x-cb-field-enum-values: - value: c_00001_00010 description: 1-10 - value: c_00011_00050 description: 11-50 - value: c_00051_00100 description: 51-100 - value: c_00101_00250 description: 101-250 - value: c_00251_00500 description: 251-500 - value: c_00501_01000 description: 501-1000 - value: c_01001_05000 description: 1001-5000 - value: c_05001_10000 description: 5001-10000 - value: c_10001_max description: 10001+ x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes num_event_appearances: type: number description: Total number of events An Organization or Person appeared in x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_exits: type: number description: Total number of Exits x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_exits_ipo: type: number description: Total number of Exits (IPO) x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_founded_organizations: type: number description: Number of Organizations that the Person founded x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_founders: type: number description: Total number of Founders x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_funding_rounds: type: number description: Total number of Funding Rounds x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_investments: type: number description: Total number of Investments made x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_investors: type: number description: Total number of investment firms and individual investors x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_jobs: type: number description: Total number of Jobs the person has x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_lead_investments: type: number description: Number of Investments led by the Person x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_lead_investors: type: number description: Total number of lead investment firms and individual investors x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_partner_investments: type: number description: Number of Investments the Individual has partnered in x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_portfolio_organizations: type: number description: Total number of portfolio organizations x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq operating_status: type: string description: 'Operating Status of Organization e.g. Active, Closed * active - Active * closed - Closed' enum: - active - closed x-enum-descriptions: - Active - Closed x-cb-field-enum-values: - value: active description: Active - value: closed description: Closed x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes permalink: type: string maxLength: 255 x-cb-field-type: permalink x-cb-searchable: false x-cb-search-operators: [] permalink_aliases: type: array description: Alternative aliases to the primary permalink of the organization or person items: type: string maxLength: 255 x-cb-field-type: text_exact_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all phone_number: type: string description: General phone number of the organization or person maxLength: 255 x-cb-field-type: text_exact x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes primary_job_title: type: string description: The person's primary job title (e.g. CEO, Chief Architect, Product Manager) maxLength: 255 x-cb-field-type: text_short x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts primary_organization: type: object description: The organization associated to the person's primary job allOf: - $ref: '#/components/schemas/EntityIdentifier_2' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts program_application_deadline: type: string description: The deadline for applying to the Accelerator Program format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte program_duration: type: number description: The duration of the Acceleration Program in number of weeks x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq program_type: type: string description: 'The type of Accelerator Program (e.g. On-Site, Online) * on_site - On-Site * online - Online' enum: - on_site - online x-enum-descriptions: - On-Site - Online x-cb-field-enum-values: - value: on_site description: On-Site - value: online description: Online x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes rank: type: number description: Algorithmic rank assigned to the top profiles on Crunchbase x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq school_method: type: string description: 'The type of School Method (e.g. On Campus, Online) * on_compus - On Campus * online - Online * online_and_on_campus - Online and On Campus' enum: - on_compus - online - online_and_on_campus x-enum-descriptions: - On Campus - Online - Online and On Campus x-cb-field-enum-values: - value: on_compus description: On Campus - value: online description: Online - value: online_and_on_campus description: Online and On Campus x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes school_program: type: string description: 'The type of School Program (e.g. Bootcamp, Four Year University) * bootcamp - Bootcamp * community_college - Community College * four_year_university - Four Year University * graduate_university - Graduate University * high_school - High School * trade_school - Trade School * two_year_university - Two Year University' enum: - four_year_university - two_year_university - graduate_university - bootcamp - trade_school - community_college - high_school x-enum-descriptions: - Four Year University - Two Year University - Graduate University - Bootcamp - Trade School - Community College - High School x-cb-field-enum-values: - value: four_year_university description: Four Year University - value: two_year_university description: Two Year University - value: graduate_university description: Graduate University - value: bootcamp description: Bootcamp - value: trade_school description: Trade School - value: community_college description: Community College - value: high_school description: High School x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes school_type: type: string description: 'The type of School (e.g. Public, Private) * for_profit_private - Private * non_profit_private - Private (Non-Profit) * public - Public' enum: - public - for_profit_private - non_profit_private x-enum-descriptions: - Public - Private - Private (Non-Profit) x-cb-field-enum-values: - value: public description: Public - value: for_profit_private description: Private - value: non_profit_private description: Private (Non-Profit) x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes short_description: type: string description: Text of Organization or Person Description, Industries, and Industry Groups maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains status: type: string description: 'Status of Organization e.g. Operating, Closed, Acquired, IPO * closed - Closed * ipo - IPO * operating - Operating * was_acquired - Was Acquired' enum: - closed - ipo - operating - was_acquired x-enum-descriptions: - Closed - IPO - Operating - Was Acquired x-cb-field-enum-values: - value: closed description: Closed - value: ipo description: IPO - value: operating description: Operating - value: was_acquired description: Was Acquired x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes stock_exchange_symbol: type: string description: 'Stock exchange where the Organization is listed e.g. NYSE, NASDAQ * adx - ADX - Abu Dhabi Securities Exchange * afx - AFX - Afghanistan Stock Exchange * altx - ALTX - ALTX East Africa Exchange * amex - AMEX - American Stock Exchange * ams - AMS - Euronext Amsterdam * amx - AMX - Armenia Securities Exchange * asce - ASCE - Abuja Securities and Commodities Exchange * asx - ASX - Australian Securities Exchange * ath - ATH - Athens Stock Exchange * bcba - BCBA - Buenos Aires Stock Exchange * bdp - BDP - Budapest Stock Exchange * belex - BELEX - Belgrade Stock Exchange * ber - BER - Berliner Börse * bfb - BFB - Baku Stock Exchange * bit - BIT - Italian Stock Exchange * bkk - BKK - Thailand Stock Exchange * blse - BLSE - Banja Luka Stock Exchange * bme - BME - Madrid Stock Exchange * bmv - BMV - Mexican Stock Exchange * bom - BOM - Bombay Stock Exchange * brvm - BRVM - Regional Securities Exchange SA * bse - BSE - Bulgarian Stock Exchange * bse_lb - BSE - Beirut Stock Exchange * bsse - BSSE - Bratislava Stock Exchange * bsx - BSX - Bermuda Stock Exchange * bvb - BVB - Bucharest Stock Exchange * bvc - BVC - Colombian Stock Exchange * bvfb - BVFB - Belarusian Currency and Stock Exchange * bvm - BVM - Montevideo Stock Exchange * bvmf - B3 - Brazil Stock Exchange and OTC Market * bvmt - BVMT - Tunis Stock Exchange * bx - BX - Berne Stock Exchange * cas - CAS - Casablanca Stock Exchange * cise - CISE - Channel Islands Stock Exchange * cnsx - CNSX - Canadian National Stock Exchange * col - COL - Colombo Stock Exchange * cph - CPH - Copenhagen Stock Exchange * cse - CSE - Canadian Securities Exchange * cse_cy - CSE - Cyprus Stock Exchange * csx - CSX - Cambodia Securities Exchange * cve - TSX-V - Toronto TSX Venture Exchange * dfm - DFM - Dubai Financial Market * dse - DSE - Dhaka Stock Exchange * dsx - DSX - Douala Stock Exchange * dus - DUS - Börse Düsseldorf * ebr - EBR - Euronext Brussels * egx - EGX - Egypt Stock Exchange * eli - ELI - Euronext Lisbon * epa - EPA - Euronext Paris * etr - ETR - Deutsche Börse XETRA * eurex - EUREX - Eurex Exchange * fra - FRA - Frankfurt Stock Exchange * fwb - FWB - Börse Frankfurt Stock Exchange * gha - GHA - Ghana Stock Exchange * gsx - GSX - Georgian Stock Exchange * gsx_gi - GSX - Gibraltar Stock Exchange * hel - HEL - Helsinki Stock Exchange * hkg - HKG - Hong Kong Stock Exchange * hnx - HNX - Hanoi Stock Exchange * hose - HOSE - Ho Chi Minh Stock Exchange * ice - ICE - Iceland Stock Exchange * idx - IDX - Indonesia Stock Exchange * iex - IEX - Investors Exchange * ifb - IFB - Iran Fara Bourse * ime - IME - Iran Mercantile Exchange * irenex - IRENEX - Iran Energy Exchange * ise - ISE - Irish Stock Exchange * ist - IST - Istanbul Stock Exchange * isx - ISX - Iraq Stock Exchange * jp - JP - Japan Exchange * jsc - JSC - Belarusian Currency and Stock Exchange * jse - JSE - Johannesburg Stock Exchange * jse_jam - JSE - Jamaica Stock Exchange * kase - KASE - Kazakhstan Stock Exchange * klse - KLSE - Malaysia Stock Exchange * kosdaq - KOSDAQ - Korean Securities Dealers Automated Quotations * krx - KRX - Korea Stock Exchange * kse - KSE - Kuwait Stock Exchange * lje - LJE - Ljubljana Stock Exchange * lse - LSE - London Stock Exchange * lsm - LSM - Libyan Stock Market * lsx - LSX - Lao Securities Exchange * luse - LuSE - Lusaka Securities Exchange * luxse - LuxSE - Luxembourg Stock Exchange * mal - MAL - Malta Stock Exchange * mcx - MCX - Multi Commodity Exchange of India * meff - MEFF - Mercado Spanish Financial Futures Market * mnse - MNSE - Montenegro Stock Exchange * moex - MOEX - Moscow Exchange * mse - MSE - Metropolitan Stock Exchange * mse_md - MSE - Moldova Stock Exchange * mse_mk - MSE - Macedonian Stock Exchange * msei - MSEI - Metropolitan Stock Exchange of India * msm - MSM - Muscat Securities Market * mun - MUN - Börse München * nasdaq - NASDAQ * nbo - NSE - Nairobi Securities Exchange * neeq - NEEQ - National Equities Exchange and Quotations * nepse - NEPSE - Nepal Stock Exchange * nex - NEX - NEX Exchange * ngm - NGM - Nordic Growth Market Exchange * nig - NIG - Nigerian Stock Exchange * notc - NOTC - Norwegian OTC * npex - NPEX - NPEX Stock Exchange * nse - NSE - National Stock Exchange of India * nsx - NSX - National Stock Exchange of Australia * nyse - NYSE - New York Stock Exchange * nysearca - NYSEARCA - NYSE Arca * nysemkt - NYSEAMERICAN - NYSE American * nze - NZE - New Zealand Stock Exchange * ose - OSE - Oslo Stock Exchange * otcbb - OTCBB - FINRA OTC Bulletin Board * otcpink - OTC Pink * otcqb - OTCQB * otcqx - OTCQX * pdex - PDEx - Philippine Dealing Exchange * pex - PEX - Palestine Exchange * pfts - PFTS - PFTS Ukraine Stock Exchange * pomsox - POMSoX - Port Moresby Stock Exchange * prg - PRA - Prague Stock Exchange * pse - PSE - Philippine Stock Exchange * psx - PSX - Pakistan Stock Exchange * qse - QSE - Qatar Stock Exchange * rfb - RFB - Riga Stock Exchange * rse - RSE - Rwanda Stock Exchange * rsebl - RSEBL - Royal Securities Exchange of Bhutan * sase - SASE - Sarajevo Stock Exchange * sbx - SBX - BX Swiss * sehk - SEHK - The Stock Exchange of Hong Kong * sem - SEM - Stock Exchange of Mauritius * sgbv - SGBV - Algiers Stock Exchange * sgx - SGX - Singapore Stock Exchange * six - SIX - SIX Swiss Exchange * spbex - SPBEX - Saint Petersburg Stock Exchange * spse - SPSE - South Pacific Stock Exchange * sse - SSE - Shanghai Stock Exchange * ssx - SSX - Sydney Stock Exchange * sto - STO - Stockholm Stock Exchange * stu - STU - Börse Stuttgart * swx - SWX - SIX Swiss Exchange * szse - SZSE - Shenzhen Stock Exchange * tadawul - Tadawul - Saudi Stock Exchange * tal - TSE - Tallinn Stock Exchange * tfex - TFEX - Thailand Futures Exchange * tise - TISE - The International Stock Exchange * tlv - TLV - Tel Aviv Stock Exchange * tpe - TWSE - Taiwan Stock Exchange * tse_al - TSE - Tirana Stock Exchange * tse_ir - TSE - Tehran Stock Exchange * tsec - TWO - Taiwan OTC Exchange * tsx - TSX - Toronto Stock Exchange * ttse - TTSE - Trinidad and Tobago Stock Exchange * tyo - TYO - Tokyo Stock Exchange * use - USE - Uganda Securities Exchange * ux - UX - Ukrainian Exchange * vie - VIE - Vienna Stock Exchange * vmf - VMF - Faroese Securities Market * vse - VSE - Vancouver Stock Exchange * wse - WSE - Warsaw Stock Exchange * ysx - YSX - Yangon Stock Exchange * zamace - ZAMACE - Zambian Commodity Exchange * zse - ZSE - Zimbabwe Stock Exchange * zse_hr - ZSE - Zagreb Stock Exchange' enum: - adx - afx - altx - amx - amex - ams - asce - asx - ath - bcba - bdp - belex - ber - bfb - bit - bkk - blse - bme - bmv - bom - brvm - bse - bse_lb - bsse - bsx - bvb - bvc - bvfb - bvm - bvmf - bvmt - bx - cas - cise - cnsx - col - cph - cse - cse_cy - csx - dfm - dse - dsx - dus - ebr - egx - eli - epa - etr - eurex - fra - fwb - gha - gsx - gsx_gi - hel - hkg - hnx - hose - ice - idx - iex - ifb - ime - irenex - ise - ist - isx - jp - jsc - jse - jse_jam - kase - klse - kosdaq - krx - kse - lje - lse - lsm - lsx - luse - luxse - mal - mcx - meff - mnse - moex - mse - mse_md - mse_mk - msei - msm - mun - nasdaq - nbo - nex - nepse - neeq - ngm - nig - notc - npex - nse - nsx - nyse - nysearca - nysemkt - nze - ose - otcbb - otcpink - otcqb - otcqx - pdex - pex - pfts - pomsox - prg - pse - psx - qse - rfb - rse - rsebl - sase - sbx - sehk - sem - sgbv - sgx - six - spbex - spse - sse - ssx - sto - stu - swx - szse - tal - tfex - tise - tlv - tpe - tse_al - tse_ir - tsec - tsx - cve - tyo - ttse - tadawul - use - ux - vie - vmf - vse - wse - ysx - zamace - zse - zse_hr x-enum-descriptions: - ADX - Abu Dhabi Securities Exchange - AFX - Afghanistan Stock Exchange - ALTX - ALTX East Africa Exchange - AMX - Armenia Securities Exchange - AMEX - American Stock Exchange - AMS - Euronext Amsterdam - ASCE - Abuja Securities and Commodities Exchange - ASX - Australian Securities Exchange - ATH - Athens Stock Exchange - BCBA - Buenos Aires Stock Exchange - BDP - Budapest Stock Exchange - BELEX - Belgrade Stock Exchange - BER - Berliner Börse - BFB - Baku Stock Exchange - BIT - Italian Stock Exchange - BKK - Thailand Stock Exchange - BLSE - Banja Luka Stock Exchange - BME - Madrid Stock Exchange - BMV - Mexican Stock Exchange - BOM - Bombay Stock Exchange - BRVM - Regional Securities Exchange SA - BSE - Bulgarian Stock Exchange - BSE - Beirut Stock Exchange - BSSE - Bratislava Stock Exchange - BSX - Bermuda Stock Exchange - BVB - Bucharest Stock Exchange - BVC - Colombian Stock Exchange - BVFB - Belarusian Currency and Stock Exchange - BVM - Montevideo Stock Exchange - B3 - Brazil Stock Exchange and OTC Market - BVMT - Tunis Stock Exchange - BX - Berne Stock Exchange - CAS - Casablanca Stock Exchange - CISE - Channel Islands Stock Exchange - CNSX - Canadian National Stock Exchange - COL - Colombo Stock Exchange - CPH - Copenhagen Stock Exchange - CSE - Canadian Securities Exchange - CSE - Cyprus Stock Exchange - CSX - Cambodia Securities Exchange - DFM - Dubai Financial Market - DSE - Dhaka Stock Exchange - DSX - Douala Stock Exchange - DUS - Börse Düsseldorf - EBR - Euronext Brussels - EGX - Egypt Stock Exchange - ELI - Euronext Lisbon - EPA - Euronext Paris - ETR - Deutsche Börse XETRA - EUREX - Eurex Exchange - FRA - Frankfurt Stock Exchange - FWB - Börse Frankfurt Stock Exchange - GHA - Ghana Stock Exchange - GSX - Georgian Stock Exchange - GSX - Gibraltar Stock Exchange - HEL - Helsinki Stock Exchange - HKG - Hong Kong Stock Exchange - HNX - Hanoi Stock Exchange - HOSE - Ho Chi Minh Stock Exchange - ICE - Iceland Stock Exchange - IDX - Indonesia Stock Exchange - IEX - Investors Exchange - IFB - Iran Fara Bourse - IME - Iran Mercantile Exchange - IRENEX - Iran Energy Exchange - ISE - Irish Stock Exchange - IST - Istanbul Stock Exchange - ISX - Iraq Stock Exchange - JP - Japan Exchange - JSC - Belarusian Currency and Stock Exchange - JSE - Johannesburg Stock Exchange - JSE - Jamaica Stock Exchange - KASE - Kazakhstan Stock Exchange - KLSE - Malaysia Stock Exchange - KOSDAQ - Korean Securities Dealers Automated Quotations - KRX - Korea Stock Exchange - KSE - Kuwait Stock Exchange - LJE - Ljubljana Stock Exchange - LSE - London Stock Exchange - LSM - Libyan Stock Market - LSX - Lao Securities Exchange - LuSE - Lusaka Securities Exchange - LuxSE - Luxembourg Stock Exchange - MAL - Malta Stock Exchange - MCX - Multi Commodity Exchange of India - MEFF - Mercado Spanish Financial Futures Market - MNSE - Montenegro Stock Exchange - MOEX - Moscow Exchange - MSE - Metropolitan Stock Exchange - MSE - Moldova Stock Exchange - MSE - Macedonian Stock Exchange - MSEI - Metropolitan Stock Exchange of India - MSM - Muscat Securities Market - MUN - Börse München - NASDAQ - NSE - Nairobi Securities Exchange - NEX - NEX Exchange - NEPSE - Nepal Stock Exchange - NEEQ - National Equities Exchange and Quotations - NGM - Nordic Growth Market Exchange - NIG - Nigerian Stock Exchange - NOTC - Norwegian OTC - NPEX - NPEX Stock Exchange - NSE - National Stock Exchange of India - NSX - National Stock Exchange of Australia - NYSE - New York Stock Exchange - NYSEARCA - NYSE Arca - NYSEAMERICAN - NYSE American - NZE - New Zealand Stock Exchange - OSE - Oslo Stock Exchange - OTCBB - FINRA OTC Bulletin Board - OTC Pink - OTCQB - OTCQX - PDEx - Philippine Dealing Exchange - PEX - Palestine Exchange - PFTS - PFTS Ukraine Stock Exchange - POMSoX - Port Moresby Stock Exchange - PRA - Prague Stock Exchange - PSE - Philippine Stock Exchange - PSX - Pakistan Stock Exchange - QSE - Qatar Stock Exchange - RFB - Riga Stock Exchange - RSE - Rwanda Stock Exchange - RSEBL - Royal Securities Exchange of Bhutan - SASE - Sarajevo Stock Exchange - SBX - BX Swiss - SEHK - The Stock Exchange of Hong Kong - SEM - Stock Exchange of Mauritius - SGBV - Algiers Stock Exchange - SGX - Singapore Stock Exchange - SIX - SIX Swiss Exchange - SPBEX - Saint Petersburg Stock Exchange - SPSE - South Pacific Stock Exchange - SSE - Shanghai Stock Exchange - SSX - Sydney Stock Exchange - STO - Stockholm Stock Exchange - STU - Börse Stuttgart - SWX - SIX Swiss Exchange - SZSE - Shenzhen Stock Exchange - TSE - Tallinn Stock Exchange - TFEX - Thailand Futures Exchange - TISE - The International Stock Exchange - TLV - Tel Aviv Stock Exchange - TWSE - Taiwan Stock Exchange - TSE - Tirana Stock Exchange - TSE - Tehran Stock Exchange - TWO - Taiwan OTC Exchange - TSX - Toronto Stock Exchange - TSX-V - Toronto TSX Venture Exchange - TYO - Tokyo Stock Exchange - TTSE - Trinidad and Tobago Stock Exchange - Tadawul - Saudi Stock Exchange - USE - Uganda Securities Exchange - UX - Ukrainian Exchange - VIE - Vienna Stock Exchange - VMF - Faroese Securities Market - VSE - Vancouver Stock Exchange - WSE - Warsaw Stock Exchange - YSX - Yangon Stock Exchange - ZAMACE - Zambian Commodity Exchange - ZSE - Zimbabwe Stock Exchange - ZSE - Zagreb Stock Exchange x-cb-field-enum-values: - value: adx description: ADX - Abu Dhabi Securities Exchange - value: afx description: AFX - Afghanistan Stock Exchange - value: altx description: ALTX - ALTX East Africa Exchange - value: amx description: AMX - Armenia Securities Exchange - value: amex description: AMEX - American Stock Exchange - value: ams description: AMS - Euronext Amsterdam - value: asce description: ASCE - Abuja Securities and Commodities Exchange - value: asx description: ASX - Australian Securities Exchange - value: ath description: ATH - Athens Stock Exchange - value: bcba description: BCBA - Buenos Aires Stock Exchange - value: bdp description: BDP - Budapest Stock Exchange - value: belex description: BELEX - Belgrade Stock Exchange - value: ber description: BER - Berliner Börse - value: bfb description: BFB - Baku Stock Exchange - value: bit description: BIT - Italian Stock Exchange - value: bkk description: BKK - Thailand Stock Exchange - value: blse description: BLSE - Banja Luka Stock Exchange - value: bme description: BME - Madrid Stock Exchange - value: bmv description: BMV - Mexican Stock Exchange - value: bom description: BOM - Bombay Stock Exchange - value: brvm description: BRVM - Regional Securities Exchange SA - value: bse description: BSE - Bulgarian Stock Exchange - value: bse_lb description: BSE - Beirut Stock Exchange - value: bsse description: BSSE - Bratislava Stock Exchange - value: bsx description: BSX - Bermuda Stock Exchange - value: bvb description: BVB - Bucharest Stock Exchange - value: bvc description: BVC - Colombian Stock Exchange - value: bvfb description: BVFB - Belarusian Currency and Stock Exchange - value: bvm description: BVM - Montevideo Stock Exchange - value: bvmf description: B3 - Brazil Stock Exchange and OTC Market - value: bvmt description: BVMT - Tunis Stock Exchange - value: bx description: BX - Berne Stock Exchange - value: cas description: CAS - Casablanca Stock Exchange - value: cise description: CISE - Channel Islands Stock Exchange - value: cnsx description: CNSX - Canadian National Stock Exchange - value: col description: COL - Colombo Stock Exchange - value: cph description: CPH - Copenhagen Stock Exchange - value: cse description: CSE - Canadian Securities Exchange - value: cse_cy description: CSE - Cyprus Stock Exchange - value: csx description: CSX - Cambodia Securities Exchange - value: dfm description: DFM - Dubai Financial Market - value: dse description: DSE - Dhaka Stock Exchange - value: dsx description: DSX - Douala Stock Exchange - value: dus description: DUS - Börse Düsseldorf - value: ebr description: EBR - Euronext Brussels - value: egx description: EGX - Egypt Stock Exchange - value: eli description: ELI - Euronext Lisbon - value: epa description: EPA - Euronext Paris - value: etr description: ETR - Deutsche Börse XETRA - value: eurex description: EUREX - Eurex Exchange - value: fra description: FRA - Frankfurt Stock Exchange - value: fwb description: FWB - Börse Frankfurt Stock Exchange - value: gha description: GHA - Ghana Stock Exchange - value: gsx description: GSX - Georgian Stock Exchange - value: gsx_gi description: GSX - Gibraltar Stock Exchange - value: hel description: HEL - Helsinki Stock Exchange - value: hkg description: HKG - Hong Kong Stock Exchange - value: hnx description: HNX - Hanoi Stock Exchange - value: hose description: HOSE - Ho Chi Minh Stock Exchange - value: ice description: ICE - Iceland Stock Exchange - value: idx description: IDX - Indonesia Stock Exchange - value: iex description: IEX - Investors Exchange - value: ifb description: IFB - Iran Fara Bourse - value: ime description: IME - Iran Mercantile Exchange - value: irenex description: IRENEX - Iran Energy Exchange - value: ise description: ISE - Irish Stock Exchange - value: ist description: IST - Istanbul Stock Exchange - value: isx description: ISX - Iraq Stock Exchange - value: jp description: JP - Japan Exchange - value: jsc description: JSC - Belarusian Currency and Stock Exchange - value: jse description: JSE - Johannesburg Stock Exchange - value: jse_jam description: JSE - Jamaica Stock Exchange - value: kase description: KASE - Kazakhstan Stock Exchange - value: klse description: KLSE - Malaysia Stock Exchange - value: kosdaq description: KOSDAQ - Korean Securities Dealers Automated Quotations - value: krx description: KRX - Korea Stock Exchange - value: kse description: KSE - Kuwait Stock Exchange - value: lje description: LJE - Ljubljana Stock Exchange - value: lse description: LSE - London Stock Exchange - value: lsm description: LSM - Libyan Stock Market - value: lsx description: LSX - Lao Securities Exchange - value: luse description: LuSE - Lusaka Securities Exchange - value: luxse description: LuxSE - Luxembourg Stock Exchange - value: mal description: MAL - Malta Stock Exchange - value: mcx description: MCX - Multi Commodity Exchange of India - value: meff description: MEFF - Mercado Spanish Financial Futures Market - value: mnse description: MNSE - Montenegro Stock Exchange - value: moex description: MOEX - Moscow Exchange - value: mse description: MSE - Metropolitan Stock Exchange - value: mse_md description: MSE - Moldova Stock Exchange - value: mse_mk description: MSE - Macedonian Stock Exchange - value: msei description: MSEI - Metropolitan Stock Exchange of India - value: msm description: MSM - Muscat Securities Market - value: mun description: MUN - Börse München - value: nasdaq description: NASDAQ - value: nbo description: NSE - Nairobi Securities Exchange - value: nex description: NEX - NEX Exchange - value: nepse description: NEPSE - Nepal Stock Exchange - value: neeq description: NEEQ - National Equities Exchange and Quotations - value: ngm description: NGM - Nordic Growth Market Exchange - value: nig description: NIG - Nigerian Stock Exchange - value: notc description: NOTC - Norwegian OTC - value: npex description: NPEX - NPEX Stock Exchange - value: nse description: NSE - National Stock Exchange of India - value: nsx description: NSX - National Stock Exchange of Australia - value: nyse description: NYSE - New York Stock Exchange - value: nysearca description: NYSEARCA - NYSE Arca - value: nysemkt description: NYSEAMERICAN - NYSE American - value: nze description: NZE - New Zealand Stock Exchange - value: ose description: OSE - Oslo Stock Exchange - value: otcbb description: OTCBB - FINRA OTC Bulletin Board - value: otcpink description: OTC Pink - value: otcqb description: OTCQB - value: otcqx description: OTCQX - value: pdex description: PDEx - Philippine Dealing Exchange - value: pex description: PEX - Palestine Exchange - value: pfts description: PFTS - PFTS Ukraine Stock Exchange - value: pomsox description: POMSoX - Port Moresby Stock Exchange - value: prg description: PRA - Prague Stock Exchange - value: pse description: PSE - Philippine Stock Exchange - value: psx description: PSX - Pakistan Stock Exchange - value: qse description: QSE - Qatar Stock Exchange - value: rfb description: RFB - Riga Stock Exchange - value: rse description: RSE - Rwanda Stock Exchange - value: rsebl description: RSEBL - Royal Securities Exchange of Bhutan - value: sase description: SASE - Sarajevo Stock Exchange - value: sbx description: SBX - BX Swiss - value: sehk description: SEHK - The Stock Exchange of Hong Kong - value: sem description: SEM - Stock Exchange of Mauritius - value: sgbv description: SGBV - Algiers Stock Exchange - value: sgx description: SGX - Singapore Stock Exchange - value: six description: SIX - SIX Swiss Exchange - value: spbex description: SPBEX - Saint Petersburg Stock Exchange - value: spse description: SPSE - South Pacific Stock Exchange - value: sse description: SSE - Shanghai Stock Exchange - value: ssx description: SSX - Sydney Stock Exchange - value: sto description: STO - Stockholm Stock Exchange - value: stu description: STU - Börse Stuttgart - value: swx description: SWX - SIX Swiss Exchange - value: szse description: SZSE - Shenzhen Stock Exchange - value: tal description: TSE - Tallinn Stock Exchange - value: tfex description: TFEX - Thailand Futures Exchange - value: tise description: TISE - The International Stock Exchange - value: tlv description: TLV - Tel Aviv Stock Exchange - value: tpe description: TWSE - Taiwan Stock Exchange - value: tse_al description: TSE - Tirana Stock Exchange - value: tse_ir description: TSE - Tehran Stock Exchange - value: tsec description: TWO - Taiwan OTC Exchange - value: tsx description: TSX - Toronto Stock Exchange - value: cve description: TSX-V - Toronto TSX Venture Exchange - value: tyo description: TYO - Tokyo Stock Exchange - value: ttse description: TTSE - Trinidad and Tobago Stock Exchange - value: tadawul description: Tadawul - Saudi Stock Exchange - value: use description: USE - Uganda Securities Exchange - value: ux description: UX - Ukrainian Exchange - value: vie description: VIE - Vienna Stock Exchange - value: vmf description: VMF - Faroese Securities Market - value: vse description: VSE - Vancouver Stock Exchange - value: wse description: WSE - Warsaw Stock Exchange - value: ysx description: YSX - Yangon Stock Exchange - value: zamace description: ZAMACE - Zambian Commodity Exchange - value: zse description: ZSE - Zimbabwe Stock Exchange - value: zse_hr description: ZSE - Zagreb Stock Exchange x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes stock_symbol: type: object description: Stock ticker symbol (e.g. AAPL, FB, TWTR) allOf: - $ref: '#/components/schemas/EntityIdentifier_2' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts twitter: type: object description: Link to an organization/person's X page allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes website: type: object description: Link to homepage allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] website_url: type: string description: Link to homepage maxLength: 8192 x-cb-field-type: url x-cb-searchable: true x-cb-search-operators: - domain_blank - domain_eq - domain_includes - not_domain_eq - not_domain_includes went_public_on: type: string description: The date when the Organization went public format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte PersonEntity_2: type: object properties: cards: type: object properties: degrees: type: array items: $ref: '#/components/schemas/Degree' event_appearances: type: array items: $ref: '#/components/schemas/EventAppearance' fields: $ref: '#/components/schemas/Person_2' founded_organizations: type: array items: $ref: '#/components/schemas/Organization_2' jobs: type: array items: $ref: '#/components/schemas/Job' primary_job: type: array items: $ref: '#/components/schemas/Job' primary_organization: type: array items: $ref: '#/components/schemas/Organization_2' properties: $ref: '#/components/schemas/Person_2' OwnershipEntity_2: type: object properties: cards: type: object properties: child_organization: type: array items: $ref: '#/components/schemas/Organization_2' fields: $ref: '#/components/schemas/Ownership' parent_organization: type: array items: $ref: '#/components/schemas/Organization_2' properties: $ref: '#/components/schemas/Ownership' EventEntity_2: type: object properties: cards: type: object properties: address: type: array items: $ref: '#/components/schemas/Address' appearances: type: array items: $ref: '#/components/schemas/EventAppearance' contestants: type: array items: $ref: '#/components/schemas/Principal_2' exhibitors: type: array items: $ref: '#/components/schemas/Principal_2' fields: $ref: '#/components/schemas/Event' organizers: type: array items: $ref: '#/components/schemas/Principal_2' speakers: type: array items: $ref: '#/components/schemas/Principal_2' sponsors: type: array items: $ref: '#/components/schemas/Principal_2' properties: $ref: '#/components/schemas/Event' Person_2: type: object required: - identifier properties: aliases: type: array description: Alternate or previous names for the individual items: type: string maxLength: 255 x-cb-field-type: text_short_multi x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts born_on: type: string description: The birthdate of the person format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte description: type: string description: Text from a Person's biography maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains died_on: type: string description: The date when a person died format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* person - Person' enum: - person x-enum-descriptions: - Person x-cb-field-enum-values: - value: person description: Person x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes facebook: type: object description: Link to a Person's Facebook page allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] facet_ids: type: array items: type: string description: '* investor - Investor' enum: - investor x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all first_name: type: string description: First name of a Person maxLength: 255 x-cb-field-type: text_short x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts gender: type: string description: 'A Person''s gender * agender - Agender * androgyne - Androgyne * androgynous - Androgynous * bigender - Bigender * female - Female * ftm - Female to Male (FTM) * gender_fluid - Gender Fluid * gender_nonconforming - Gender Nonconforming * gender_questioning - Gender Questioning * gender_variant - Gender Variant * genderqueer - Genderqueer * male - Male * mtf - Male to Female (MTF) * neutrois - Neutrois * non_binary - Non-Binary * not_provided - Prefer not to identify * other - Other * pangender - Pangender * transfeminine - Transfeminine * transgender_female - Transgender Female * transgender_male - Transgender Male * transgender_man - Transgender Man * transgender_person - Transgender Person * transgender_woman - Transgender Woman * transmasculine - Transmasculine * transsexual_female - Transsexual Female * transsexual_male - Transsexual Male * transsexual_man - Transsexual Man * transsexual_person - Transsexual Person * transsexual_woman - Transsexual Woman * two_spirit - Two-Spirit' enum: - female - male - agender - androgyne - androgynous - bigender - ftm - mtf - gender_fluid - gender_nonconforming - gender_questioning - gender_variant - genderqueer - non_binary - neutrois - pangender - transgender_person - transgender_female - transgender_woman - transgender_male - transgender_man - transfeminine - transmasculine - transsexual_person - transsexual_female - transsexual_woman - transsexual_male - transsexual_man - two_spirit - other - not_provided x-enum-descriptions: - Female - Male - Agender - Androgyne - Androgynous - Bigender - Female to Male (FTM) - Male to Female (MTF) - Gender Fluid - Gender Nonconforming - Gender Questioning - Gender Variant - Genderqueer - Non-Binary - Neutrois - Pangender - Transgender Person - Transgender Female - Transgender Woman - Transgender Male - Transgender Man - Transfeminine - Transmasculine - Transsexual Person - Transsexual Female - Transsexual Woman - Transsexual Male - Transsexual Man - Two-Spirit - Other - Prefer not to identify x-cb-field-enum-values: - value: female description: Female - value: male description: Male - value: agender description: Agender - value: androgyne description: Androgyne - value: androgynous description: Androgynous - value: bigender description: Bigender - value: ftm description: Female to Male (FTM) - value: mtf description: Male to Female (MTF) - value: gender_fluid description: Gender Fluid - value: gender_nonconforming description: Gender Nonconforming - value: gender_questioning description: Gender Questioning - value: gender_variant description: Gender Variant - value: genderqueer description: Genderqueer - value: non_binary description: Non-Binary - value: neutrois description: Neutrois - value: pangender description: Pangender - value: transgender_person description: Transgender Person - value: transgender_female description: Transgender Female - value: transgender_woman description: Transgender Woman - value: transgender_male description: Transgender Male - value: transgender_man description: Transgender Man - value: transfeminine description: Transfeminine - value: transmasculine description: Transmasculine - value: transsexual_person description: Transsexual Person - value: transsexual_female description: Transsexual Female - value: transsexual_woman description: Transsexual Woman - value: transsexual_male description: Transsexual Male - value: transsexual_man description: Transsexual Man - value: two_spirit description: Two-Spirit - value: other description: Other - value: not_provided description: Prefer not to identify x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: First and last name of a Person allOf: - $ref: '#/components/schemas/EntityIdentifier_2' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts image_id: type: string description: The profile image of the person on Crunchbase maxLength: 255 x-cb-field-type: image_id x-cb-searchable: false x-cb-search-operators: [] image_url: type: string description: The url of the profile image maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] investor_stage: type: array description: This describes the stage of investor this person is (e.g. Angel, Fund of Funds, Venture Capital) items: type: string description: 'This describes the stage of investor this person is (e.g. Angel, Fund of Funds, Venture Capital) * convertible_note - Convertible Note * crowdfunding - Crowdfunding * debt - Debt * early_stage_venture - Early Stage Venture * grant - Grant * initial_coin_offering - Initial Coin Offering * late_stage_venture - Late Stage Venture * non_equity_assistance - Non Equity Assistance * post_ipo - Post-Ipo * private_equity - Private Equity * secondary_market - Secondary Market * seed - Seed * venture - Venture' enum: - seed - early_stage_venture - late_stage_venture - venture - private_equity - crowdfunding - debt - grant - non_equity_assistance - convertible_note - secondary_market - post_ipo - initial_coin_offering x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all investor_type: type: array description: This describes the type of investor the person is (e.g. Angel, Fund of Funds, Venture Capital) items: type: string description: 'This describes the type of investor the person is (e.g. Angel, Fund of Funds, Venture Capital) * angel - Individual/Angel * investment_partner - Investment Partner' enum: - angel - investment_partner x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all last_name: type: string description: Last name of a Person maxLength: 255 x-cb-field-type: text_short x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts layout_id: type: string description: 'This is the auto-generated layout for the profile * investor - Investor Layout' enum: - investor x-enum-descriptions: - Investor Layout x-cb-field-enum-values: - value: investor description: Investor Layout x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes linkedin: type: object description: Link to a Person's LinkedIn page allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] location_group_identifiers: type: array description: Where the person is located (e.g. San Francisco Bay Area, Silicon Valley) items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all location_identifiers: type: array description: Where the person is located (e.g. Europe, Menlo Park, China) items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all middle_name: type: string description: Middle name of a Person maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] name: type: string description: Full name of a Person maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] num_current_advisor_jobs: type: number description: Total number of current Advisors and Board roles the person has x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_current_jobs: type: number description: Total number of current Jobs the person has x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_diversity_spotlight_investments: type: number description: Total number of diversity investments made by an investor x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_event_appearances: type: number description: Total number of events the individual appeared in x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_exits: type: number description: Total number of Exits x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_exits_ipo: type: number description: Total number of Exits (IPO) x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_founded_organizations: type: number description: Number of Organizations that the person founded x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_investments: type: number description: Number of Investments the Individual has participated in x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_jobs: type: number description: Total number of Jobs the person has x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_lead_investments: type: number description: Number of Investments led by the Individual x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_partner_investments: type: number description: Number of Investments the Individual has partnered in x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_past_advisor_jobs: type: number description: Total number of past Board and Advisor roles the person has x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_past_jobs: type: number description: Total number of past Jobs the person has x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_portfolio_organizations: type: number description: Number of portfolio companies associated to the Person x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq permalink: type: string maxLength: 255 x-cb-field-type: permalink x-cb-searchable: false x-cb-search-operators: [] permalink_aliases: type: array description: These are the alternative aliases to the primary permalink of the Organization items: type: string maxLength: 255 x-cb-field-type: text_exact_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all primary_job_title: type: string description: The person's primary job title maxLength: 255 x-cb-field-type: text_short x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts primary_organization: type: object description: The organization associated to the person's primary job allOf: - $ref: '#/components/schemas/EntityIdentifier_2' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts rank: type: number description: Algorithmic rank assigned to the top profiles on Crunchbase x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank_person: type: number description: Algorithmic rank assigned to the top 100,000 most active People x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq short_description: type: string description: Text of Person Description, Industries, and Industry Groups maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains twitter: type: object description: Link to a person's X profile allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes website: type: object description: Link to a Person's website allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] website_url: type: string description: Link to a Person's website maxLength: 8192 x-cb-field-type: url x-cb-searchable: true x-cb-search-operators: - domain_blank - domain_eq - domain_includes - not_domain_eq - not_domain_includes InvestmentEntity_2: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/Investment_2' investor: type: array items: $ref: '#/components/schemas/Principal_2' organization: type: array items: $ref: '#/components/schemas/Organization_2' properties: $ref: '#/components/schemas/Investment_2' IpoEntity_2: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/Ipo' organization: type: array items: $ref: '#/components/schemas/Organization_2' properties: $ref: '#/components/schemas/Ipo' PrincipalFieldId_2: type: string description: Principal field ids enum: - aliases - born_on - categories - category_groups - closed_on - company_type - contact_email - created_at - delisted_on - description - died_on - diversity_spotlights - entity_def_id - exited_on - facebook - facet_ids - first_name - founded_on - founder_identifiers - funding_stage - gender - hub_tags - identifier - image_id - image_url - investor_identifiers - investor_stage - investor_type - ipo_status - last_equity_funding_total - last_equity_funding_type - last_funding_at - last_funding_total - last_funding_type - last_name - layout_id - linkedin - location_group_identifiers - location_identifiers - name - num_alumni - num_diversity_spotlight_investments - num_employees_enum - num_enrollments - num_event_appearances - num_exits - num_exits_ipo - num_founded_organizations - num_founders - num_funding_rounds - num_investments - num_investors - num_jobs - num_lead_investments - num_lead_investors - num_partner_investments - num_portfolio_organizations - operating_status - permalink - permalink_aliases - phone_number - primary_job_title - primary_organization - program_application_deadline - program_duration - program_type - rank - school_method - school_program - school_type - short_description - status - stock_exchange_symbol - stock_symbol - twitter - updated_at - uuid - website - website_url - went_public_on Organization_3: type: object required: - identifier properties: acquirer_identifier: type: object description: Name of the organization that made the acquisition allOf: - $ref: '#/components/schemas/EntityIdentifier_3' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts aliases: type: array description: Alternate or previous names for the organization items: type: string maxLength: 255 x-cb-field-type: text_short_multi x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts categories: type: array description: Descriptive keyword for an Organization (e.g. SaaS, Android, Cloud Computing, Medical Device) items: $ref: '#/components/schemas/EntityIdentifier_3' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all category_groups: type: array description: Superset of Industries (e.g. Software, Mobile, Health Care) items: $ref: '#/components/schemas/EntityIdentifier_3' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all closed_on: type: object description: The date when the organization is closed allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte company_type: type: string description: 'Whether an Organization is for profit or non-profit * for_profit - For Profit * non_profit - Non-profit' enum: - for_profit - non_profit x-enum-descriptions: - For Profit - Non-profit x-cb-field-enum-values: - value: for_profit description: For Profit - value: non_profit description: Non-profit x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes contact_email: type: string description: General contact email for the organization maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte delisted_on: type: object description: The date when the Organization removed its stock from the stock exchange. allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte demo_days: type: boolean description: Whether an accelerator hosts any demo days x-cb-field-type: boolean x-cb-searchable: true x-cb-search-operators: - blank - eq description: type: string description: Organization Description, Industries, Industry Groups maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains diversity_spotlights: type: array description: Types of diversity represented in an organization, specifically of those who are founding members, currently the CEO, or have check-writing abilities in an investment firm. This feature is in beta and may change with future updates. items: $ref: '#/components/schemas/EntityIdentifier_3' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all entity_def_id: type: string description: '* organization - Organization' enum: - organization x-enum-descriptions: - Organization x-cb-field-enum-values: - value: organization description: Organization x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes exited_on: type: object description: Date the organization was acquired or went public allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte facebook: type: object description: Link to Organization's Facebook page allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] facet_ids: type: array items: type: string description: '* company - Company * government_entity - Government Entity * investor - Investor * school - School' enum: - company - government_entity - investor - school x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all founded_on: type: object description: Date the Organization was founded allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte founder_identifiers: type: array description: Founders of the organization items: $ref: '#/components/schemas/EntityIdentifier_3' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all hub_tags: type: array description: Tags are labels assigned to organizations, which identify their belonging to a group with that shared label items: type: string description: 'Tags are labels assigned to organizations, which identify their belonging to a group with that shared label * cbvp - Crunchbase Venture Program * emerging_unicorn - Emerging Unicorn * exited_unicorn - Exited Unicorn * pledge_one_percent - Pledge 1% * unicorn - Unicorn' enum: - cbvp - pledge_one_percent - unicorn - emerging_unicorn - exited_unicorn x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all identifier: type: object description: Name of the Organization allOf: - $ref: '#/components/schemas/EntityIdentifier_3' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts image_id: type: string description: The profile image of the organization on Crunchbase maxLength: 255 x-cb-field-type: image_id x-cb-searchable: false x-cb-search-operators: [] image_url: type: string description: The url of the profile image maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] layout_id: type: string description: 'This is the auto-generated layout for the profile * investor - Investor Layout * school - School Layout' enum: - school - investor x-enum-descriptions: - School Layout - Investor Layout x-cb-field-enum-values: - value: school description: School Layout - value: investor description: Investor Layout x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes legal_name: type: string description: The legal name of the organization maxLength: 255 x-cb-field-type: text_short x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts linkedin: type: object description: Link to Organization's LinkedIn page allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] listed_stock_symbol: type: string description: Stock ticker symbol (e.g. AAPL, FB, TWTR) maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] location_group_identifiers: type: array description: Where the organization is headquartered (e.g. San Francisco Bay Area, Silicon Valley) items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all location_identifiers: type: array description: Where the organization is headquartered items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all name: type: string maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] num_alumni: type: number description: Total number of alumni x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_current_advisor_positions: type: number description: Total number of board member and advisor profiles an organization has on Crunchbase x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_current_positions: type: number description: Total number of employee profiles an organization has on Crunchbase x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_employees_enum: type: string description: 'Total number of employees * c_00001_00010 - 1-10 * c_00011_00050 - 11-50 * c_00051_00100 - 51-100 * c_00101_00250 - 101-250 * c_00251_00500 - 251-500 * c_00501_01000 - 501-1000 * c_01001_05000 - 1001-5000 * c_05001_10000 - 5001-10000 * c_10001_max - 10001+' enum: - c_00001_00010 - c_00011_00050 - c_00051_00100 - c_00101_00250 - c_00251_00500 - c_00501_01000 - c_01001_05000 - c_05001_10000 - c_10001_max x-enum-descriptions: - 1-10 - 11-50 - 51-100 - 101-250 - 251-500 - 501-1000 - 1001-5000 - 5001-10000 - 10001+ x-cb-field-enum-values: - value: c_00001_00010 description: 1-10 - value: c_00011_00050 description: 11-50 - value: c_00051_00100 description: 51-100 - value: c_00101_00250 description: 101-250 - value: c_00251_00500 description: 251-500 - value: c_00501_01000 description: 501-1000 - value: c_01001_05000 description: 1001-5000 - value: c_05001_10000 description: 5001-10000 - value: c_10001_max description: 10001+ x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes num_enrollments: type: string description: 'Total number of Enrollments * c_00001_00010 - 1-10 * c_00011_00050 - 11-50 * c_00051_00100 - 51-100 * c_00101_00250 - 101-250 * c_00251_00500 - 251-500 * c_00501_01000 - 501-1000 * c_01001_05000 - 1001-5000 * c_05001_10000 - 5001-10000 * c_10001_max - 10001+' enum: - c_00001_00010 - c_00011_00050 - c_00051_00100 - c_00101_00250 - c_00251_00500 - c_00501_01000 - c_01001_05000 - c_05001_10000 - c_10001_max x-enum-descriptions: - 1-10 - 11-50 - 51-100 - 101-250 - 251-500 - 501-1000 - 1001-5000 - 5001-10000 - 10001+ x-cb-field-enum-values: - value: c_00001_00010 description: 1-10 - value: c_00011_00050 description: 11-50 - value: c_00051_00100 description: 51-100 - value: c_00101_00250 description: 101-250 - value: c_00251_00500 description: 251-500 - value: c_00501_01000 description: 501-1000 - value: c_01001_05000 description: 1001-5000 - value: c_05001_10000 description: 5001-10000 - value: c_10001_max description: 10001+ x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes num_event_appearances: type: number description: Total number of events an Organization appeared in x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_portfolio_organizations: type: number description: Total number of portfolio organizations x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_sub_organizations: type: number description: Total number of sub-organizations that belongs to a parent Organization x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq operating_status: type: string description: 'Operating Status of Organization e.g. Active, Closed * active - Active * closed - Closed' enum: - active - closed x-enum-descriptions: - Active - Closed x-cb-field-enum-values: - value: active description: Active - value: closed description: Closed x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes owner_identifier: type: object description: This is the parent Organization of the sub-organization allOf: - $ref: '#/components/schemas/EntityIdentifier_3' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts permalink: type: string maxLength: 255 x-cb-field-type: permalink x-cb-searchable: false x-cb-search-operators: [] permalink_aliases: type: array description: These are the alternative aliases to the primary permalink of the Organization items: type: string maxLength: 255 x-cb-field-type: text_exact_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all phone_number: type: string description: Organization's general phone number maxLength: 255 x-cb-field-type: text_exact x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes program_application_deadline: type: string description: The deadline for applying to the Accelerator Program format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte program_duration: type: number description: The duration of the Acceleration Program in number of weeks x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq program_type: type: string description: 'The type of Accelerator Program (e.g. On-Site, Online) * on_site - On-Site * online - Online' enum: - on_site - online x-enum-descriptions: - On-Site - Online x-cb-field-enum-values: - value: on_site description: On-Site - value: online description: Online x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes rank: type: number description: Algorithmic rank assigned to the top profiles on Crunchbase x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank_org: type: number description: Algorithmic rank assigned to the top 100,000 most active Organizations x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq school_method: type: string description: 'The type of School Method (e.g. On Campus, Online) * on_compus - On Campus * online - Online * online_and_on_campus - Online and On Campus' enum: - on_compus - online - online_and_on_campus x-enum-descriptions: - On Campus - Online - Online and On Campus x-cb-field-enum-values: - value: on_compus description: On Campus - value: online description: Online - value: online_and_on_campus description: Online and On Campus x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes school_program: type: string description: 'The type of School Program (e.g. Bootcamp, Four Year University) * bootcamp - Bootcamp * community_college - Community College * four_year_university - Four Year University * graduate_university - Graduate University * high_school - High School * trade_school - Trade School * two_year_university - Two Year University' enum: - four_year_university - two_year_university - graduate_university - bootcamp - trade_school - community_college - high_school x-enum-descriptions: - Four Year University - Two Year University - Graduate University - Bootcamp - Trade School - Community College - High School x-cb-field-enum-values: - value: four_year_university description: Four Year University - value: two_year_university description: Two Year University - value: graduate_university description: Graduate University - value: bootcamp description: Bootcamp - value: trade_school description: Trade School - value: community_college description: Community College - value: high_school description: High School x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes school_type: type: string description: 'The type of school * for_profit_private - Private * non_profit_private - Private (Non-Profit) * public - Public' enum: - public - for_profit_private - non_profit_private x-enum-descriptions: - Public - Private - Private (Non-Profit) x-cb-field-enum-values: - value: public description: Public - value: for_profit_private description: Private - value: non_profit_private description: Private (Non-Profit) x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes short_description: type: string description: Text of Organization Description, Industries, and Industry Groups maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains status: type: string description: 'Status of Organization e.g. Operating, Closed, Acquired, IPO * closed - Closed * ipo - IPO * operating - Operating * was_acquired - Was Acquired' enum: - closed - ipo - operating - was_acquired x-enum-descriptions: - Closed - IPO - Operating - Was Acquired x-cb-field-enum-values: - value: closed description: Closed - value: ipo description: IPO - value: operating description: Operating - value: was_acquired description: Was Acquired x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes stock_exchange_symbol: type: string description: 'Stock exchange where the Organization is listed e.g. NYSE, NASDAQ * adx - ADX - Abu Dhabi Securities Exchange * afx - AFX - Afghanistan Stock Exchange * altx - ALTX - ALTX East Africa Exchange * amex - AMEX - American Stock Exchange * ams - AMS - Euronext Amsterdam * amx - AMX - Armenia Securities Exchange * asce - ASCE - Abuja Securities and Commodities Exchange * asx - ASX - Australian Securities Exchange * ath - ATH - Athens Stock Exchange * bcba - BCBA - Buenos Aires Stock Exchange * bdp - BDP - Budapest Stock Exchange * belex - BELEX - Belgrade Stock Exchange * ber - BER - Berliner Börse * bfb - BFB - Baku Stock Exchange * bit - BIT - Italian Stock Exchange * bkk - BKK - Thailand Stock Exchange * blse - BLSE - Banja Luka Stock Exchange * bme - BME - Madrid Stock Exchange * bmv - BMV - Mexican Stock Exchange * bom - BOM - Bombay Stock Exchange * brvm - BRVM - Regional Securities Exchange SA * bse - BSE - Bulgarian Stock Exchange * bse_lb - BSE - Beirut Stock Exchange * bsse - BSSE - Bratislava Stock Exchange * bsx - BSX - Bermuda Stock Exchange * bvb - BVB - Bucharest Stock Exchange * bvc - BVC - Colombian Stock Exchange * bvfb - BVFB - Belarusian Currency and Stock Exchange * bvm - BVM - Montevideo Stock Exchange * bvmf - B3 - Brazil Stock Exchange and OTC Market * bvmt - BVMT - Tunis Stock Exchange * bx - BX - Berne Stock Exchange * cas - CAS - Casablanca Stock Exchange * cise - CISE - Channel Islands Stock Exchange * cnsx - CNSX - Canadian National Stock Exchange * col - COL - Colombo Stock Exchange * cph - CPH - Copenhagen Stock Exchange * cse - CSE - Canadian Securities Exchange * cse_cy - CSE - Cyprus Stock Exchange * csx - CSX - Cambodia Securities Exchange * cve - TSX-V - Toronto TSX Venture Exchange * dfm - DFM - Dubai Financial Market * dse - DSE - Dhaka Stock Exchange * dsx - DSX - Douala Stock Exchange * dus - DUS - Börse Düsseldorf * ebr - EBR - Euronext Brussels * egx - EGX - Egypt Stock Exchange * eli - ELI - Euronext Lisbon * epa - EPA - Euronext Paris * etr - ETR - Deutsche Börse XETRA * eurex - EUREX - Eurex Exchange * fra - FRA - Frankfurt Stock Exchange * fwb - FWB - Börse Frankfurt Stock Exchange * gha - GHA - Ghana Stock Exchange * gsx - GSX - Georgian Stock Exchange * gsx_gi - GSX - Gibraltar Stock Exchange * hel - HEL - Helsinki Stock Exchange * hkg - HKG - Hong Kong Stock Exchange * hnx - HNX - Hanoi Stock Exchange * hose - HOSE - Ho Chi Minh Stock Exchange * ice - ICE - Iceland Stock Exchange * idx - IDX - Indonesia Stock Exchange * iex - IEX - Investors Exchange * ifb - IFB - Iran Fara Bourse * ime - IME - Iran Mercantile Exchange * irenex - IRENEX - Iran Energy Exchange * ise - ISE - Irish Stock Exchange * ist - IST - Istanbul Stock Exchange * isx - ISX - Iraq Stock Exchange * jp - JP - Japan Exchange * jsc - JSC - Belarusian Currency and Stock Exchange * jse - JSE - Johannesburg Stock Exchange * jse_jam - JSE - Jamaica Stock Exchange * kase - KASE - Kazakhstan Stock Exchange * klse - KLSE - Malaysia Stock Exchange * kosdaq - KOSDAQ - Korean Securities Dealers Automated Quotations * krx - KRX - Korea Stock Exchange * kse - KSE - Kuwait Stock Exchange * lje - LJE - Ljubljana Stock Exchange * lse - LSE - London Stock Exchange * lsm - LSM - Libyan Stock Market * lsx - LSX - Lao Securities Exchange * luse - LuSE - Lusaka Securities Exchange * luxse - LuxSE - Luxembourg Stock Exchange * mal - MAL - Malta Stock Exchange * mcx - MCX - Multi Commodity Exchange of India * meff - MEFF - Mercado Spanish Financial Futures Market * mnse - MNSE - Montenegro Stock Exchange * moex - MOEX - Moscow Exchange * mse - MSE - Metropolitan Stock Exchange * mse_md - MSE - Moldova Stock Exchange * mse_mk - MSE - Macedonian Stock Exchange * msei - MSEI - Metropolitan Stock Exchange of India * msm - MSM - Muscat Securities Market * mun - MUN - Börse München * nasdaq - NASDAQ * nbo - NSE - Nairobi Securities Exchange * neeq - NEEQ - National Equities Exchange and Quotations * nepse - NEPSE - Nepal Stock Exchange * nex - NEX - NEX Exchange * ngm - NGM - Nordic Growth Market Exchange * nig - NIG - Nigerian Stock Exchange * notc - NOTC - Norwegian OTC * npex - NPEX - NPEX Stock Exchange * nse - NSE - National Stock Exchange of India * nsx - NSX - National Stock Exchange of Australia * nyse - NYSE - New York Stock Exchange * nysearca - NYSEARCA - NYSE Arca * nysemkt - NYSEAMERICAN - NYSE American * nze - NZE - New Zealand Stock Exchange * ose - OSE - Oslo Stock Exchange * otcbb - OTCBB - FINRA OTC Bulletin Board * otcpink - OTC Pink * otcqb - OTCQB * otcqx - OTCQX * pdex - PDEx - Philippine Dealing Exchange * pex - PEX - Palestine Exchange * pfts - PFTS - PFTS Ukraine Stock Exchange * pomsox - POMSoX - Port Moresby Stock Exchange * prg - PRA - Prague Stock Exchange * pse - PSE - Philippine Stock Exchange * psx - PSX - Pakistan Stock Exchange * qse - QSE - Qatar Stock Exchange * rfb - RFB - Riga Stock Exchange * rse - RSE - Rwanda Stock Exchange * rsebl - RSEBL - Royal Securities Exchange of Bhutan * sase - SASE - Sarajevo Stock Exchange * sbx - SBX - BX Swiss * sehk - SEHK - The Stock Exchange of Hong Kong * sem - SEM - Stock Exchange of Mauritius * sgbv - SGBV - Algiers Stock Exchange * sgx - SGX - Singapore Stock Exchange * six - SIX - SIX Swiss Exchange * spbex - SPBEX - Saint Petersburg Stock Exchange * spse - SPSE - South Pacific Stock Exchange * sse - SSE - Shanghai Stock Exchange * ssx - SSX - Sydney Stock Exchange * sto - STO - Stockholm Stock Exchange * stu - STU - Börse Stuttgart * swx - SWX - SIX Swiss Exchange * szse - SZSE - Shenzhen Stock Exchange * tadawul - Tadawul - Saudi Stock Exchange * tal - TSE - Tallinn Stock Exchange * tfex - TFEX - Thailand Futures Exchange * tise - TISE - The International Stock Exchange * tlv - TLV - Tel Aviv Stock Exchange * tpe - TWSE - Taiwan Stock Exchange * tse_al - TSE - Tirana Stock Exchange * tse_ir - TSE - Tehran Stock Exchange * tsec - TWO - Taiwan OTC Exchange * tsx - TSX - Toronto Stock Exchange * ttse - TTSE - Trinidad and Tobago Stock Exchange * tyo - TYO - Tokyo Stock Exchange * use - USE - Uganda Securities Exchange * ux - UX - Ukrainian Exchange * vie - VIE - Vienna Stock Exchange * vmf - VMF - Faroese Securities Market * vse - VSE - Vancouver Stock Exchange * wse - WSE - Warsaw Stock Exchange * ysx - YSX - Yangon Stock Exchange * zamace - ZAMACE - Zambian Commodity Exchange * zse - ZSE - Zimbabwe Stock Exchange * zse_hr - ZSE - Zagreb Stock Exchange' enum: - adx - afx - altx - amx - amex - ams - asce - asx - ath - bcba - bdp - belex - ber - bfb - bit - bkk - blse - bme - bmv - bom - brvm - bse - bse_lb - bsse - bsx - bvb - bvc - bvfb - bvm - bvmf - bvmt - bx - cas - cise - cnsx - col - cph - cse - cse_cy - csx - dfm - dse - dsx - dus - ebr - egx - eli - epa - etr - eurex - fra - fwb - gha - gsx - gsx_gi - hel - hkg - hnx - hose - ice - idx - iex - ifb - ime - irenex - ise - ist - isx - jp - jsc - jse - jse_jam - kase - klse - kosdaq - krx - kse - lje - lse - lsm - lsx - luse - luxse - mal - mcx - meff - mnse - moex - mse - mse_md - mse_mk - msei - msm - mun - nasdaq - nbo - nex - nepse - neeq - ngm - nig - notc - npex - nse - nsx - nyse - nysearca - nysemkt - nze - ose - otcbb - otcpink - otcqb - otcqx - pdex - pex - pfts - pomsox - prg - pse - psx - qse - rfb - rse - rsebl - sase - sbx - sehk - sem - sgbv - sgx - six - spbex - spse - sse - ssx - sto - stu - swx - szse - tal - tfex - tise - tlv - tpe - tse_al - tse_ir - tsec - tsx - cve - tyo - ttse - tadawul - use - ux - vie - vmf - vse - wse - ysx - zamace - zse - zse_hr x-enum-descriptions: - ADX - Abu Dhabi Securities Exchange - AFX - Afghanistan Stock Exchange - ALTX - ALTX East Africa Exchange - AMX - Armenia Securities Exchange - AMEX - American Stock Exchange - AMS - Euronext Amsterdam - ASCE - Abuja Securities and Commodities Exchange - ASX - Australian Securities Exchange - ATH - Athens Stock Exchange - BCBA - Buenos Aires Stock Exchange - BDP - Budapest Stock Exchange - BELEX - Belgrade Stock Exchange - BER - Berliner Börse - BFB - Baku Stock Exchange - BIT - Italian Stock Exchange - BKK - Thailand Stock Exchange - BLSE - Banja Luka Stock Exchange - BME - Madrid Stock Exchange - BMV - Mexican Stock Exchange - BOM - Bombay Stock Exchange - BRVM - Regional Securities Exchange SA - BSE - Bulgarian Stock Exchange - BSE - Beirut Stock Exchange - BSSE - Bratislava Stock Exchange - BSX - Bermuda Stock Exchange - BVB - Bucharest Stock Exchange - BVC - Colombian Stock Exchange - BVFB - Belarusian Currency and Stock Exchange - BVM - Montevideo Stock Exchange - B3 - Brazil Stock Exchange and OTC Market - BVMT - Tunis Stock Exchange - BX - Berne Stock Exchange - CAS - Casablanca Stock Exchange - CISE - Channel Islands Stock Exchange - CNSX - Canadian National Stock Exchange - COL - Colombo Stock Exchange - CPH - Copenhagen Stock Exchange - CSE - Canadian Securities Exchange - CSE - Cyprus Stock Exchange - CSX - Cambodia Securities Exchange - DFM - Dubai Financial Market - DSE - Dhaka Stock Exchange - DSX - Douala Stock Exchange - DUS - Börse Düsseldorf - EBR - Euronext Brussels - EGX - Egypt Stock Exchange - ELI - Euronext Lisbon - EPA - Euronext Paris - ETR - Deutsche Börse XETRA - EUREX - Eurex Exchange - FRA - Frankfurt Stock Exchange - FWB - Börse Frankfurt Stock Exchange - GHA - Ghana Stock Exchange - GSX - Georgian Stock Exchange - GSX - Gibraltar Stock Exchange - HEL - Helsinki Stock Exchange - HKG - Hong Kong Stock Exchange - HNX - Hanoi Stock Exchange - HOSE - Ho Chi Minh Stock Exchange - ICE - Iceland Stock Exchange - IDX - Indonesia Stock Exchange - IEX - Investors Exchange - IFB - Iran Fara Bourse - IME - Iran Mercantile Exchange - IRENEX - Iran Energy Exchange - ISE - Irish Stock Exchange - IST - Istanbul Stock Exchange - ISX - Iraq Stock Exchange - JP - Japan Exchange - JSC - Belarusian Currency and Stock Exchange - JSE - Johannesburg Stock Exchange - JSE - Jamaica Stock Exchange - KASE - Kazakhstan Stock Exchange - KLSE - Malaysia Stock Exchange - KOSDAQ - Korean Securities Dealers Automated Quotations - KRX - Korea Stock Exchange - KSE - Kuwait Stock Exchange - LJE - Ljubljana Stock Exchange - LSE - London Stock Exchange - LSM - Libyan Stock Market - LSX - Lao Securities Exchange - LuSE - Lusaka Securities Exchange - LuxSE - Luxembourg Stock Exchange - MAL - Malta Stock Exchange - MCX - Multi Commodity Exchange of India - MEFF - Mercado Spanish Financial Futures Market - MNSE - Montenegro Stock Exchange - MOEX - Moscow Exchange - MSE - Metropolitan Stock Exchange - MSE - Moldova Stock Exchange - MSE - Macedonian Stock Exchange - MSEI - Metropolitan Stock Exchange of India - MSM - Muscat Securities Market - MUN - Börse München - NASDAQ - NSE - Nairobi Securities Exchange - NEX - NEX Exchange - NEPSE - Nepal Stock Exchange - NEEQ - National Equities Exchange and Quotations - NGM - Nordic Growth Market Exchange - NIG - Nigerian Stock Exchange - NOTC - Norwegian OTC - NPEX - NPEX Stock Exchange - NSE - National Stock Exchange of India - NSX - National Stock Exchange of Australia - NYSE - New York Stock Exchange - NYSEARCA - NYSE Arca - NYSEAMERICAN - NYSE American - NZE - New Zealand Stock Exchange - OSE - Oslo Stock Exchange - OTCBB - FINRA OTC Bulletin Board - OTC Pink - OTCQB - OTCQX - PDEx - Philippine Dealing Exchange - PEX - Palestine Exchange - PFTS - PFTS Ukraine Stock Exchange - POMSoX - Port Moresby Stock Exchange - PRA - Prague Stock Exchange - PSE - Philippine Stock Exchange - PSX - Pakistan Stock Exchange - QSE - Qatar Stock Exchange - RFB - Riga Stock Exchange - RSE - Rwanda Stock Exchange - RSEBL - Royal Securities Exchange of Bhutan - SASE - Sarajevo Stock Exchange - SBX - BX Swiss - SEHK - The Stock Exchange of Hong Kong - SEM - Stock Exchange of Mauritius - SGBV - Algiers Stock Exchange - SGX - Singapore Stock Exchange - SIX - SIX Swiss Exchange - SPBEX - Saint Petersburg Stock Exchange - SPSE - South Pacific Stock Exchange - SSE - Shanghai Stock Exchange - SSX - Sydney Stock Exchange - STO - Stockholm Stock Exchange - STU - Börse Stuttgart - SWX - SIX Swiss Exchange - SZSE - Shenzhen Stock Exchange - TSE - Tallinn Stock Exchange - TFEX - Thailand Futures Exchange - TISE - The International Stock Exchange - TLV - Tel Aviv Stock Exchange - TWSE - Taiwan Stock Exchange - TSE - Tirana Stock Exchange - TSE - Tehran Stock Exchange - TWO - Taiwan OTC Exchange - TSX - Toronto Stock Exchange - TSX-V - Toronto TSX Venture Exchange - TYO - Tokyo Stock Exchange - TTSE - Trinidad and Tobago Stock Exchange - Tadawul - Saudi Stock Exchange - USE - Uganda Securities Exchange - UX - Ukrainian Exchange - VIE - Vienna Stock Exchange - VMF - Faroese Securities Market - VSE - Vancouver Stock Exchange - WSE - Warsaw Stock Exchange - YSX - Yangon Stock Exchange - ZAMACE - Zambian Commodity Exchange - ZSE - Zimbabwe Stock Exchange - ZSE - Zagreb Stock Exchange x-cb-field-enum-values: - value: adx description: ADX - Abu Dhabi Securities Exchange - value: afx description: AFX - Afghanistan Stock Exchange - value: altx description: ALTX - ALTX East Africa Exchange - value: amx description: AMX - Armenia Securities Exchange - value: amex description: AMEX - American Stock Exchange - value: ams description: AMS - Euronext Amsterdam - value: asce description: ASCE - Abuja Securities and Commodities Exchange - value: asx description: ASX - Australian Securities Exchange - value: ath description: ATH - Athens Stock Exchange - value: bcba description: BCBA - Buenos Aires Stock Exchange - value: bdp description: BDP - Budapest Stock Exchange - value: belex description: BELEX - Belgrade Stock Exchange - value: ber description: BER - Berliner Börse - value: bfb description: BFB - Baku Stock Exchange - value: bit description: BIT - Italian Stock Exchange - value: bkk description: BKK - Thailand Stock Exchange - value: blse description: BLSE - Banja Luka Stock Exchange - value: bme description: BME - Madrid Stock Exchange - value: bmv description: BMV - Mexican Stock Exchange - value: bom description: BOM - Bombay Stock Exchange - value: brvm description: BRVM - Regional Securities Exchange SA - value: bse description: BSE - Bulgarian Stock Exchange - value: bse_lb description: BSE - Beirut Stock Exchange - value: bsse description: BSSE - Bratislava Stock Exchange - value: bsx description: BSX - Bermuda Stock Exchange - value: bvb description: BVB - Bucharest Stock Exchange - value: bvc description: BVC - Colombian Stock Exchange - value: bvfb description: BVFB - Belarusian Currency and Stock Exchange - value: bvm description: BVM - Montevideo Stock Exchange - value: bvmf description: B3 - Brazil Stock Exchange and OTC Market - value: bvmt description: BVMT - Tunis Stock Exchange - value: bx description: BX - Berne Stock Exchange - value: cas description: CAS - Casablanca Stock Exchange - value: cise description: CISE - Channel Islands Stock Exchange - value: cnsx description: CNSX - Canadian National Stock Exchange - value: col description: COL - Colombo Stock Exchange - value: cph description: CPH - Copenhagen Stock Exchange - value: cse description: CSE - Canadian Securities Exchange - value: cse_cy description: CSE - Cyprus Stock Exchange - value: csx description: CSX - Cambodia Securities Exchange - value: dfm description: DFM - Dubai Financial Market - value: dse description: DSE - Dhaka Stock Exchange - value: dsx description: DSX - Douala Stock Exchange - value: dus description: DUS - Börse Düsseldorf - value: ebr description: EBR - Euronext Brussels - value: egx description: EGX - Egypt Stock Exchange - value: eli description: ELI - Euronext Lisbon - value: epa description: EPA - Euronext Paris - value: etr description: ETR - Deutsche Börse XETRA - value: eurex description: EUREX - Eurex Exchange - value: fra description: FRA - Frankfurt Stock Exchange - value: fwb description: FWB - Börse Frankfurt Stock Exchange - value: gha description: GHA - Ghana Stock Exchange - value: gsx description: GSX - Georgian Stock Exchange - value: gsx_gi description: GSX - Gibraltar Stock Exchange - value: hel description: HEL - Helsinki Stock Exchange - value: hkg description: HKG - Hong Kong Stock Exchange - value: hnx description: HNX - Hanoi Stock Exchange - value: hose description: HOSE - Ho Chi Minh Stock Exchange - value: ice description: ICE - Iceland Stock Exchange - value: idx description: IDX - Indonesia Stock Exchange - value: iex description: IEX - Investors Exchange - value: ifb description: IFB - Iran Fara Bourse - value: ime description: IME - Iran Mercantile Exchange - value: irenex description: IRENEX - Iran Energy Exchange - value: ise description: ISE - Irish Stock Exchange - value: ist description: IST - Istanbul Stock Exchange - value: isx description: ISX - Iraq Stock Exchange - value: jp description: JP - Japan Exchange - value: jsc description: JSC - Belarusian Currency and Stock Exchange - value: jse description: JSE - Johannesburg Stock Exchange - value: jse_jam description: JSE - Jamaica Stock Exchange - value: kase description: KASE - Kazakhstan Stock Exchange - value: klse description: KLSE - Malaysia Stock Exchange - value: kosdaq description: KOSDAQ - Korean Securities Dealers Automated Quotations - value: krx description: KRX - Korea Stock Exchange - value: kse description: KSE - Kuwait Stock Exchange - value: lje description: LJE - Ljubljana Stock Exchange - value: lse description: LSE - London Stock Exchange - value: lsm description: LSM - Libyan Stock Market - value: lsx description: LSX - Lao Securities Exchange - value: luse description: LuSE - Lusaka Securities Exchange - value: luxse description: LuxSE - Luxembourg Stock Exchange - value: mal description: MAL - Malta Stock Exchange - value: mcx description: MCX - Multi Commodity Exchange of India - value: meff description: MEFF - Mercado Spanish Financial Futures Market - value: mnse description: MNSE - Montenegro Stock Exchange - value: moex description: MOEX - Moscow Exchange - value: mse description: MSE - Metropolitan Stock Exchange - value: mse_md description: MSE - Moldova Stock Exchange - value: mse_mk description: MSE - Macedonian Stock Exchange - value: msei description: MSEI - Metropolitan Stock Exchange of India - value: msm description: MSM - Muscat Securities Market - value: mun description: MUN - Börse München - value: nasdaq description: NASDAQ - value: nbo description: NSE - Nairobi Securities Exchange - value: nex description: NEX - NEX Exchange - value: nepse description: NEPSE - Nepal Stock Exchange - value: neeq description: NEEQ - National Equities Exchange and Quotations - value: ngm description: NGM - Nordic Growth Market Exchange - value: nig description: NIG - Nigerian Stock Exchange - value: notc description: NOTC - Norwegian OTC - value: npex description: NPEX - NPEX Stock Exchange - value: nse description: NSE - National Stock Exchange of India - value: nsx description: NSX - National Stock Exchange of Australia - value: nyse description: NYSE - New York Stock Exchange - value: nysearca description: NYSEARCA - NYSE Arca - value: nysemkt description: NYSEAMERICAN - NYSE American - value: nze description: NZE - New Zealand Stock Exchange - value: ose description: OSE - Oslo Stock Exchange - value: otcbb description: OTCBB - FINRA OTC Bulletin Board - value: otcpink description: OTC Pink - value: otcqb description: OTCQB - value: otcqx description: OTCQX - value: pdex description: PDEx - Philippine Dealing Exchange - value: pex description: PEX - Palestine Exchange - value: pfts description: PFTS - PFTS Ukraine Stock Exchange - value: pomsox description: POMSoX - Port Moresby Stock Exchange - value: prg description: PRA - Prague Stock Exchange - value: pse description: PSE - Philippine Stock Exchange - value: psx description: PSX - Pakistan Stock Exchange - value: qse description: QSE - Qatar Stock Exchange - value: rfb description: RFB - Riga Stock Exchange - value: rse description: RSE - Rwanda Stock Exchange - value: rsebl description: RSEBL - Royal Securities Exchange of Bhutan - value: sase description: SASE - Sarajevo Stock Exchange - value: sbx description: SBX - BX Swiss - value: sehk description: SEHK - The Stock Exchange of Hong Kong - value: sem description: SEM - Stock Exchange of Mauritius - value: sgbv description: SGBV - Algiers Stock Exchange - value: sgx description: SGX - Singapore Stock Exchange - value: six description: SIX - SIX Swiss Exchange - value: spbex description: SPBEX - Saint Petersburg Stock Exchange - value: spse description: SPSE - South Pacific Stock Exchange - value: sse description: SSE - Shanghai Stock Exchange - value: ssx description: SSX - Sydney Stock Exchange - value: sto description: STO - Stockholm Stock Exchange - value: stu description: STU - Börse Stuttgart - value: swx description: SWX - SIX Swiss Exchange - value: szse description: SZSE - Shenzhen Stock Exchange - value: tal description: TSE - Tallinn Stock Exchange - value: tfex description: TFEX - Thailand Futures Exchange - value: tise description: TISE - The International Stock Exchange - value: tlv description: TLV - Tel Aviv Stock Exchange - value: tpe description: TWSE - Taiwan Stock Exchange - value: tse_al description: TSE - Tirana Stock Exchange - value: tse_ir description: TSE - Tehran Stock Exchange - value: tsec description: TWO - Taiwan OTC Exchange - value: tsx description: TSX - Toronto Stock Exchange - value: cve description: TSX-V - Toronto TSX Venture Exchange - value: tyo description: TYO - Tokyo Stock Exchange - value: ttse description: TTSE - Trinidad and Tobago Stock Exchange - value: tadawul description: Tadawul - Saudi Stock Exchange - value: use description: USE - Uganda Securities Exchange - value: ux description: UX - Ukrainian Exchange - value: vie description: VIE - Vienna Stock Exchange - value: vmf description: VMF - Faroese Securities Market - value: vse description: VSE - Vancouver Stock Exchange - value: wse description: WSE - Warsaw Stock Exchange - value: ysx description: YSX - Yangon Stock Exchange - value: zamace description: ZAMACE - Zambian Commodity Exchange - value: zse description: ZSE - Zimbabwe Stock Exchange - value: zse_hr description: ZSE - Zagreb Stock Exchange x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes stock_symbol: type: object description: Stock ticker symbol (e.g. AAPL, FB, TWTR) allOf: - $ref: '#/components/schemas/EntityIdentifier_3' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts twitter: type: object description: Link to an organization's X page allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes website: type: object description: Link to homepage allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] website_url: type: string description: Link to homepage maxLength: 8192 x-cb-field-type: url x-cb-searchable: true x-cb-search-operators: - domain_blank - domain_eq - domain_includes - not_domain_eq - not_domain_includes went_public_on: type: string description: The date when the Organization went public format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte EntityIdentifier_3: type: object description: Every entity in the system has a unique identifier that contains all necessary properties to represent it. required: - entity_def_id - uuid properties: entity_def_id: type: string enum: - address - category - category_group - degree - diversity_spotlight - event - event_appearance - ipo - job - location - organization - ownership - person image_id: type: string maxLength: 255 permalink: type: string maxLength: 255 uuid: type: string description: Universally Unique Identifier format: uuid value: type: string maxLength: 255 OrganizationEntity_3: type: object properties: cards: type: object properties: child_organizations: type: array items: $ref: '#/components/schemas/Organization_3' child_ownerships: type: array items: $ref: '#/components/schemas/Ownership' event_appearances: type: array items: $ref: '#/components/schemas/EventAppearance' fields: $ref: '#/components/schemas/Organization_3' founders: type: array items: $ref: '#/components/schemas/Person_3' headquarters_address: type: array items: $ref: '#/components/schemas/Address' parent_organization: type: array items: $ref: '#/components/schemas/Organization_3' parent_ownership: type: array items: $ref: '#/components/schemas/Ownership' properties: $ref: '#/components/schemas/Organization_3' OrganizationFieldId_3: type: string description: Organization field ids enum: - acquirer_identifier - aliases - categories - category_groups - closed_on - company_type - contact_email - created_at - delisted_on - demo_days - description - diversity_spotlights - entity_def_id - exited_on - facebook - facet_ids - founded_on - founder_identifiers - hub_tags - identifier - image_id - image_url - layout_id - legal_name - linkedin - listed_stock_symbol - location_group_identifiers - location_identifiers - name - num_alumni - num_current_advisor_positions - num_current_positions - num_employees_enum - num_enrollments - num_event_appearances - num_portfolio_organizations - num_sub_organizations - operating_status - owner_identifier - permalink - permalink_aliases - phone_number - program_application_deadline - program_duration - program_type - rank - rank_org - school_method - school_program - school_type - short_description - status - stock_exchange_symbol - stock_symbol - twitter - updated_at - uuid - website - website_url - went_public_on IpoFieldId_2: type: string description: Ipo field ids enum: - amount_raised - created_at - delisted_on - entity_def_id - identifier - image_id - organization_identifier - permalink - rank - rank_ipo - share_price - shares_outstanding - short_description - stock_exchange_symbol - stock_full_symbol - stock_symbol - updated_at - uuid Ipo_2: type: object required: - identifier properties: amount_raised: type: object description: Total amount raised from the IPO allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte delisted_on: type: object description: Date when the organization delisted its stock allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* ipo - Ipo' enum: - ipo x-enum-descriptions: - Ipo x-cb-field-enum-values: - value: ipo description: Ipo x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Stock ticker symbol (e.g. AAPL, FB, TWTR) allOf: - $ref: '#/components/schemas/EntityIdentifier_3' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts image_id: type: string maxLength: 255 x-cb-field-type: image_id x-cb-searchable: false x-cb-search-operators: [] organization_identifier: type: object description: Organization went public allOf: - $ref: '#/components/schemas/EntityIdentifier_3' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts permalink: type: string maxLength: 255 x-cb-field-type: permalink x-cb-searchable: false x-cb-search-operators: [] rank: type: number description: Algorithmic rank assigned to the top profiles on Crunchbase x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank_ipo: type: number description: Algorithmic rank assigned to the top 100,000 most active IPOs x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq share_price: type: object description: The share price for the stock at the time of IPO allOf: - $ref: '#/components/schemas/MoneyDecimal' x-cb-field-type: money_decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq shares_outstanding: type: number description: Number of shares that were outstanding at the time of IPO x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq short_description: type: string maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains stock_exchange_symbol: type: string description: 'Stock exchange where the Organization is listed (e.g. NYSE, NASDAQ) * adx - ADX - Abu Dhabi Securities Exchange * afx - AFX - Afghanistan Stock Exchange * altx - ALTX - ALTX East Africa Exchange * amex - AMEX - American Stock Exchange * ams - AMS - Euronext Amsterdam * amx - AMX - Armenia Securities Exchange * asce - ASCE - Abuja Securities and Commodities Exchange * asx - ASX - Australian Securities Exchange * ath - ATH - Athens Stock Exchange * bcba - BCBA - Buenos Aires Stock Exchange * bdp - BDP - Budapest Stock Exchange * belex - BELEX - Belgrade Stock Exchange * ber - BER - Berliner Börse * bfb - BFB - Baku Stock Exchange * bit - BIT - Italian Stock Exchange * bkk - BKK - Thailand Stock Exchange * blse - BLSE - Banja Luka Stock Exchange * bme - BME - Madrid Stock Exchange * bmv - BMV - Mexican Stock Exchange * bom - BOM - Bombay Stock Exchange * brvm - BRVM - Regional Securities Exchange SA * bse - BSE - Bulgarian Stock Exchange * bse_lb - BSE - Beirut Stock Exchange * bsse - BSSE - Bratislava Stock Exchange * bsx - BSX - Bermuda Stock Exchange * bvb - BVB - Bucharest Stock Exchange * bvc - BVC - Colombian Stock Exchange * bvfb - BVFB - Belarusian Currency and Stock Exchange * bvm - BVM - Montevideo Stock Exchange * bvmf - B3 - Brazil Stock Exchange and OTC Market * bvmt - BVMT - Tunis Stock Exchange * bx - BX - Berne Stock Exchange * cas - CAS - Casablanca Stock Exchange * cise - CISE - Channel Islands Stock Exchange * cnsx - CNSX - Canadian National Stock Exchange * col - COL - Colombo Stock Exchange * cph - CPH - Copenhagen Stock Exchange * cse - CSE - Canadian Securities Exchange * cse_cy - CSE - Cyprus Stock Exchange * csx - CSX - Cambodia Securities Exchange * cve - TSX-V - Toronto TSX Venture Exchange * dfm - DFM - Dubai Financial Market * dse - DSE - Dhaka Stock Exchange * dsx - DSX - Douala Stock Exchange * dus - DUS - Börse Düsseldorf * ebr - EBR - Euronext Brussels * egx - EGX - Egypt Stock Exchange * eli - ELI - Euronext Lisbon * epa - EPA - Euronext Paris * etr - ETR - Deutsche Börse XETRA * eurex - EUREX - Eurex Exchange * fra - FRA - Frankfurt Stock Exchange * fwb - FWB - Börse Frankfurt Stock Exchange * gha - GHA - Ghana Stock Exchange * gsx - GSX - Georgian Stock Exchange * gsx_gi - GSX - Gibraltar Stock Exchange * hel - HEL - Helsinki Stock Exchange * hkg - HKG - Hong Kong Stock Exchange * hnx - HNX - Hanoi Stock Exchange * hose - HOSE - Ho Chi Minh Stock Exchange * ice - ICE - Iceland Stock Exchange * idx - IDX - Indonesia Stock Exchange * iex - IEX - Investors Exchange * ifb - IFB - Iran Fara Bourse * ime - IME - Iran Mercantile Exchange * irenex - IRENEX - Iran Energy Exchange * ise - ISE - Irish Stock Exchange * ist - IST - Istanbul Stock Exchange * isx - ISX - Iraq Stock Exchange * jp - JP - Japan Exchange * jsc - JSC - Belarusian Currency and Stock Exchange * jse - JSE - Johannesburg Stock Exchange * jse_jam - JSE - Jamaica Stock Exchange * kase - KASE - Kazakhstan Stock Exchange * klse - KLSE - Malaysia Stock Exchange * kosdaq - KOSDAQ - Korean Securities Dealers Automated Quotations * krx - KRX - Korea Stock Exchange * kse - KSE - Kuwait Stock Exchange * lje - LJE - Ljubljana Stock Exchange * lse - LSE - London Stock Exchange * lsm - LSM - Libyan Stock Market * lsx - LSX - Lao Securities Exchange * luse - LuSE - Lusaka Securities Exchange * luxse - LuxSE - Luxembourg Stock Exchange * mal - MAL - Malta Stock Exchange * mcx - MCX - Multi Commodity Exchange of India * meff - MEFF - Mercado Spanish Financial Futures Market * mnse - MNSE - Montenegro Stock Exchange * moex - MOEX - Moscow Exchange * mse - MSE - Metropolitan Stock Exchange * mse_md - MSE - Moldova Stock Exchange * mse_mk - MSE - Macedonian Stock Exchange * msei - MSEI - Metropolitan Stock Exchange of India * msm - MSM - Muscat Securities Market * mun - MUN - Börse München * nasdaq - NASDAQ * nbo - NSE - Nairobi Securities Exchange * neeq - NEEQ - National Equities Exchange and Quotations * nepse - NEPSE - Nepal Stock Exchange * nex - NEX - NEX Exchange * ngm - NGM - Nordic Growth Market Exchange * nig - NIG - Nigerian Stock Exchange * notc - NOTC - Norwegian OTC * npex - NPEX - NPEX Stock Exchange * nse - NSE - National Stock Exchange of India * nsx - NSX - National Stock Exchange of Australia * nyse - NYSE - New York Stock Exchange * nysearca - NYSEARCA - NYSE Arca * nysemkt - NYSEAMERICAN - NYSE American * nze - NZE - New Zealand Stock Exchange * ose - OSE - Oslo Stock Exchange * otcbb - OTCBB - FINRA OTC Bulletin Board * otcpink - OTC Pink * otcqb - OTCQB * otcqx - OTCQX * pdex - PDEx - Philippine Dealing Exchange * pex - PEX - Palestine Exchange * pfts - PFTS - PFTS Ukraine Stock Exchange * pomsox - POMSoX - Port Moresby Stock Exchange * prg - PRA - Prague Stock Exchange * pse - PSE - Philippine Stock Exchange * psx - PSX - Pakistan Stock Exchange * qse - QSE - Qatar Stock Exchange * rfb - RFB - Riga Stock Exchange * rse - RSE - Rwanda Stock Exchange * rsebl - RSEBL - Royal Securities Exchange of Bhutan * sase - SASE - Sarajevo Stock Exchange * sbx - SBX - BX Swiss * sehk - SEHK - The Stock Exchange of Hong Kong * sem - SEM - Stock Exchange of Mauritius * sgbv - SGBV - Algiers Stock Exchange * sgx - SGX - Singapore Stock Exchange * six - SIX - SIX Swiss Exchange * spbex - SPBEX - Saint Petersburg Stock Exchange * spse - SPSE - South Pacific Stock Exchange * sse - SSE - Shanghai Stock Exchange * ssx - SSX - Sydney Stock Exchange * sto - STO - Stockholm Stock Exchange * stu - STU - Börse Stuttgart * swx - SWX - SIX Swiss Exchange * szse - SZSE - Shenzhen Stock Exchange * tadawul - Tadawul - Saudi Stock Exchange * tal - TSE - Tallinn Stock Exchange * tfex - TFEX - Thailand Futures Exchange * tise - TISE - The International Stock Exchange * tlv - TLV - Tel Aviv Stock Exchange * tpe - TWSE - Taiwan Stock Exchange * tse_al - TSE - Tirana Stock Exchange * tse_ir - TSE - Tehran Stock Exchange * tsec - TWO - Taiwan OTC Exchange * tsx - TSX - Toronto Stock Exchange * ttse - TTSE - Trinidad and Tobago Stock Exchange * tyo - TYO - Tokyo Stock Exchange * use - USE - Uganda Securities Exchange * ux - UX - Ukrainian Exchange * vie - VIE - Vienna Stock Exchange * vmf - VMF - Faroese Securities Market * vse - VSE - Vancouver Stock Exchange * wse - WSE - Warsaw Stock Exchange * ysx - YSX - Yangon Stock Exchange * zamace - ZAMACE - Zambian Commodity Exchange * zse - ZSE - Zimbabwe Stock Exchange * zse_hr - ZSE - Zagreb Stock Exchange' enum: - adx - afx - altx - amx - amex - ams - asce - asx - ath - bcba - bdp - belex - ber - bfb - bit - bkk - blse - bme - bmv - bom - brvm - bse - bse_lb - bsse - bsx - bvb - bvc - bvfb - bvm - bvmf - bvmt - bx - cas - cise - cnsx - col - cph - cse - cse_cy - csx - dfm - dse - dsx - dus - ebr - egx - eli - epa - etr - eurex - fra - fwb - gha - gsx - gsx_gi - hel - hkg - hnx - hose - ice - idx - iex - ifb - ime - irenex - ise - ist - isx - jp - jsc - jse - jse_jam - kase - klse - kosdaq - krx - kse - lje - lse - lsm - lsx - luse - luxse - mal - mcx - meff - mnse - moex - mse - mse_md - mse_mk - msei - msm - mun - nasdaq - nbo - nex - nepse - neeq - ngm - nig - notc - npex - nse - nsx - nyse - nysearca - nysemkt - nze - ose - otcbb - otcpink - otcqb - otcqx - pdex - pex - pfts - pomsox - prg - pse - psx - qse - rfb - rse - rsebl - sase - sbx - sehk - sem - sgbv - sgx - six - spbex - spse - sse - ssx - sto - stu - swx - szse - tal - tfex - tise - tlv - tpe - tse_al - tse_ir - tsec - tsx - cve - tyo - ttse - tadawul - use - ux - vie - vmf - vse - wse - ysx - zamace - zse - zse_hr x-enum-descriptions: - ADX - Abu Dhabi Securities Exchange - AFX - Afghanistan Stock Exchange - ALTX - ALTX East Africa Exchange - AMX - Armenia Securities Exchange - AMEX - American Stock Exchange - AMS - Euronext Amsterdam - ASCE - Abuja Securities and Commodities Exchange - ASX - Australian Securities Exchange - ATH - Athens Stock Exchange - BCBA - Buenos Aires Stock Exchange - BDP - Budapest Stock Exchange - BELEX - Belgrade Stock Exchange - BER - Berliner Börse - BFB - Baku Stock Exchange - BIT - Italian Stock Exchange - BKK - Thailand Stock Exchange - BLSE - Banja Luka Stock Exchange - BME - Madrid Stock Exchange - BMV - Mexican Stock Exchange - BOM - Bombay Stock Exchange - BRVM - Regional Securities Exchange SA - BSE - Bulgarian Stock Exchange - BSE - Beirut Stock Exchange - BSSE - Bratislava Stock Exchange - BSX - Bermuda Stock Exchange - BVB - Bucharest Stock Exchange - BVC - Colombian Stock Exchange - BVFB - Belarusian Currency and Stock Exchange - BVM - Montevideo Stock Exchange - B3 - Brazil Stock Exchange and OTC Market - BVMT - Tunis Stock Exchange - BX - Berne Stock Exchange - CAS - Casablanca Stock Exchange - CISE - Channel Islands Stock Exchange - CNSX - Canadian National Stock Exchange - COL - Colombo Stock Exchange - CPH - Copenhagen Stock Exchange - CSE - Canadian Securities Exchange - CSE - Cyprus Stock Exchange - CSX - Cambodia Securities Exchange - DFM - Dubai Financial Market - DSE - Dhaka Stock Exchange - DSX - Douala Stock Exchange - DUS - Börse Düsseldorf - EBR - Euronext Brussels - EGX - Egypt Stock Exchange - ELI - Euronext Lisbon - EPA - Euronext Paris - ETR - Deutsche Börse XETRA - EUREX - Eurex Exchange - FRA - Frankfurt Stock Exchange - FWB - Börse Frankfurt Stock Exchange - GHA - Ghana Stock Exchange - GSX - Georgian Stock Exchange - GSX - Gibraltar Stock Exchange - HEL - Helsinki Stock Exchange - HKG - Hong Kong Stock Exchange - HNX - Hanoi Stock Exchange - HOSE - Ho Chi Minh Stock Exchange - ICE - Iceland Stock Exchange - IDX - Indonesia Stock Exchange - IEX - Investors Exchange - IFB - Iran Fara Bourse - IME - Iran Mercantile Exchange - IRENEX - Iran Energy Exchange - ISE - Irish Stock Exchange - IST - Istanbul Stock Exchange - ISX - Iraq Stock Exchange - JP - Japan Exchange - JSC - Belarusian Currency and Stock Exchange - JSE - Johannesburg Stock Exchange - JSE - Jamaica Stock Exchange - KASE - Kazakhstan Stock Exchange - KLSE - Malaysia Stock Exchange - KOSDAQ - Korean Securities Dealers Automated Quotations - KRX - Korea Stock Exchange - KSE - Kuwait Stock Exchange - LJE - Ljubljana Stock Exchange - LSE - London Stock Exchange - LSM - Libyan Stock Market - LSX - Lao Securities Exchange - LuSE - Lusaka Securities Exchange - LuxSE - Luxembourg Stock Exchange - MAL - Malta Stock Exchange - MCX - Multi Commodity Exchange of India - MEFF - Mercado Spanish Financial Futures Market - MNSE - Montenegro Stock Exchange - MOEX - Moscow Exchange - MSE - Metropolitan Stock Exchange - MSE - Moldova Stock Exchange - MSE - Macedonian Stock Exchange - MSEI - Metropolitan Stock Exchange of India - MSM - Muscat Securities Market - MUN - Börse München - NASDAQ - NSE - Nairobi Securities Exchange - NEX - NEX Exchange - NEPSE - Nepal Stock Exchange - NEEQ - National Equities Exchange and Quotations - NGM - Nordic Growth Market Exchange - NIG - Nigerian Stock Exchange - NOTC - Norwegian OTC - NPEX - NPEX Stock Exchange - NSE - National Stock Exchange of India - NSX - National Stock Exchange of Australia - NYSE - New York Stock Exchange - NYSEARCA - NYSE Arca - NYSEAMERICAN - NYSE American - NZE - New Zealand Stock Exchange - OSE - Oslo Stock Exchange - OTCBB - FINRA OTC Bulletin Board - OTC Pink - OTCQB - OTCQX - PDEx - Philippine Dealing Exchange - PEX - Palestine Exchange - PFTS - PFTS Ukraine Stock Exchange - POMSoX - Port Moresby Stock Exchange - PRA - Prague Stock Exchange - PSE - Philippine Stock Exchange - PSX - Pakistan Stock Exchange - QSE - Qatar Stock Exchange - RFB - Riga Stock Exchange - RSE - Rwanda Stock Exchange - RSEBL - Royal Securities Exchange of Bhutan - SASE - Sarajevo Stock Exchange - SBX - BX Swiss - SEHK - The Stock Exchange of Hong Kong - SEM - Stock Exchange of Mauritius - SGBV - Algiers Stock Exchange - SGX - Singapore Stock Exchange - SIX - SIX Swiss Exchange - SPBEX - Saint Petersburg Stock Exchange - SPSE - South Pacific Stock Exchange - SSE - Shanghai Stock Exchange - SSX - Sydney Stock Exchange - STO - Stockholm Stock Exchange - STU - Börse Stuttgart - SWX - SIX Swiss Exchange - SZSE - Shenzhen Stock Exchange - TSE - Tallinn Stock Exchange - TFEX - Thailand Futures Exchange - TISE - The International Stock Exchange - TLV - Tel Aviv Stock Exchange - TWSE - Taiwan Stock Exchange - TSE - Tirana Stock Exchange - TSE - Tehran Stock Exchange - TWO - Taiwan OTC Exchange - TSX - Toronto Stock Exchange - TSX-V - Toronto TSX Venture Exchange - TYO - Tokyo Stock Exchange - TTSE - Trinidad and Tobago Stock Exchange - Tadawul - Saudi Stock Exchange - USE - Uganda Securities Exchange - UX - Ukrainian Exchange - VIE - Vienna Stock Exchange - VMF - Faroese Securities Market - VSE - Vancouver Stock Exchange - WSE - Warsaw Stock Exchange - YSX - Yangon Stock Exchange - ZAMACE - Zambian Commodity Exchange - ZSE - Zimbabwe Stock Exchange - ZSE - Zagreb Stock Exchange x-cb-field-enum-values: - value: adx description: ADX - Abu Dhabi Securities Exchange - value: afx description: AFX - Afghanistan Stock Exchange - value: altx description: ALTX - ALTX East Africa Exchange - value: amx description: AMX - Armenia Securities Exchange - value: amex description: AMEX - American Stock Exchange - value: ams description: AMS - Euronext Amsterdam - value: asce description: ASCE - Abuja Securities and Commodities Exchange - value: asx description: ASX - Australian Securities Exchange - value: ath description: ATH - Athens Stock Exchange - value: bcba description: BCBA - Buenos Aires Stock Exchange - value: bdp description: BDP - Budapest Stock Exchange - value: belex description: BELEX - Belgrade Stock Exchange - value: ber description: BER - Berliner Börse - value: bfb description: BFB - Baku Stock Exchange - value: bit description: BIT - Italian Stock Exchange - value: bkk description: BKK - Thailand Stock Exchange - value: blse description: BLSE - Banja Luka Stock Exchange - value: bme description: BME - Madrid Stock Exchange - value: bmv description: BMV - Mexican Stock Exchange - value: bom description: BOM - Bombay Stock Exchange - value: brvm description: BRVM - Regional Securities Exchange SA - value: bse description: BSE - Bulgarian Stock Exchange - value: bse_lb description: BSE - Beirut Stock Exchange - value: bsse description: BSSE - Bratislava Stock Exchange - value: bsx description: BSX - Bermuda Stock Exchange - value: bvb description: BVB - Bucharest Stock Exchange - value: bvc description: BVC - Colombian Stock Exchange - value: bvfb description: BVFB - Belarusian Currency and Stock Exchange - value: bvm description: BVM - Montevideo Stock Exchange - value: bvmf description: B3 - Brazil Stock Exchange and OTC Market - value: bvmt description: BVMT - Tunis Stock Exchange - value: bx description: BX - Berne Stock Exchange - value: cas description: CAS - Casablanca Stock Exchange - value: cise description: CISE - Channel Islands Stock Exchange - value: cnsx description: CNSX - Canadian National Stock Exchange - value: col description: COL - Colombo Stock Exchange - value: cph description: CPH - Copenhagen Stock Exchange - value: cse description: CSE - Canadian Securities Exchange - value: cse_cy description: CSE - Cyprus Stock Exchange - value: csx description: CSX - Cambodia Securities Exchange - value: dfm description: DFM - Dubai Financial Market - value: dse description: DSE - Dhaka Stock Exchange - value: dsx description: DSX - Douala Stock Exchange - value: dus description: DUS - Börse Düsseldorf - value: ebr description: EBR - Euronext Brussels - value: egx description: EGX - Egypt Stock Exchange - value: eli description: ELI - Euronext Lisbon - value: epa description: EPA - Euronext Paris - value: etr description: ETR - Deutsche Börse XETRA - value: eurex description: EUREX - Eurex Exchange - value: fra description: FRA - Frankfurt Stock Exchange - value: fwb description: FWB - Börse Frankfurt Stock Exchange - value: gha description: GHA - Ghana Stock Exchange - value: gsx description: GSX - Georgian Stock Exchange - value: gsx_gi description: GSX - Gibraltar Stock Exchange - value: hel description: HEL - Helsinki Stock Exchange - value: hkg description: HKG - Hong Kong Stock Exchange - value: hnx description: HNX - Hanoi Stock Exchange - value: hose description: HOSE - Ho Chi Minh Stock Exchange - value: ice description: ICE - Iceland Stock Exchange - value: idx description: IDX - Indonesia Stock Exchange - value: iex description: IEX - Investors Exchange - value: ifb description: IFB - Iran Fara Bourse - value: ime description: IME - Iran Mercantile Exchange - value: irenex description: IRENEX - Iran Energy Exchange - value: ise description: ISE - Irish Stock Exchange - value: ist description: IST - Istanbul Stock Exchange - value: isx description: ISX - Iraq Stock Exchange - value: jp description: JP - Japan Exchange - value: jsc description: JSC - Belarusian Currency and Stock Exchange - value: jse description: JSE - Johannesburg Stock Exchange - value: jse_jam description: JSE - Jamaica Stock Exchange - value: kase description: KASE - Kazakhstan Stock Exchange - value: klse description: KLSE - Malaysia Stock Exchange - value: kosdaq description: KOSDAQ - Korean Securities Dealers Automated Quotations - value: krx description: KRX - Korea Stock Exchange - value: kse description: KSE - Kuwait Stock Exchange - value: lje description: LJE - Ljubljana Stock Exchange - value: lse description: LSE - London Stock Exchange - value: lsm description: LSM - Libyan Stock Market - value: lsx description: LSX - Lao Securities Exchange - value: luse description: LuSE - Lusaka Securities Exchange - value: luxse description: LuxSE - Luxembourg Stock Exchange - value: mal description: MAL - Malta Stock Exchange - value: mcx description: MCX - Multi Commodity Exchange of India - value: meff description: MEFF - Mercado Spanish Financial Futures Market - value: mnse description: MNSE - Montenegro Stock Exchange - value: moex description: MOEX - Moscow Exchange - value: mse description: MSE - Metropolitan Stock Exchange - value: mse_md description: MSE - Moldova Stock Exchange - value: mse_mk description: MSE - Macedonian Stock Exchange - value: msei description: MSEI - Metropolitan Stock Exchange of India - value: msm description: MSM - Muscat Securities Market - value: mun description: MUN - Börse München - value: nasdaq description: NASDAQ - value: nbo description: NSE - Nairobi Securities Exchange - value: nex description: NEX - NEX Exchange - value: nepse description: NEPSE - Nepal Stock Exchange - value: neeq description: NEEQ - National Equities Exchange and Quotations - value: ngm description: NGM - Nordic Growth Market Exchange - value: nig description: NIG - Nigerian Stock Exchange - value: notc description: NOTC - Norwegian OTC - value: npex description: NPEX - NPEX Stock Exchange - value: nse description: NSE - National Stock Exchange of India - value: nsx description: NSX - National Stock Exchange of Australia - value: nyse description: NYSE - New York Stock Exchange - value: nysearca description: NYSEARCA - NYSE Arca - value: nysemkt description: NYSEAMERICAN - NYSE American - value: nze description: NZE - New Zealand Stock Exchange - value: ose description: OSE - Oslo Stock Exchange - value: otcbb description: OTCBB - FINRA OTC Bulletin Board - value: otcpink description: OTC Pink - value: otcqb description: OTCQB - value: otcqx description: OTCQX - value: pdex description: PDEx - Philippine Dealing Exchange - value: pex description: PEX - Palestine Exchange - value: pfts description: PFTS - PFTS Ukraine Stock Exchange - value: pomsox description: POMSoX - Port Moresby Stock Exchange - value: prg description: PRA - Prague Stock Exchange - value: pse description: PSE - Philippine Stock Exchange - value: psx description: PSX - Pakistan Stock Exchange - value: qse description: QSE - Qatar Stock Exchange - value: rfb description: RFB - Riga Stock Exchange - value: rse description: RSE - Rwanda Stock Exchange - value: rsebl description: RSEBL - Royal Securities Exchange of Bhutan - value: sase description: SASE - Sarajevo Stock Exchange - value: sbx description: SBX - BX Swiss - value: sehk description: SEHK - The Stock Exchange of Hong Kong - value: sem description: SEM - Stock Exchange of Mauritius - value: sgbv description: SGBV - Algiers Stock Exchange - value: sgx description: SGX - Singapore Stock Exchange - value: six description: SIX - SIX Swiss Exchange - value: spbex description: SPBEX - Saint Petersburg Stock Exchange - value: spse description: SPSE - South Pacific Stock Exchange - value: sse description: SSE - Shanghai Stock Exchange - value: ssx description: SSX - Sydney Stock Exchange - value: sto description: STO - Stockholm Stock Exchange - value: stu description: STU - Börse Stuttgart - value: swx description: SWX - SIX Swiss Exchange - value: szse description: SZSE - Shenzhen Stock Exchange - value: tal description: TSE - Tallinn Stock Exchange - value: tfex description: TFEX - Thailand Futures Exchange - value: tise description: TISE - The International Stock Exchange - value: tlv description: TLV - Tel Aviv Stock Exchange - value: tpe description: TWSE - Taiwan Stock Exchange - value: tse_al description: TSE - Tirana Stock Exchange - value: tse_ir description: TSE - Tehran Stock Exchange - value: tsec description: TWO - Taiwan OTC Exchange - value: tsx description: TSX - Toronto Stock Exchange - value: cve description: TSX-V - Toronto TSX Venture Exchange - value: tyo description: TYO - Tokyo Stock Exchange - value: ttse description: TTSE - Trinidad and Tobago Stock Exchange - value: tadawul description: Tadawul - Saudi Stock Exchange - value: use description: USE - Uganda Securities Exchange - value: ux description: UX - Ukrainian Exchange - value: vie description: VIE - Vienna Stock Exchange - value: vmf description: VMF - Faroese Securities Market - value: vse description: VSE - Vancouver Stock Exchange - value: wse description: WSE - Warsaw Stock Exchange - value: ysx description: YSX - Yangon Stock Exchange - value: zamace description: ZAMACE - Zambian Commodity Exchange - value: zse description: ZSE - Zimbabwe Stock Exchange - value: zse_hr description: ZSE - Zagreb Stock Exchange x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes stock_full_symbol: type: string maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] stock_symbol: type: string description: Stock ticker symbol (e.g. AAPL, FB, TWTR) maxLength: 255 x-cb-field-type: text_short x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes PersonFieldId_3: type: string description: Person field ids enum: - aliases - born_on - created_at - description - died_on - entity_def_id - facebook - facet_ids - first_name - gender - identifier - image_id - image_url - last_name - layout_id - linkedin - location_group_identifiers - location_identifiers - middle_name - name - num_current_advisor_jobs - num_current_jobs - num_event_appearances - num_founded_organizations - num_jobs - num_past_advisor_jobs - num_past_jobs - num_portfolio_organizations - permalink - permalink_aliases - primary_job_title - primary_organization - rank - rank_person - short_description - twitter - updated_at - uuid - website - website_url Principal_3: type: object required: - identifier properties: aliases: type: array description: Alternate or previous names for the organization or individual items: type: string maxLength: 255 x-cb-field-type: text_short_multi x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts born_on: type: string description: The birthdate of the person format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte categories: type: array description: Descriptive keyword for an Organization (e.g. SaaS, Android, Cloud Computing, Medical Device) items: $ref: '#/components/schemas/EntityIdentifier_3' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all category_groups: type: array description: Superset of Industries (e.g. Software, Mobile, Health Care) items: $ref: '#/components/schemas/EntityIdentifier_3' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all closed_on: type: object description: The date when the organization is closed allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte company_type: type: string description: 'Whether an Organization is for profit or non-profit * for_profit - For Profit * non_profit - Non-profit' enum: - for_profit - non_profit x-enum-descriptions: - For Profit - Non-profit x-cb-field-enum-values: - value: for_profit description: For Profit - value: non_profit description: Non-profit x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes contact_email: type: string description: General contact email for the organization or person maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte delisted_on: type: object description: The date when the Organization removed its stock from the stock exchange. allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte description: type: string description: Organization or Person Description, Industries, Industry Groups maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains died_on: type: string description: The date when a person died format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte diversity_spotlights: type: array description: Types of diversity represented in an organization, specifically of those who are founding members, currently the CEO, or have check-writing abilities in an investment firm. This feature is in beta and may change with future updates. items: $ref: '#/components/schemas/EntityIdentifier_3' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all entity_def_id: type: string description: '* organization - Organization * person - Person' enum: - organization - person x-enum-descriptions: - Organization - Person x-cb-field-enum-values: - value: organization description: Organization - value: person description: Person x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes exited_on: type: object description: Date the organization was acquired or went public allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte facebook: type: object description: Link to organization/person's Facebook page allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] facet_ids: type: array items: type: string description: '* company - Company * government_entity - Government Entity * investor - Investor * school - School' enum: - company - government_entity - investor - school x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all first_name: type: string description: First name of a Person maxLength: 255 x-cb-field-type: text_short x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts founded_on: type: object description: Date the Organization was founded allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte founder_identifiers: type: array description: Founders of the organization items: $ref: '#/components/schemas/EntityIdentifier_3' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all gender: type: string description: 'A Person''s gender * agender - Agender * androgyne - Androgyne * androgynous - Androgynous * bigender - Bigender * female - Female * ftm - Female to Male (FTM) * gender_fluid - Gender Fluid * gender_nonconforming - Gender Nonconforming * gender_questioning - Gender Questioning * gender_variant - Gender Variant * genderqueer - Genderqueer * male - Male * mtf - Male to Female (MTF) * neutrois - Neutrois * non_binary - Non-Binary * not_provided - Prefer not to identify * other - Other * pangender - Pangender * transfeminine - Transfeminine * transgender_female - Transgender Female * transgender_male - Transgender Male * transgender_man - Transgender Man * transgender_person - Transgender Person * transgender_woman - Transgender Woman * transmasculine - Transmasculine * transsexual_female - Transsexual Female * transsexual_male - Transsexual Male * transsexual_man - Transsexual Man * transsexual_person - Transsexual Person * transsexual_woman - Transsexual Woman * two_spirit - Two-Spirit' enum: - female - male - agender - androgyne - androgynous - bigender - ftm - mtf - gender_fluid - gender_nonconforming - gender_questioning - gender_variant - genderqueer - non_binary - neutrois - pangender - transgender_person - transgender_female - transgender_woman - transgender_male - transgender_man - transfeminine - transmasculine - transsexual_person - transsexual_female - transsexual_woman - transsexual_male - transsexual_man - two_spirit - other - not_provided x-enum-descriptions: - Female - Male - Agender - Androgyne - Androgynous - Bigender - Female to Male (FTM) - Male to Female (MTF) - Gender Fluid - Gender Nonconforming - Gender Questioning - Gender Variant - Genderqueer - Non-Binary - Neutrois - Pangender - Transgender Person - Transgender Female - Transgender Woman - Transgender Male - Transgender Man - Transfeminine - Transmasculine - Transsexual Person - Transsexual Female - Transsexual Woman - Transsexual Male - Transsexual Man - Two-Spirit - Other - Prefer not to identify x-cb-field-enum-values: - value: female description: Female - value: male description: Male - value: agender description: Agender - value: androgyne description: Androgyne - value: androgynous description: Androgynous - value: bigender description: Bigender - value: ftm description: Female to Male (FTM) - value: mtf description: Male to Female (MTF) - value: gender_fluid description: Gender Fluid - value: gender_nonconforming description: Gender Nonconforming - value: gender_questioning description: Gender Questioning - value: gender_variant description: Gender Variant - value: genderqueer description: Genderqueer - value: non_binary description: Non-Binary - value: neutrois description: Neutrois - value: pangender description: Pangender - value: transgender_person description: Transgender Person - value: transgender_female description: Transgender Female - value: transgender_woman description: Transgender Woman - value: transgender_male description: Transgender Male - value: transgender_man description: Transgender Man - value: transfeminine description: Transfeminine - value: transmasculine description: Transmasculine - value: transsexual_person description: Transsexual Person - value: transsexual_female description: Transsexual Female - value: transsexual_woman description: Transsexual Woman - value: transsexual_male description: Transsexual Male - value: transsexual_man description: Transsexual Man - value: two_spirit description: Two-Spirit - value: other description: Other - value: not_provided description: Prefer not to identify x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes hub_tags: type: array description: Tags representing special attributes of organizations that are used in Hubs items: type: string description: 'Tags representing special attributes of organizations that are used in Hubs * cbvp - Crunchbase Venture Program * emerging_unicorn - Emerging Unicorn * exited_unicorn - Exited Unicorn * pledge_one_percent - Pledge 1% * unicorn - Unicorn' enum: - cbvp - pledge_one_percent - unicorn - emerging_unicorn - exited_unicorn x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all identifier: type: object description: Name of the Organization or Person allOf: - $ref: '#/components/schemas/EntityIdentifier_3' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts image_id: type: string description: The profile image of this organization or person on Crunchbase maxLength: 255 x-cb-field-type: image_id x-cb-searchable: false x-cb-search-operators: [] image_url: type: string description: The url of the profile image maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] last_name: type: string description: Last name of a Person maxLength: 255 x-cb-field-type: text_short x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts layout_id: type: string enum: - school - investor x-enum-descriptions: - school - investor x-cb-field-enum-values: [] x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes linkedin: type: object description: Link to organization/person's LinkedIn page allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] location_group_identifiers: type: array description: Where the principal is located (e.g. San Francisco Bay Area, Silicon Valley) items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all location_identifiers: type: array description: Where the organization is headquartered items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all name: type: string maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] num_alumni: type: number description: Total number of alumni x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_employees_enum: type: string description: 'Total number of Employees * c_00001_00010 - 1-10 * c_00011_00050 - 11-50 * c_00051_00100 - 51-100 * c_00101_00250 - 101-250 * c_00251_00500 - 251-500 * c_00501_01000 - 501-1000 * c_01001_05000 - 1001-5000 * c_05001_10000 - 5001-10000 * c_10001_max - 10001+' enum: - c_00001_00010 - c_00011_00050 - c_00051_00100 - c_00101_00250 - c_00251_00500 - c_00501_01000 - c_01001_05000 - c_05001_10000 - c_10001_max x-enum-descriptions: - 1-10 - 11-50 - 51-100 - 101-250 - 251-500 - 501-1000 - 1001-5000 - 5001-10000 - 10001+ x-cb-field-enum-values: - value: c_00001_00010 description: 1-10 - value: c_00011_00050 description: 11-50 - value: c_00051_00100 description: 51-100 - value: c_00101_00250 description: 101-250 - value: c_00251_00500 description: 251-500 - value: c_00501_01000 description: 501-1000 - value: c_01001_05000 description: 1001-5000 - value: c_05001_10000 description: 5001-10000 - value: c_10001_max description: 10001+ x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes num_enrollments: type: string description: 'Total number of Enrollments * c_00001_00010 - 1-10 * c_00011_00050 - 11-50 * c_00051_00100 - 51-100 * c_00101_00250 - 101-250 * c_00251_00500 - 251-500 * c_00501_01000 - 501-1000 * c_01001_05000 - 1001-5000 * c_05001_10000 - 5001-10000 * c_10001_max - 10001+' enum: - c_00001_00010 - c_00011_00050 - c_00051_00100 - c_00101_00250 - c_00251_00500 - c_00501_01000 - c_01001_05000 - c_05001_10000 - c_10001_max x-enum-descriptions: - 1-10 - 11-50 - 51-100 - 101-250 - 251-500 - 501-1000 - 1001-5000 - 5001-10000 - 10001+ x-cb-field-enum-values: - value: c_00001_00010 description: 1-10 - value: c_00011_00050 description: 11-50 - value: c_00051_00100 description: 51-100 - value: c_00101_00250 description: 101-250 - value: c_00251_00500 description: 251-500 - value: c_00501_01000 description: 501-1000 - value: c_01001_05000 description: 1001-5000 - value: c_05001_10000 description: 5001-10000 - value: c_10001_max description: 10001+ x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes num_event_appearances: type: number description: Total number of events An Organization or Person appeared in x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_founded_organizations: type: number description: Number of Organizations that the Person founded x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_jobs: type: number description: Total number of Jobs the person has x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_portfolio_organizations: type: number description: Total number of portfolio organizations x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq operating_status: type: string description: 'Operating Status of Organization e.g. Active, Closed * active - Active * closed - Closed' enum: - active - closed x-enum-descriptions: - Active - Closed x-cb-field-enum-values: - value: active description: Active - value: closed description: Closed x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes permalink: type: string maxLength: 255 x-cb-field-type: permalink x-cb-searchable: false x-cb-search-operators: [] permalink_aliases: type: array description: Alternative aliases to the primary permalink of the organization or person items: type: string maxLength: 255 x-cb-field-type: text_exact_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all phone_number: type: string description: General phone number of the organization or person maxLength: 255 x-cb-field-type: text_exact x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes primary_job_title: type: string description: The person's primary job title (e.g. CEO, Chief Architect, Product Manager) maxLength: 255 x-cb-field-type: text_short x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts primary_organization: type: object description: The organization associated to the person's primary job allOf: - $ref: '#/components/schemas/EntityIdentifier_3' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts program_application_deadline: type: string description: The deadline for applying to the Accelerator Program format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte program_duration: type: number description: The duration of the Acceleration Program in number of weeks x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq program_type: type: string description: 'The type of Accelerator Program (e.g. On-Site, Online) * on_site - On-Site * online - Online' enum: - on_site - online x-enum-descriptions: - On-Site - Online x-cb-field-enum-values: - value: on_site description: On-Site - value: online description: Online x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes rank: type: number description: Algorithmic rank assigned to the top profiles on Crunchbase x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq school_method: type: string description: 'The type of School Method (e.g. On Campus, Online) * on_compus - On Campus * online - Online * online_and_on_campus - Online and On Campus' enum: - on_compus - online - online_and_on_campus x-enum-descriptions: - On Campus - Online - Online and On Campus x-cb-field-enum-values: - value: on_compus description: On Campus - value: online description: Online - value: online_and_on_campus description: Online and On Campus x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes school_program: type: string description: 'The type of School Program (e.g. Bootcamp, Four Year University) * bootcamp - Bootcamp * community_college - Community College * four_year_university - Four Year University * graduate_university - Graduate University * high_school - High School * trade_school - Trade School * two_year_university - Two Year University' enum: - four_year_university - two_year_university - graduate_university - bootcamp - trade_school - community_college - high_school x-enum-descriptions: - Four Year University - Two Year University - Graduate University - Bootcamp - Trade School - Community College - High School x-cb-field-enum-values: - value: four_year_university description: Four Year University - value: two_year_university description: Two Year University - value: graduate_university description: Graduate University - value: bootcamp description: Bootcamp - value: trade_school description: Trade School - value: community_college description: Community College - value: high_school description: High School x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes school_type: type: string description: 'The type of School (e.g. Public, Private) * for_profit_private - Private * non_profit_private - Private (Non-Profit) * public - Public' enum: - public - for_profit_private - non_profit_private x-enum-descriptions: - Public - Private - Private (Non-Profit) x-cb-field-enum-values: - value: public description: Public - value: for_profit_private description: Private - value: non_profit_private description: Private (Non-Profit) x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes short_description: type: string description: Text of Organization or Person Description, Industries, and Industry Groups maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains status: type: string description: 'Status of Organization e.g. Operating, Closed, Acquired, IPO * closed - Closed * ipo - IPO * operating - Operating * was_acquired - Was Acquired' enum: - closed - ipo - operating - was_acquired x-enum-descriptions: - Closed - IPO - Operating - Was Acquired x-cb-field-enum-values: - value: closed description: Closed - value: ipo description: IPO - value: operating description: Operating - value: was_acquired description: Was Acquired x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes stock_exchange_symbol: type: string description: 'Stock exchange where the Organization is listed e.g. NYSE, NASDAQ * adx - ADX - Abu Dhabi Securities Exchange * afx - AFX - Afghanistan Stock Exchange * altx - ALTX - ALTX East Africa Exchange * amex - AMEX - American Stock Exchange * ams - AMS - Euronext Amsterdam * amx - AMX - Armenia Securities Exchange * asce - ASCE - Abuja Securities and Commodities Exchange * asx - ASX - Australian Securities Exchange * ath - ATH - Athens Stock Exchange * bcba - BCBA - Buenos Aires Stock Exchange * bdp - BDP - Budapest Stock Exchange * belex - BELEX - Belgrade Stock Exchange * ber - BER - Berliner Börse * bfb - BFB - Baku Stock Exchange * bit - BIT - Italian Stock Exchange * bkk - BKK - Thailand Stock Exchange * blse - BLSE - Banja Luka Stock Exchange * bme - BME - Madrid Stock Exchange * bmv - BMV - Mexican Stock Exchange * bom - BOM - Bombay Stock Exchange * brvm - BRVM - Regional Securities Exchange SA * bse - BSE - Bulgarian Stock Exchange * bse_lb - BSE - Beirut Stock Exchange * bsse - BSSE - Bratislava Stock Exchange * bsx - BSX - Bermuda Stock Exchange * bvb - BVB - Bucharest Stock Exchange * bvc - BVC - Colombian Stock Exchange * bvfb - BVFB - Belarusian Currency and Stock Exchange * bvm - BVM - Montevideo Stock Exchange * bvmf - B3 - Brazil Stock Exchange and OTC Market * bvmt - BVMT - Tunis Stock Exchange * bx - BX - Berne Stock Exchange * cas - CAS - Casablanca Stock Exchange * cise - CISE - Channel Islands Stock Exchange * cnsx - CNSX - Canadian National Stock Exchange * col - COL - Colombo Stock Exchange * cph - CPH - Copenhagen Stock Exchange * cse - CSE - Canadian Securities Exchange * cse_cy - CSE - Cyprus Stock Exchange * csx - CSX - Cambodia Securities Exchange * cve - TSX-V - Toronto TSX Venture Exchange * dfm - DFM - Dubai Financial Market * dse - DSE - Dhaka Stock Exchange * dsx - DSX - Douala Stock Exchange * dus - DUS - Börse Düsseldorf * ebr - EBR - Euronext Brussels * egx - EGX - Egypt Stock Exchange * eli - ELI - Euronext Lisbon * epa - EPA - Euronext Paris * etr - ETR - Deutsche Börse XETRA * eurex - EUREX - Eurex Exchange * fra - FRA - Frankfurt Stock Exchange * fwb - FWB - Börse Frankfurt Stock Exchange * gha - GHA - Ghana Stock Exchange * gsx - GSX - Georgian Stock Exchange * gsx_gi - GSX - Gibraltar Stock Exchange * hel - HEL - Helsinki Stock Exchange * hkg - HKG - Hong Kong Stock Exchange * hnx - HNX - Hanoi Stock Exchange * hose - HOSE - Ho Chi Minh Stock Exchange * ice - ICE - Iceland Stock Exchange * idx - IDX - Indonesia Stock Exchange * iex - IEX - Investors Exchange * ifb - IFB - Iran Fara Bourse * ime - IME - Iran Mercantile Exchange * irenex - IRENEX - Iran Energy Exchange * ise - ISE - Irish Stock Exchange * ist - IST - Istanbul Stock Exchange * isx - ISX - Iraq Stock Exchange * jp - JP - Japan Exchange * jsc - JSC - Belarusian Currency and Stock Exchange * jse - JSE - Johannesburg Stock Exchange * jse_jam - JSE - Jamaica Stock Exchange * kase - KASE - Kazakhstan Stock Exchange * klse - KLSE - Malaysia Stock Exchange * kosdaq - KOSDAQ - Korean Securities Dealers Automated Quotations * krx - KRX - Korea Stock Exchange * kse - KSE - Kuwait Stock Exchange * lje - LJE - Ljubljana Stock Exchange * lse - LSE - London Stock Exchange * lsm - LSM - Libyan Stock Market * lsx - LSX - Lao Securities Exchange * luse - LuSE - Lusaka Securities Exchange * luxse - LuxSE - Luxembourg Stock Exchange * mal - MAL - Malta Stock Exchange * mcx - MCX - Multi Commodity Exchange of India * meff - MEFF - Mercado Spanish Financial Futures Market * mnse - MNSE - Montenegro Stock Exchange * moex - MOEX - Moscow Exchange * mse - MSE - Metropolitan Stock Exchange * mse_md - MSE - Moldova Stock Exchange * mse_mk - MSE - Macedonian Stock Exchange * msei - MSEI - Metropolitan Stock Exchange of India * msm - MSM - Muscat Securities Market * mun - MUN - Börse München * nasdaq - NASDAQ * nbo - NSE - Nairobi Securities Exchange * neeq - NEEQ - National Equities Exchange and Quotations * nepse - NEPSE - Nepal Stock Exchange * nex - NEX - NEX Exchange * ngm - NGM - Nordic Growth Market Exchange * nig - NIG - Nigerian Stock Exchange * notc - NOTC - Norwegian OTC * npex - NPEX - NPEX Stock Exchange * nse - NSE - National Stock Exchange of India * nsx - NSX - National Stock Exchange of Australia * nyse - NYSE - New York Stock Exchange * nysearca - NYSEARCA - NYSE Arca * nysemkt - NYSEAMERICAN - NYSE American * nze - NZE - New Zealand Stock Exchange * ose - OSE - Oslo Stock Exchange * otcbb - OTCBB - FINRA OTC Bulletin Board * otcpink - OTC Pink * otcqb - OTCQB * otcqx - OTCQX * pdex - PDEx - Philippine Dealing Exchange * pex - PEX - Palestine Exchange * pfts - PFTS - PFTS Ukraine Stock Exchange * pomsox - POMSoX - Port Moresby Stock Exchange * prg - PRA - Prague Stock Exchange * pse - PSE - Philippine Stock Exchange * psx - PSX - Pakistan Stock Exchange * qse - QSE - Qatar Stock Exchange * rfb - RFB - Riga Stock Exchange * rse - RSE - Rwanda Stock Exchange * rsebl - RSEBL - Royal Securities Exchange of Bhutan * sase - SASE - Sarajevo Stock Exchange * sbx - SBX - BX Swiss * sehk - SEHK - The Stock Exchange of Hong Kong * sem - SEM - Stock Exchange of Mauritius * sgbv - SGBV - Algiers Stock Exchange * sgx - SGX - Singapore Stock Exchange * six - SIX - SIX Swiss Exchange * spbex - SPBEX - Saint Petersburg Stock Exchange * spse - SPSE - South Pacific Stock Exchange * sse - SSE - Shanghai Stock Exchange * ssx - SSX - Sydney Stock Exchange * sto - STO - Stockholm Stock Exchange * stu - STU - Börse Stuttgart * swx - SWX - SIX Swiss Exchange * szse - SZSE - Shenzhen Stock Exchange * tadawul - Tadawul - Saudi Stock Exchange * tal - TSE - Tallinn Stock Exchange * tfex - TFEX - Thailand Futures Exchange * tise - TISE - The International Stock Exchange * tlv - TLV - Tel Aviv Stock Exchange * tpe - TWSE - Taiwan Stock Exchange * tse_al - TSE - Tirana Stock Exchange * tse_ir - TSE - Tehran Stock Exchange * tsec - TWO - Taiwan OTC Exchange * tsx - TSX - Toronto Stock Exchange * ttse - TTSE - Trinidad and Tobago Stock Exchange * tyo - TYO - Tokyo Stock Exchange * use - USE - Uganda Securities Exchange * ux - UX - Ukrainian Exchange * vie - VIE - Vienna Stock Exchange * vmf - VMF - Faroese Securities Market * vse - VSE - Vancouver Stock Exchange * wse - WSE - Warsaw Stock Exchange * ysx - YSX - Yangon Stock Exchange * zamace - ZAMACE - Zambian Commodity Exchange * zse - ZSE - Zimbabwe Stock Exchange * zse_hr - ZSE - Zagreb Stock Exchange' enum: - adx - afx - altx - amx - amex - ams - asce - asx - ath - bcba - bdp - belex - ber - bfb - bit - bkk - blse - bme - bmv - bom - brvm - bse - bse_lb - bsse - bsx - bvb - bvc - bvfb - bvm - bvmf - bvmt - bx - cas - cise - cnsx - col - cph - cse - cse_cy - csx - dfm - dse - dsx - dus - ebr - egx - eli - epa - etr - eurex - fra - fwb - gha - gsx - gsx_gi - hel - hkg - hnx - hose - ice - idx - iex - ifb - ime - irenex - ise - ist - isx - jp - jsc - jse - jse_jam - kase - klse - kosdaq - krx - kse - lje - lse - lsm - lsx - luse - luxse - mal - mcx - meff - mnse - moex - mse - mse_md - mse_mk - msei - msm - mun - nasdaq - nbo - nex - nepse - neeq - ngm - nig - notc - npex - nse - nsx - nyse - nysearca - nysemkt - nze - ose - otcbb - otcpink - otcqb - otcqx - pdex - pex - pfts - pomsox - prg - pse - psx - qse - rfb - rse - rsebl - sase - sbx - sehk - sem - sgbv - sgx - six - spbex - spse - sse - ssx - sto - stu - swx - szse - tal - tfex - tise - tlv - tpe - tse_al - tse_ir - tsec - tsx - cve - tyo - ttse - tadawul - use - ux - vie - vmf - vse - wse - ysx - zamace - zse - zse_hr x-enum-descriptions: - ADX - Abu Dhabi Securities Exchange - AFX - Afghanistan Stock Exchange - ALTX - ALTX East Africa Exchange - AMX - Armenia Securities Exchange - AMEX - American Stock Exchange - AMS - Euronext Amsterdam - ASCE - Abuja Securities and Commodities Exchange - ASX - Australian Securities Exchange - ATH - Athens Stock Exchange - BCBA - Buenos Aires Stock Exchange - BDP - Budapest Stock Exchange - BELEX - Belgrade Stock Exchange - BER - Berliner Börse - BFB - Baku Stock Exchange - BIT - Italian Stock Exchange - BKK - Thailand Stock Exchange - BLSE - Banja Luka Stock Exchange - BME - Madrid Stock Exchange - BMV - Mexican Stock Exchange - BOM - Bombay Stock Exchange - BRVM - Regional Securities Exchange SA - BSE - Bulgarian Stock Exchange - BSE - Beirut Stock Exchange - BSSE - Bratislava Stock Exchange - BSX - Bermuda Stock Exchange - BVB - Bucharest Stock Exchange - BVC - Colombian Stock Exchange - BVFB - Belarusian Currency and Stock Exchange - BVM - Montevideo Stock Exchange - B3 - Brazil Stock Exchange and OTC Market - BVMT - Tunis Stock Exchange - BX - Berne Stock Exchange - CAS - Casablanca Stock Exchange - CISE - Channel Islands Stock Exchange - CNSX - Canadian National Stock Exchange - COL - Colombo Stock Exchange - CPH - Copenhagen Stock Exchange - CSE - Canadian Securities Exchange - CSE - Cyprus Stock Exchange - CSX - Cambodia Securities Exchange - DFM - Dubai Financial Market - DSE - Dhaka Stock Exchange - DSX - Douala Stock Exchange - DUS - Börse Düsseldorf - EBR - Euronext Brussels - EGX - Egypt Stock Exchange - ELI - Euronext Lisbon - EPA - Euronext Paris - ETR - Deutsche Börse XETRA - EUREX - Eurex Exchange - FRA - Frankfurt Stock Exchange - FWB - Börse Frankfurt Stock Exchange - GHA - Ghana Stock Exchange - GSX - Georgian Stock Exchange - GSX - Gibraltar Stock Exchange - HEL - Helsinki Stock Exchange - HKG - Hong Kong Stock Exchange - HNX - Hanoi Stock Exchange - HOSE - Ho Chi Minh Stock Exchange - ICE - Iceland Stock Exchange - IDX - Indonesia Stock Exchange - IEX - Investors Exchange - IFB - Iran Fara Bourse - IME - Iran Mercantile Exchange - IRENEX - Iran Energy Exchange - ISE - Irish Stock Exchange - IST - Istanbul Stock Exchange - ISX - Iraq Stock Exchange - JP - Japan Exchange - JSC - Belarusian Currency and Stock Exchange - JSE - Johannesburg Stock Exchange - JSE - Jamaica Stock Exchange - KASE - Kazakhstan Stock Exchange - KLSE - Malaysia Stock Exchange - KOSDAQ - Korean Securities Dealers Automated Quotations - KRX - Korea Stock Exchange - KSE - Kuwait Stock Exchange - LJE - Ljubljana Stock Exchange - LSE - London Stock Exchange - LSM - Libyan Stock Market - LSX - Lao Securities Exchange - LuSE - Lusaka Securities Exchange - LuxSE - Luxembourg Stock Exchange - MAL - Malta Stock Exchange - MCX - Multi Commodity Exchange of India - MEFF - Mercado Spanish Financial Futures Market - MNSE - Montenegro Stock Exchange - MOEX - Moscow Exchange - MSE - Metropolitan Stock Exchange - MSE - Moldova Stock Exchange - MSE - Macedonian Stock Exchange - MSEI - Metropolitan Stock Exchange of India - MSM - Muscat Securities Market - MUN - Börse München - NASDAQ - NSE - Nairobi Securities Exchange - NEX - NEX Exchange - NEPSE - Nepal Stock Exchange - NEEQ - National Equities Exchange and Quotations - NGM - Nordic Growth Market Exchange - NIG - Nigerian Stock Exchange - NOTC - Norwegian OTC - NPEX - NPEX Stock Exchange - NSE - National Stock Exchange of India - NSX - National Stock Exchange of Australia - NYSE - New York Stock Exchange - NYSEARCA - NYSE Arca - NYSEAMERICAN - NYSE American - NZE - New Zealand Stock Exchange - OSE - Oslo Stock Exchange - OTCBB - FINRA OTC Bulletin Board - OTC Pink - OTCQB - OTCQX - PDEx - Philippine Dealing Exchange - PEX - Palestine Exchange - PFTS - PFTS Ukraine Stock Exchange - POMSoX - Port Moresby Stock Exchange - PRA - Prague Stock Exchange - PSE - Philippine Stock Exchange - PSX - Pakistan Stock Exchange - QSE - Qatar Stock Exchange - RFB - Riga Stock Exchange - RSE - Rwanda Stock Exchange - RSEBL - Royal Securities Exchange of Bhutan - SASE - Sarajevo Stock Exchange - SBX - BX Swiss - SEHK - The Stock Exchange of Hong Kong - SEM - Stock Exchange of Mauritius - SGBV - Algiers Stock Exchange - SGX - Singapore Stock Exchange - SIX - SIX Swiss Exchange - SPBEX - Saint Petersburg Stock Exchange - SPSE - South Pacific Stock Exchange - SSE - Shanghai Stock Exchange - SSX - Sydney Stock Exchange - STO - Stockholm Stock Exchange - STU - Börse Stuttgart - SWX - SIX Swiss Exchange - SZSE - Shenzhen Stock Exchange - TSE - Tallinn Stock Exchange - TFEX - Thailand Futures Exchange - TISE - The International Stock Exchange - TLV - Tel Aviv Stock Exchange - TWSE - Taiwan Stock Exchange - TSE - Tirana Stock Exchange - TSE - Tehran Stock Exchange - TWO - Taiwan OTC Exchange - TSX - Toronto Stock Exchange - TSX-V - Toronto TSX Venture Exchange - TYO - Tokyo Stock Exchange - TTSE - Trinidad and Tobago Stock Exchange - Tadawul - Saudi Stock Exchange - USE - Uganda Securities Exchange - UX - Ukrainian Exchange - VIE - Vienna Stock Exchange - VMF - Faroese Securities Market - VSE - Vancouver Stock Exchange - WSE - Warsaw Stock Exchange - YSX - Yangon Stock Exchange - ZAMACE - Zambian Commodity Exchange - ZSE - Zimbabwe Stock Exchange - ZSE - Zagreb Stock Exchange x-cb-field-enum-values: - value: adx description: ADX - Abu Dhabi Securities Exchange - value: afx description: AFX - Afghanistan Stock Exchange - value: altx description: ALTX - ALTX East Africa Exchange - value: amx description: AMX - Armenia Securities Exchange - value: amex description: AMEX - American Stock Exchange - value: ams description: AMS - Euronext Amsterdam - value: asce description: ASCE - Abuja Securities and Commodities Exchange - value: asx description: ASX - Australian Securities Exchange - value: ath description: ATH - Athens Stock Exchange - value: bcba description: BCBA - Buenos Aires Stock Exchange - value: bdp description: BDP - Budapest Stock Exchange - value: belex description: BELEX - Belgrade Stock Exchange - value: ber description: BER - Berliner Börse - value: bfb description: BFB - Baku Stock Exchange - value: bit description: BIT - Italian Stock Exchange - value: bkk description: BKK - Thailand Stock Exchange - value: blse description: BLSE - Banja Luka Stock Exchange - value: bme description: BME - Madrid Stock Exchange - value: bmv description: BMV - Mexican Stock Exchange - value: bom description: BOM - Bombay Stock Exchange - value: brvm description: BRVM - Regional Securities Exchange SA - value: bse description: BSE - Bulgarian Stock Exchange - value: bse_lb description: BSE - Beirut Stock Exchange - value: bsse description: BSSE - Bratislava Stock Exchange - value: bsx description: BSX - Bermuda Stock Exchange - value: bvb description: BVB - Bucharest Stock Exchange - value: bvc description: BVC - Colombian Stock Exchange - value: bvfb description: BVFB - Belarusian Currency and Stock Exchange - value: bvm description: BVM - Montevideo Stock Exchange - value: bvmf description: B3 - Brazil Stock Exchange and OTC Market - value: bvmt description: BVMT - Tunis Stock Exchange - value: bx description: BX - Berne Stock Exchange - value: cas description: CAS - Casablanca Stock Exchange - value: cise description: CISE - Channel Islands Stock Exchange - value: cnsx description: CNSX - Canadian National Stock Exchange - value: col description: COL - Colombo Stock Exchange - value: cph description: CPH - Copenhagen Stock Exchange - value: cse description: CSE - Canadian Securities Exchange - value: cse_cy description: CSE - Cyprus Stock Exchange - value: csx description: CSX - Cambodia Securities Exchange - value: dfm description: DFM - Dubai Financial Market - value: dse description: DSE - Dhaka Stock Exchange - value: dsx description: DSX - Douala Stock Exchange - value: dus description: DUS - Börse Düsseldorf - value: ebr description: EBR - Euronext Brussels - value: egx description: EGX - Egypt Stock Exchange - value: eli description: ELI - Euronext Lisbon - value: epa description: EPA - Euronext Paris - value: etr description: ETR - Deutsche Börse XETRA - value: eurex description: EUREX - Eurex Exchange - value: fra description: FRA - Frankfurt Stock Exchange - value: fwb description: FWB - Börse Frankfurt Stock Exchange - value: gha description: GHA - Ghana Stock Exchange - value: gsx description: GSX - Georgian Stock Exchange - value: gsx_gi description: GSX - Gibraltar Stock Exchange - value: hel description: HEL - Helsinki Stock Exchange - value: hkg description: HKG - Hong Kong Stock Exchange - value: hnx description: HNX - Hanoi Stock Exchange - value: hose description: HOSE - Ho Chi Minh Stock Exchange - value: ice description: ICE - Iceland Stock Exchange - value: idx description: IDX - Indonesia Stock Exchange - value: iex description: IEX - Investors Exchange - value: ifb description: IFB - Iran Fara Bourse - value: ime description: IME - Iran Mercantile Exchange - value: irenex description: IRENEX - Iran Energy Exchange - value: ise description: ISE - Irish Stock Exchange - value: ist description: IST - Istanbul Stock Exchange - value: isx description: ISX - Iraq Stock Exchange - value: jp description: JP - Japan Exchange - value: jsc description: JSC - Belarusian Currency and Stock Exchange - value: jse description: JSE - Johannesburg Stock Exchange - value: jse_jam description: JSE - Jamaica Stock Exchange - value: kase description: KASE - Kazakhstan Stock Exchange - value: klse description: KLSE - Malaysia Stock Exchange - value: kosdaq description: KOSDAQ - Korean Securities Dealers Automated Quotations - value: krx description: KRX - Korea Stock Exchange - value: kse description: KSE - Kuwait Stock Exchange - value: lje description: LJE - Ljubljana Stock Exchange - value: lse description: LSE - London Stock Exchange - value: lsm description: LSM - Libyan Stock Market - value: lsx description: LSX - Lao Securities Exchange - value: luse description: LuSE - Lusaka Securities Exchange - value: luxse description: LuxSE - Luxembourg Stock Exchange - value: mal description: MAL - Malta Stock Exchange - value: mcx description: MCX - Multi Commodity Exchange of India - value: meff description: MEFF - Mercado Spanish Financial Futures Market - value: mnse description: MNSE - Montenegro Stock Exchange - value: moex description: MOEX - Moscow Exchange - value: mse description: MSE - Metropolitan Stock Exchange - value: mse_md description: MSE - Moldova Stock Exchange - value: mse_mk description: MSE - Macedonian Stock Exchange - value: msei description: MSEI - Metropolitan Stock Exchange of India - value: msm description: MSM - Muscat Securities Market - value: mun description: MUN - Börse München - value: nasdaq description: NASDAQ - value: nbo description: NSE - Nairobi Securities Exchange - value: nex description: NEX - NEX Exchange - value: nepse description: NEPSE - Nepal Stock Exchange - value: neeq description: NEEQ - National Equities Exchange and Quotations - value: ngm description: NGM - Nordic Growth Market Exchange - value: nig description: NIG - Nigerian Stock Exchange - value: notc description: NOTC - Norwegian OTC - value: npex description: NPEX - NPEX Stock Exchange - value: nse description: NSE - National Stock Exchange of India - value: nsx description: NSX - National Stock Exchange of Australia - value: nyse description: NYSE - New York Stock Exchange - value: nysearca description: NYSEARCA - NYSE Arca - value: nysemkt description: NYSEAMERICAN - NYSE American - value: nze description: NZE - New Zealand Stock Exchange - value: ose description: OSE - Oslo Stock Exchange - value: otcbb description: OTCBB - FINRA OTC Bulletin Board - value: otcpink description: OTC Pink - value: otcqb description: OTCQB - value: otcqx description: OTCQX - value: pdex description: PDEx - Philippine Dealing Exchange - value: pex description: PEX - Palestine Exchange - value: pfts description: PFTS - PFTS Ukraine Stock Exchange - value: pomsox description: POMSoX - Port Moresby Stock Exchange - value: prg description: PRA - Prague Stock Exchange - value: pse description: PSE - Philippine Stock Exchange - value: psx description: PSX - Pakistan Stock Exchange - value: qse description: QSE - Qatar Stock Exchange - value: rfb description: RFB - Riga Stock Exchange - value: rse description: RSE - Rwanda Stock Exchange - value: rsebl description: RSEBL - Royal Securities Exchange of Bhutan - value: sase description: SASE - Sarajevo Stock Exchange - value: sbx description: SBX - BX Swiss - value: sehk description: SEHK - The Stock Exchange of Hong Kong - value: sem description: SEM - Stock Exchange of Mauritius - value: sgbv description: SGBV - Algiers Stock Exchange - value: sgx description: SGX - Singapore Stock Exchange - value: six description: SIX - SIX Swiss Exchange - value: spbex description: SPBEX - Saint Petersburg Stock Exchange - value: spse description: SPSE - South Pacific Stock Exchange - value: sse description: SSE - Shanghai Stock Exchange - value: ssx description: SSX - Sydney Stock Exchange - value: sto description: STO - Stockholm Stock Exchange - value: stu description: STU - Börse Stuttgart - value: swx description: SWX - SIX Swiss Exchange - value: szse description: SZSE - Shenzhen Stock Exchange - value: tal description: TSE - Tallinn Stock Exchange - value: tfex description: TFEX - Thailand Futures Exchange - value: tise description: TISE - The International Stock Exchange - value: tlv description: TLV - Tel Aviv Stock Exchange - value: tpe description: TWSE - Taiwan Stock Exchange - value: tse_al description: TSE - Tirana Stock Exchange - value: tse_ir description: TSE - Tehran Stock Exchange - value: tsec description: TWO - Taiwan OTC Exchange - value: tsx description: TSX - Toronto Stock Exchange - value: cve description: TSX-V - Toronto TSX Venture Exchange - value: tyo description: TYO - Tokyo Stock Exchange - value: ttse description: TTSE - Trinidad and Tobago Stock Exchange - value: tadawul description: Tadawul - Saudi Stock Exchange - value: use description: USE - Uganda Securities Exchange - value: ux description: UX - Ukrainian Exchange - value: vie description: VIE - Vienna Stock Exchange - value: vmf description: VMF - Faroese Securities Market - value: vse description: VSE - Vancouver Stock Exchange - value: wse description: WSE - Warsaw Stock Exchange - value: ysx description: YSX - Yangon Stock Exchange - value: zamace description: ZAMACE - Zambian Commodity Exchange - value: zse description: ZSE - Zimbabwe Stock Exchange - value: zse_hr description: ZSE - Zagreb Stock Exchange x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes stock_symbol: type: object description: Stock ticker symbol (e.g. AAPL, FB, TWTR) allOf: - $ref: '#/components/schemas/EntityIdentifier_3' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts twitter: type: object description: Link to an organization/person's X page allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes website: type: object description: Link to homepage allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] website_url: type: string description: Link to homepage maxLength: 8192 x-cb-field-type: url x-cb-searchable: true x-cb-search-operators: - domain_blank - domain_eq - domain_includes - not_domain_eq - not_domain_includes went_public_on: type: string description: The date when the Organization went public format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte PersonEntity_3: type: object properties: cards: type: object properties: degrees: type: array items: $ref: '#/components/schemas/Degree' event_appearances: type: array items: $ref: '#/components/schemas/EventAppearance' fields: $ref: '#/components/schemas/Person_3' founded_organizations: type: array items: $ref: '#/components/schemas/Organization_3' jobs: type: array items: $ref: '#/components/schemas/Job' primary_job: type: array items: $ref: '#/components/schemas/Job' primary_organization: type: array items: $ref: '#/components/schemas/Organization_3' properties: $ref: '#/components/schemas/Person_3' OwnershipEntity_3: type: object properties: cards: type: object properties: child_organization: type: array items: $ref: '#/components/schemas/Organization_3' fields: $ref: '#/components/schemas/Ownership' parent_organization: type: array items: $ref: '#/components/schemas/Organization_3' properties: $ref: '#/components/schemas/Ownership' EventEntity_3: type: object properties: cards: type: object properties: address: type: array items: $ref: '#/components/schemas/Address' appearances: type: array items: $ref: '#/components/schemas/EventAppearance' contestants: type: array items: $ref: '#/components/schemas/Principal_3' exhibitors: type: array items: $ref: '#/components/schemas/Principal_3' fields: $ref: '#/components/schemas/Event' organizers: type: array items: $ref: '#/components/schemas/Principal_3' speakers: type: array items: $ref: '#/components/schemas/Principal_3' sponsors: type: array items: $ref: '#/components/schemas/Principal_3' properties: $ref: '#/components/schemas/Event' Person_3: type: object required: - identifier properties: aliases: type: array description: Alternate or previous names for the individual items: type: string maxLength: 255 x-cb-field-type: text_short_multi x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts born_on: type: string description: The birthdate of the person format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte description: type: string description: Text from a Person's biography maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains died_on: type: string description: The date when a person died format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* person - Person' enum: - person x-enum-descriptions: - Person x-cb-field-enum-values: - value: person description: Person x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes facebook: type: object description: Link to a Person's Facebook page allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] facet_ids: type: array items: type: string description: '* investor - Investor' enum: - investor x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all first_name: type: string description: First name of a Person maxLength: 255 x-cb-field-type: text_short x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts gender: type: string description: 'A Person''s gender * agender - Agender * androgyne - Androgyne * androgynous - Androgynous * bigender - Bigender * female - Female * ftm - Female to Male (FTM) * gender_fluid - Gender Fluid * gender_nonconforming - Gender Nonconforming * gender_questioning - Gender Questioning * gender_variant - Gender Variant * genderqueer - Genderqueer * male - Male * mtf - Male to Female (MTF) * neutrois - Neutrois * non_binary - Non-Binary * not_provided - Prefer not to identify * other - Other * pangender - Pangender * transfeminine - Transfeminine * transgender_female - Transgender Female * transgender_male - Transgender Male * transgender_man - Transgender Man * transgender_person - Transgender Person * transgender_woman - Transgender Woman * transmasculine - Transmasculine * transsexual_female - Transsexual Female * transsexual_male - Transsexual Male * transsexual_man - Transsexual Man * transsexual_person - Transsexual Person * transsexual_woman - Transsexual Woman * two_spirit - Two-Spirit' enum: - female - male - agender - androgyne - androgynous - bigender - ftm - mtf - gender_fluid - gender_nonconforming - gender_questioning - gender_variant - genderqueer - non_binary - neutrois - pangender - transgender_person - transgender_female - transgender_woman - transgender_male - transgender_man - transfeminine - transmasculine - transsexual_person - transsexual_female - transsexual_woman - transsexual_male - transsexual_man - two_spirit - other - not_provided x-enum-descriptions: - Female - Male - Agender - Androgyne - Androgynous - Bigender - Female to Male (FTM) - Male to Female (MTF) - Gender Fluid - Gender Nonconforming - Gender Questioning - Gender Variant - Genderqueer - Non-Binary - Neutrois - Pangender - Transgender Person - Transgender Female - Transgender Woman - Transgender Male - Transgender Man - Transfeminine - Transmasculine - Transsexual Person - Transsexual Female - Transsexual Woman - Transsexual Male - Transsexual Man - Two-Spirit - Other - Prefer not to identify x-cb-field-enum-values: - value: female description: Female - value: male description: Male - value: agender description: Agender - value: androgyne description: Androgyne - value: androgynous description: Androgynous - value: bigender description: Bigender - value: ftm description: Female to Male (FTM) - value: mtf description: Male to Female (MTF) - value: gender_fluid description: Gender Fluid - value: gender_nonconforming description: Gender Nonconforming - value: gender_questioning description: Gender Questioning - value: gender_variant description: Gender Variant - value: genderqueer description: Genderqueer - value: non_binary description: Non-Binary - value: neutrois description: Neutrois - value: pangender description: Pangender - value: transgender_person description: Transgender Person - value: transgender_female description: Transgender Female - value: transgender_woman description: Transgender Woman - value: transgender_male description: Transgender Male - value: transgender_man description: Transgender Man - value: transfeminine description: Transfeminine - value: transmasculine description: Transmasculine - value: transsexual_person description: Transsexual Person - value: transsexual_female description: Transsexual Female - value: transsexual_woman description: Transsexual Woman - value: transsexual_male description: Transsexual Male - value: transsexual_man description: Transsexual Man - value: two_spirit description: Two-Spirit - value: other description: Other - value: not_provided description: Prefer not to identify x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: First and last name of a Person allOf: - $ref: '#/components/schemas/EntityIdentifier_3' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts image_id: type: string description: The profile image of the person on Crunchbase maxLength: 255 x-cb-field-type: image_id x-cb-searchable: false x-cb-search-operators: [] image_url: type: string description: The url of the profile image maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] last_name: type: string description: Last name of a Person maxLength: 255 x-cb-field-type: text_short x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts layout_id: type: string description: 'This is the auto-generated layout for the profile * investor - Investor Layout' enum: - investor x-enum-descriptions: - Investor Layout x-cb-field-enum-values: - value: investor description: Investor Layout x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes linkedin: type: object description: Link to a Person's LinkedIn page allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] location_group_identifiers: type: array description: Where the person is located (e.g. San Francisco Bay Area, Silicon Valley) items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all location_identifiers: type: array description: Where the person is located (e.g. Europe, Menlo Park, China) items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all middle_name: type: string description: Middle name of a Person maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] name: type: string description: Full name of a Person maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] num_current_advisor_jobs: type: number description: Total number of current Advisors and Board roles the person has x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_current_jobs: type: number description: Total number of current Jobs the person has x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_event_appearances: type: number description: Total number of events the individual appeared in x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_founded_organizations: type: number description: Number of Organizations that the person founded x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_jobs: type: number description: Total number of Jobs the person has x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_past_advisor_jobs: type: number description: Total number of past Board and Advisor roles the person has x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_past_jobs: type: number description: Total number of past Jobs the person has x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_portfolio_organizations: type: number description: Number of portfolio companies associated to the Person x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq permalink: type: string maxLength: 255 x-cb-field-type: permalink x-cb-searchable: false x-cb-search-operators: [] permalink_aliases: type: array description: These are the alternative aliases to the primary permalink of the Organization items: type: string maxLength: 255 x-cb-field-type: text_exact_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all primary_job_title: type: string description: The person's primary job title maxLength: 255 x-cb-field-type: text_short x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts primary_organization: type: object description: The organization associated to the person's primary job allOf: - $ref: '#/components/schemas/EntityIdentifier_3' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts rank: type: number description: Algorithmic rank assigned to the top profiles on Crunchbase x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank_person: type: number description: Algorithmic rank assigned to the top 100,000 most active People x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq short_description: type: string description: Text of Person Description, Industries, and Industry Groups maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains twitter: type: object description: Link to a person's X profile allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes website: type: object description: Link to a Person's website allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] website_url: type: string description: Link to a Person's website maxLength: 8192 x-cb-field-type: url x-cb-searchable: true x-cb-search-operators: - domain_blank - domain_eq - domain_includes - not_domain_eq - not_domain_includes IpoEntity_3: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/Ipo_2' organization: type: array items: $ref: '#/components/schemas/Organization_3' properties: $ref: '#/components/schemas/Ipo_2' PrincipalFieldId_3: type: string description: Principal field ids enum: - aliases - born_on - categories - category_groups - closed_on - company_type - contact_email - created_at - delisted_on - description - died_on - diversity_spotlights - entity_def_id - exited_on - facebook - facet_ids - first_name - founded_on - founder_identifiers - gender - hub_tags - identifier - image_id - image_url - last_name - layout_id - linkedin - location_group_identifiers - location_identifiers - name - num_alumni - num_employees_enum - num_enrollments - num_event_appearances - num_founded_organizations - num_jobs - num_portfolio_organizations - operating_status - permalink - permalink_aliases - phone_number - primary_job_title - primary_organization - program_application_deadline - program_duration - program_type - rank - school_method - school_program - school_type - short_description - status - stock_exchange_symbol - stock_symbol - twitter - updated_at - uuid - website - website_url - went_public_on Organization_4: type: object required: - identifier properties: acquirer_identifier: type: object description: Name of the organization that made the acquisition allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts aliases: type: array description: Alternate or previous names for the organization items: type: string maxLength: 255 x-cb-field-type: text_short_multi x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts categories: type: array description: Descriptive keyword for an Organization (e.g. SaaS, Android, Cloud Computing, Medical Device) items: $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all category_groups: type: array description: Superset of Industries (e.g. Software, Mobile, Health Care) items: $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all closed_on: type: object description: The date when the organization is closed allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte company_type: type: string description: 'Whether an Organization is for profit or non-profit * for_profit - For Profit * non_profit - Non-profit' enum: - for_profit - non_profit x-enum-descriptions: - For Profit - Non-profit x-cb-field-enum-values: - value: for_profit description: For Profit - value: non_profit description: Non-profit x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes contact_email: type: string description: General contact email for the organization maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte delisted_on: type: object description: The date when the Organization removed its stock from the stock exchange. allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte demo_days: type: boolean description: Whether an accelerator hosts any demo days x-cb-field-type: boolean x-cb-searchable: true x-cb-search-operators: - blank - eq description: type: string description: Organization Description, Industries, Industry Groups maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains diversity_spotlights: type: array description: Types of diversity represented in an organization, specifically of those who are founding members, currently the CEO, or have check-writing abilities in an investment firm. This feature is in beta and may change with future updates. items: $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all entity_def_id: type: string description: '* organization - Organization' enum: - organization x-enum-descriptions: - Organization x-cb-field-enum-values: - value: organization description: Organization x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes equity_funding_total: type: object description: Total funding amount raised across all Funding Rounds excluding debt allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq exited_on: type: object description: Date the organization was acquired or went public allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte facebook: type: object description: Link to Organization's Facebook page allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] facet_ids: type: array items: type: string description: '* company - Company * government_entity - Government Entity * investor - Investor * school - School' enum: - company - government_entity - investor - school x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all founded_on: type: object description: Date the Organization was founded allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte founder_identifiers: type: array description: Founders of the organization items: $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all funding_stage: type: string description: 'This field describes an organization''s most recent funding status (e.g. Early Stage Venture, Late Stage Venture, M&A) * early_stage_venture - Early Stage Venture * ipo - IPO * late_stage_venture - Late Stage Venture * m_and_a - M&A * private_equity - Private Equity * seed - Seed' enum: - seed - early_stage_venture - late_stage_venture - private_equity - m_and_a - ipo x-enum-descriptions: - Seed - Early Stage Venture - Late Stage Venture - Private Equity - M&A - IPO x-cb-field-enum-values: - value: seed description: Seed - value: early_stage_venture description: Early Stage Venture - value: late_stage_venture description: Late Stage Venture - value: private_equity description: Private Equity - value: m_and_a description: M&A - value: ipo description: IPO x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes funding_total: type: object description: Total amount raised across all funding rounds allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq funds_total: type: object description: Total funding amount raised across all Fund Raises allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq growth_insight_confidence: type: string description: 'Confidence level associated with this company''s growth status * c100_unknown - Unknown * c200_low - Low * c300_medium - Medium * c400_high - High' enum: - c100_unknown - c200_low - c300_medium - c400_high x-enum-descriptions: - Unknown - Low - Medium - High x-cb-field-enum-values: - value: c100_unknown description: Unknown - value: c200_low description: Low - value: c300_medium description: Medium - value: c400_high description: High x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes growth_insight_direction: type: string description: '* c100_uncertain - Uncertain * c200_declining - Not Growing * c300_stable - Stable * c400_growing - Growing' enum: - c100_uncertain - c200_declining - c300_stable - c400_growing x-enum-descriptions: - Uncertain - Not Growing - Stable - Growing x-cb-field-enum-values: - value: c100_uncertain description: Uncertain - value: c200_declining description: Not Growing - value: c300_stable description: Stable - value: c400_growing description: Growing x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes growth_score: type: number description: Current Growth Score x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq growth_score_delta_d90: type: number description: Change in Growth Score over the past 90 days x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq heat_score: type: number description: Current Heat Score x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq heat_score_delta_d90: type: number description: Change in Heat Score over the past 90 days x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq hub_tags: type: array description: Tags are labels assigned to organizations, which identify their belonging to a group with that shared label items: type: string description: 'Tags are labels assigned to organizations, which identify their belonging to a group with that shared label * cbvp - Crunchbase Venture Program * emerging_unicorn - Emerging Unicorn * exited_unicorn - Exited Unicorn * pledge_one_percent - Pledge 1% * unicorn - Unicorn' enum: - cbvp - pledge_one_percent - unicorn - emerging_unicorn - exited_unicorn x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all identifier: type: object description: Name of the Organization allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts image_id: type: string description: The profile image of the organization on Crunchbase maxLength: 255 x-cb-field-type: image_id x-cb-searchable: false x-cb-search-operators: [] image_url: type: string description: The url of the profile image maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] investor_identifiers: type: array description: The top 5 investors with investments in this company, ordered by Crunchbase Rank items: $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all investor_stage: type: array description: This describes the stage of investments made by this organization (e.g. Angel, Fund of Funds, Venture Capital) items: type: string description: 'This describes the stage of investments made by this organization (e.g. Angel, Fund of Funds, Venture Capital) * convertible_note - Convertible Note * crowdfunding - Crowdfunding * debt - Debt * early_stage_venture - Early Stage Venture * grant - Grant * initial_coin_offering - Initial Coin Offering * late_stage_venture - Late Stage Venture * non_equity_assistance - Non Equity Assistance * post_ipo - Post-Ipo * private_equity - Private Equity * secondary_market - Secondary Market * seed - Seed * venture - Venture' enum: - seed - early_stage_venture - late_stage_venture - venture - private_equity - crowdfunding - debt - grant - non_equity_assistance - convertible_note - secondary_market - post_ipo - initial_coin_offering x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all investor_type: type: array description: This describes the type of investor this organization is (e.g. Angel, Fund of Funds, Venture Capital) items: type: string description: 'This describes the type of investor this organization is (e.g. Angel, Fund of Funds, Venture Capital) * accelerator - Accelerator * angel_group - Angel Group * co_working_space - Co-Working Space * corporate_venture_capital - Corporate Venture Capital * entrepreneurship_program - Entrepreneurship Program * family_investment_office - Family Investment Office * fund_of_funds - Fund Of Funds * government_office - Government Office * hedge_fund - Hedge Fund * incubator - Incubator * investment_bank - Investment Bank * micro_vc - Micro VC * pension_funds - Pension Funds * private_equity_firm - Private Equity Firm * secondary_purchaser - Secondary Purchaser * startup_competition - Startup Competition * syndicate - Syndicate * university_program - University Program * venture_capital - Venture Capital * venture_debt - Venture Debt' enum: - venture_capital - corporate_venture_capital - private_equity_firm - accelerator - micro_vc - angel_group - incubator - investment_bank - family_investment_office - venture_debt - co_working_space - fund_of_funds - hedge_fund - government_office - university_program - entrepreneurship_program - secondary_purchaser - startup_competition - syndicate - pension_funds x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all ipo_status: type: string description: 'The current public status of the Organization * delisted - Delisted * private - Private * public - Public' enum: - public - delisted - private x-enum-descriptions: - Public - Delisted - Private x-cb-field-enum-values: - value: public description: Public - value: delisted description: Delisted - value: private description: Private x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes last_equity_funding_total: type: object description: Amount of most recent Funding Round excluding debt allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq last_equity_funding_type: type: string description: 'The most recent Funding Round excluding debt * angel - Angel * convertible_note - Convertible Note * corporate_round - Corporate Round * debt_financing - Debt Financing * equity_crowdfunding - Equity Crowdfunding * grant - Grant * initial_coin_offering - Initial Coin Offering * non_equity_assistance - Non-equity Assistance * post_ipo_debt - Post-IPO Debt * post_ipo_equity - Post-IPO Equity * post_ipo_secondary - Post-IPO Secondary * pre_seed - Pre-Seed * private_equity - Private Equity * product_crowdfunding - Product Crowdfunding * secondary_market - Secondary Market * seed - Seed * series_a - Series A * series_b - Series B * series_c - Series C * series_d - Series D * series_e - Series E * series_f - Series F * series_g - Series G * series_h - Series H * series_i - Series I * series_j - Series J * series_unknown - Venture - Series Unknown * undisclosed - Undisclosed' enum: - pre_seed - seed - series_a - series_b - series_c - series_d - series_e - series_f - series_g - series_h - series_i - series_j - series_unknown - angel - private_equity - debt_financing - convertible_note - grant - corporate_round - equity_crowdfunding - product_crowdfunding - secondary_market - post_ipo_equity - post_ipo_debt - post_ipo_secondary - non_equity_assistance - initial_coin_offering - undisclosed x-enum-descriptions: - Pre-Seed - Seed - Series A - Series B - Series C - Series D - Series E - Series F - Series G - Series H - Series I - Series J - Venture - Series Unknown - Angel - Private Equity - Debt Financing - Convertible Note - Grant - Corporate Round - Equity Crowdfunding - Product Crowdfunding - Secondary Market - Post-IPO Equity - Post-IPO Debt - Post-IPO Secondary - Non-equity Assistance - Initial Coin Offering - Undisclosed x-cb-field-enum-values: - value: pre_seed description: Pre-Seed - value: seed description: Seed - value: series_a description: Series A - value: series_b description: Series B - value: series_c description: Series C - value: series_d description: Series D - value: series_e description: Series E - value: series_f description: Series F - value: series_g description: Series G - value: series_h description: Series H - value: series_i description: Series I - value: series_j description: Series J - value: series_unknown description: Venture - Series Unknown - value: angel description: Angel - value: private_equity description: Private Equity - value: debt_financing description: Debt Financing - value: convertible_note description: Convertible Note - value: grant description: Grant - value: corporate_round description: Corporate Round - value: equity_crowdfunding description: Equity Crowdfunding - value: product_crowdfunding description: Product Crowdfunding - value: secondary_market description: Secondary Market - value: post_ipo_equity description: Post-IPO Equity - value: post_ipo_debt description: Post-IPO Debt - value: post_ipo_secondary description: Post-IPO Secondary - value: non_equity_assistance description: Non-equity Assistance - value: initial_coin_offering description: Initial Coin Offering - value: undisclosed description: Undisclosed x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes last_funding_at: type: string description: Date of most recent Funding Round format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte last_funding_total: type: object description: Amount of most recent Funding Round allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq last_funding_type: type: string description: 'Last funding round type (e.g. Seed, Series A, Private Equity) * angel - Angel * convertible_note - Convertible Note * corporate_round - Corporate Round * debt_financing - Debt Financing * equity_crowdfunding - Equity Crowdfunding * grant - Grant * initial_coin_offering - Initial Coin Offering * non_equity_assistance - Non-equity Assistance * post_ipo_debt - Post-IPO Debt * post_ipo_equity - Post-IPO Equity * post_ipo_secondary - Post-IPO Secondary * pre_seed - Pre-Seed * private_equity - Private Equity * product_crowdfunding - Product Crowdfunding * secondary_market - Secondary Market * seed - Seed * series_a - Series A * series_b - Series B * series_c - Series C * series_d - Series D * series_e - Series E * series_f - Series F * series_g - Series G * series_h - Series H * series_i - Series I * series_j - Series J * series_unknown - Venture - Series Unknown * undisclosed - Undisclosed' enum: - pre_seed - seed - series_a - series_b - series_c - series_d - series_e - series_f - series_g - series_h - series_i - series_j - series_unknown - angel - private_equity - debt_financing - convertible_note - grant - corporate_round - equity_crowdfunding - product_crowdfunding - secondary_market - post_ipo_equity - post_ipo_debt - post_ipo_secondary - non_equity_assistance - initial_coin_offering - undisclosed x-enum-descriptions: - Pre-Seed - Seed - Series A - Series B - Series C - Series D - Series E - Series F - Series G - Series H - Series I - Series J - Venture - Series Unknown - Angel - Private Equity - Debt Financing - Convertible Note - Grant - Corporate Round - Equity Crowdfunding - Product Crowdfunding - Secondary Market - Post-IPO Equity - Post-IPO Debt - Post-IPO Secondary - Non-equity Assistance - Initial Coin Offering - Undisclosed x-cb-field-enum-values: - value: pre_seed description: Pre-Seed - value: seed description: Seed - value: series_a description: Series A - value: series_b description: Series B - value: series_c description: Series C - value: series_d description: Series D - value: series_e description: Series E - value: series_f description: Series F - value: series_g description: Series G - value: series_h description: Series H - value: series_i description: Series I - value: series_j description: Series J - value: series_unknown description: Venture - Series Unknown - value: angel description: Angel - value: private_equity description: Private Equity - value: debt_financing description: Debt Financing - value: convertible_note description: Convertible Note - value: grant description: Grant - value: corporate_round description: Corporate Round - value: equity_crowdfunding description: Equity Crowdfunding - value: product_crowdfunding description: Product Crowdfunding - value: secondary_market description: Secondary Market - value: post_ipo_equity description: Post-IPO Equity - value: post_ipo_debt description: Post-IPO Debt - value: post_ipo_secondary description: Post-IPO Secondary - value: non_equity_assistance description: Non-equity Assistance - value: initial_coin_offering description: Initial Coin Offering - value: undisclosed description: Undisclosed x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes last_key_employee_change_date: type: string description: See companies that have hired executives (VP and above) in a certain date range format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte last_layoff_date: type: string description: Date of last layoff event format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte last_market_insights: type: array description: The latest market insight identifiers for this organization items: $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all layout_id: type: string description: 'This is the auto-generated layout for the profile * investor - Investor Layout * school - School Layout' enum: - school - investor x-enum-descriptions: - School Layout - Investor Layout x-cb-field-enum-values: - value: school description: School Layout - value: investor description: Investor Layout x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes legal_name: type: string description: The legal name of the organization maxLength: 255 x-cb-field-type: text_short x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts linkedin: type: object description: Link to Organization's LinkedIn page allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] listed_stock_symbol: type: string description: Stock ticker symbol (e.g. AAPL, FB, TWTR) maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] location_group_identifiers: type: array description: Where the organization is headquartered (e.g. San Francisco Bay Area, Silicon Valley) items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all location_identifiers: type: array description: Where the organization is headquartered items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all micro_categories: type: array description: Micro industries associated with this Organization items: $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all name: type: string maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] num_acquisitions: type: number description: Total number of Acquisitions x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_alumni: type: number description: Total number of alumni x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_articles: type: number description: Number of news articles that reference the Organization x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_current_advisor_positions: type: number description: Total number of board member and advisor profiles an organization has on Crunchbase x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_current_positions: type: number description: Total number of employee profiles an organization has on Crunchbase x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_diversity_spotlight_investments: type: number description: Total number of diversity investments made by an investor x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_employees_enum: type: string description: 'Total number of employees * c_00001_00010 - 1-10 * c_00011_00050 - 11-50 * c_00051_00100 - 51-100 * c_00101_00250 - 101-250 * c_00251_00500 - 251-500 * c_00501_01000 - 501-1000 * c_01001_05000 - 1001-5000 * c_05001_10000 - 5001-10000 * c_10001_max - 10001+' enum: - c_00001_00010 - c_00011_00050 - c_00051_00100 - c_00101_00250 - c_00251_00500 - c_00501_01000 - c_01001_05000 - c_05001_10000 - c_10001_max x-enum-descriptions: - 1-10 - 11-50 - 51-100 - 101-250 - 251-500 - 501-1000 - 1001-5000 - 5001-10000 - 10001+ x-cb-field-enum-values: - value: c_00001_00010 description: 1-10 - value: c_00011_00050 description: 11-50 - value: c_00051_00100 description: 51-100 - value: c_00101_00250 description: 101-250 - value: c_00251_00500 description: 251-500 - value: c_00501_01000 description: 501-1000 - value: c_01001_05000 description: 1001-5000 - value: c_05001_10000 description: 5001-10000 - value: c_10001_max description: 10001+ x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes num_enrollments: type: string description: 'Total number of Enrollments * c_00001_00010 - 1-10 * c_00011_00050 - 11-50 * c_00051_00100 - 51-100 * c_00101_00250 - 101-250 * c_00251_00500 - 251-500 * c_00501_01000 - 501-1000 * c_01001_05000 - 1001-5000 * c_05001_10000 - 5001-10000 * c_10001_max - 10001+' enum: - c_00001_00010 - c_00011_00050 - c_00051_00100 - c_00101_00250 - c_00251_00500 - c_00501_01000 - c_01001_05000 - c_05001_10000 - c_10001_max x-enum-descriptions: - 1-10 - 11-50 - 51-100 - 101-250 - 251-500 - 501-1000 - 1001-5000 - 5001-10000 - 10001+ x-cb-field-enum-values: - value: c_00001_00010 description: 1-10 - value: c_00011_00050 description: 11-50 - value: c_00051_00100 description: 51-100 - value: c_00101_00250 description: 101-250 - value: c_00251_00500 description: 251-500 - value: c_00501_01000 description: 501-1000 - value: c_01001_05000 description: 1001-5000 - value: c_05001_10000 description: 5001-10000 - value: c_10001_max description: 10001+ x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes num_event_appearances: type: number description: Total number of events an Organization appeared in x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_exits: type: number description: Total number of Exits x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_exits_ipo: type: number description: Total number of Exits (IPO) x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_founder_alumni: type: number description: Total number of Alumni that are Founders x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_founders: type: number description: Total number of Founders x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_funding_rounds: type: number description: Total number of Funding Rounds x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_funds: type: number description: Total number of Funds raised x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_investments: type: number description: Total number of Investments made x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_investors: type: number description: Total number of investment firms and individual investors x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_lead_investments: type: number description: Total number of Lead Investments made x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_lead_investors: type: number description: Total number of lead investment firms and individual investors x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_past_positions: type: number description: Total number of past employee profiles of an organization x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_portfolio_organizations: type: number description: Total number of portfolio organizations x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_sub_organizations: type: number description: Total number of sub-organizations that belongs to a parent Organization x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq operating_status: type: string description: 'Operating Status of Organization e.g. Active, Closed * active - Active * closed - Closed' enum: - active - closed x-enum-descriptions: - Active - Closed x-cb-field-enum-values: - value: active description: Active - value: closed description: Closed x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes owner_identifier: type: object description: This is the parent Organization of the sub-organization allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts permalink: type: string maxLength: 255 x-cb-field-type: permalink x-cb-searchable: false x-cb-search-operators: [] permalink_aliases: type: array description: These are the alternative aliases to the primary permalink of the Organization items: type: string maxLength: 255 x-cb-field-type: text_exact_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all phone_number: type: string description: Organization's general phone number maxLength: 255 x-cb-field-type: text_exact x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes program_application_deadline: type: string description: The deadline for applying to the Accelerator Program format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte program_duration: type: number description: The duration of the Acceleration Program in number of weeks x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq program_type: type: string description: 'The type of Accelerator Program (e.g. On-Site, Online) * on_site - On-Site * online - Online' enum: - on_site - online x-enum-descriptions: - On-Site - Online x-cb-field-enum-values: - value: on_site description: On-Site - value: online description: Online x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes rank: type: number description: Algorithmic rank assigned to the top profiles on Crunchbase x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank_delta_d30: type: number description: Movement in Rank over the last 30 days using a score from -10 to 10 format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank_delta_d7: type: number description: Movement in Rank over the last 7 days using a score from -10 to 10 format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank_delta_d90: type: number description: Movement in Rank over the last 90 days using a score from -10 to 10 format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank_org: type: number description: Algorithmic rank assigned to the top 100,000 most active Organizations x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq revenue_range: type: string description: 'Estimated revenue range for organization * r_00000000 - Less than $1M * r_00001000 - $1M to $10M * r_00010000 - $10M to $50M * r_00050000 - $50M to $100M * r_00100000 - $100M to $500M * r_00500000 - $500M to $1B * r_01000000 - $1B to $10B * r_10000000 - $10B+' enum: - r_00000000 - r_00001000 - r_00010000 - r_00050000 - r_00100000 - r_00500000 - r_01000000 - r_10000000 x-enum-descriptions: - Less than $1M - $1M to $10M - $10M to $50M - $50M to $100M - $100M to $500M - $500M to $1B - $1B to $10B - $10B+ x-cb-field-enum-values: - value: r_00000000 description: Less than $1M - value: r_00001000 description: $1M to $10M - value: r_00010000 description: $10M to $50M - value: r_00050000 description: $50M to $100M - value: r_00100000 description: $100M to $500M - value: r_00500000 description: $500M to $1B - value: r_01000000 description: $1B to $10B - value: r_10000000 description: $10B+ x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes school_method: type: string description: 'The type of School Method (e.g. On Campus, Online) * on_compus - On Campus * online - Online * online_and_on_campus - Online and On Campus' enum: - on_compus - online - online_and_on_campus x-enum-descriptions: - On Campus - Online - Online and On Campus x-cb-field-enum-values: - value: on_compus description: On Campus - value: online description: Online - value: online_and_on_campus description: Online and On Campus x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes school_program: type: string description: 'The type of School Program (e.g. Bootcamp, Four Year University) * bootcamp - Bootcamp * community_college - Community College * four_year_university - Four Year University * graduate_university - Graduate University * high_school - High School * trade_school - Trade School * two_year_university - Two Year University' enum: - four_year_university - two_year_university - graduate_university - bootcamp - trade_school - community_college - high_school x-enum-descriptions: - Four Year University - Two Year University - Graduate University - Bootcamp - Trade School - Community College - High School x-cb-field-enum-values: - value: four_year_university description: Four Year University - value: two_year_university description: Two Year University - value: graduate_university description: Graduate University - value: bootcamp description: Bootcamp - value: trade_school description: Trade School - value: community_college description: Community College - value: high_school description: High School x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes school_type: type: string description: 'The type of school * for_profit_private - Private * non_profit_private - Private (Non-Profit) * public - Public' enum: - public - for_profit_private - non_profit_private x-enum-descriptions: - Public - Private - Private (Non-Profit) x-cb-field-enum-values: - value: public description: Public - value: for_profit_private description: Private - value: non_profit_private description: Private (Non-Profit) x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes short_description: type: string description: Text of Organization Description, Industries, and Industry Groups maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains status: type: string description: 'Status of Organization e.g. Operating, Closed, Acquired, IPO * closed - Closed * ipo - IPO * operating - Operating * was_acquired - Was Acquired' enum: - closed - ipo - operating - was_acquired x-enum-descriptions: - Closed - IPO - Operating - Was Acquired x-cb-field-enum-values: - value: closed description: Closed - value: ipo description: IPO - value: operating description: Operating - value: was_acquired description: Was Acquired x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes stock_exchange_symbol: type: string description: 'Stock exchange where the Organization is listed e.g. NYSE, NASDAQ * adx - ADX - Abu Dhabi Securities Exchange * afx - AFX - Afghanistan Stock Exchange * altx - ALTX - ALTX East Africa Exchange * amex - AMEX - American Stock Exchange * ams - AMS - Euronext Amsterdam * amx - AMX - Armenia Securities Exchange * asce - ASCE - Abuja Securities and Commodities Exchange * asx - ASX - Australian Securities Exchange * ath - ATH - Athens Stock Exchange * bcba - BCBA - Buenos Aires Stock Exchange * bdp - BDP - Budapest Stock Exchange * belex - BELEX - Belgrade Stock Exchange * ber - BER - Berliner Börse * bfb - BFB - Baku Stock Exchange * bit - BIT - Italian Stock Exchange * bkk - BKK - Thailand Stock Exchange * blse - BLSE - Banja Luka Stock Exchange * bme - BME - Madrid Stock Exchange * bmv - BMV - Mexican Stock Exchange * bom - BOM - Bombay Stock Exchange * brvm - BRVM - Regional Securities Exchange SA * bse - BSE - Bulgarian Stock Exchange * bse_lb - BSE - Beirut Stock Exchange * bsse - BSSE - Bratislava Stock Exchange * bsx - BSX - Bermuda Stock Exchange * bvb - BVB - Bucharest Stock Exchange * bvc - BVC - Colombian Stock Exchange * bvfb - BVFB - Belarusian Currency and Stock Exchange * bvm - BVM - Montevideo Stock Exchange * bvmf - B3 - Brazil Stock Exchange and OTC Market * bvmt - BVMT - Tunis Stock Exchange * bx - BX - Berne Stock Exchange * cas - CAS - Casablanca Stock Exchange * cise - CISE - Channel Islands Stock Exchange * cnsx - CNSX - Canadian National Stock Exchange * col - COL - Colombo Stock Exchange * cph - CPH - Copenhagen Stock Exchange * cse - CSE - Canadian Securities Exchange * cse_cy - CSE - Cyprus Stock Exchange * csx - CSX - Cambodia Securities Exchange * cve - TSX-V - Toronto TSX Venture Exchange * dfm - DFM - Dubai Financial Market * dse - DSE - Dhaka Stock Exchange * dsx - DSX - Douala Stock Exchange * dus - DUS - Börse Düsseldorf * ebr - EBR - Euronext Brussels * egx - EGX - Egypt Stock Exchange * eli - ELI - Euronext Lisbon * epa - EPA - Euronext Paris * etr - ETR - Deutsche Börse XETRA * eurex - EUREX - Eurex Exchange * fra - FRA - Frankfurt Stock Exchange * fwb - FWB - Börse Frankfurt Stock Exchange * gha - GHA - Ghana Stock Exchange * gsx - GSX - Georgian Stock Exchange * gsx_gi - GSX - Gibraltar Stock Exchange * hel - HEL - Helsinki Stock Exchange * hkg - HKG - Hong Kong Stock Exchange * hnx - HNX - Hanoi Stock Exchange * hose - HOSE - Ho Chi Minh Stock Exchange * ice - ICE - Iceland Stock Exchange * idx - IDX - Indonesia Stock Exchange * iex - IEX - Investors Exchange * ifb - IFB - Iran Fara Bourse * ime - IME - Iran Mercantile Exchange * irenex - IRENEX - Iran Energy Exchange * ise - ISE - Irish Stock Exchange * ist - IST - Istanbul Stock Exchange * isx - ISX - Iraq Stock Exchange * jp - JP - Japan Exchange * jsc - JSC - Belarusian Currency and Stock Exchange * jse - JSE - Johannesburg Stock Exchange * jse_jam - JSE - Jamaica Stock Exchange * kase - KASE - Kazakhstan Stock Exchange * klse - KLSE - Malaysia Stock Exchange * kosdaq - KOSDAQ - Korean Securities Dealers Automated Quotations * krx - KRX - Korea Stock Exchange * kse - KSE - Kuwait Stock Exchange * lje - LJE - Ljubljana Stock Exchange * lse - LSE - London Stock Exchange * lsm - LSM - Libyan Stock Market * lsx - LSX - Lao Securities Exchange * luse - LuSE - Lusaka Securities Exchange * luxse - LuxSE - Luxembourg Stock Exchange * mal - MAL - Malta Stock Exchange * mcx - MCX - Multi Commodity Exchange of India * meff - MEFF - Mercado Spanish Financial Futures Market * mnse - MNSE - Montenegro Stock Exchange * moex - MOEX - Moscow Exchange * mse - MSE - Metropolitan Stock Exchange * mse_md - MSE - Moldova Stock Exchange * mse_mk - MSE - Macedonian Stock Exchange * msei - MSEI - Metropolitan Stock Exchange of India * msm - MSM - Muscat Securities Market * mun - MUN - Börse München * nasdaq - NASDAQ * nbo - NSE - Nairobi Securities Exchange * neeq - NEEQ - National Equities Exchange and Quotations * nepse - NEPSE - Nepal Stock Exchange * nex - NEX - NEX Exchange * ngm - NGM - Nordic Growth Market Exchange * nig - NIG - Nigerian Stock Exchange * notc - NOTC - Norwegian OTC * npex - NPEX - NPEX Stock Exchange * nse - NSE - National Stock Exchange of India * nsx - NSX - National Stock Exchange of Australia * nyse - NYSE - New York Stock Exchange * nysearca - NYSEARCA - NYSE Arca * nysemkt - NYSEAMERICAN - NYSE American * nze - NZE - New Zealand Stock Exchange * ose - OSE - Oslo Stock Exchange * otcbb - OTCBB - FINRA OTC Bulletin Board * otcpink - OTC Pink * otcqb - OTCQB * otcqx - OTCQX * pdex - PDEx - Philippine Dealing Exchange * pex - PEX - Palestine Exchange * pfts - PFTS - PFTS Ukraine Stock Exchange * pomsox - POMSoX - Port Moresby Stock Exchange * prg - PRA - Prague Stock Exchange * pse - PSE - Philippine Stock Exchange * psx - PSX - Pakistan Stock Exchange * qse - QSE - Qatar Stock Exchange * rfb - RFB - Riga Stock Exchange * rse - RSE - Rwanda Stock Exchange * rsebl - RSEBL - Royal Securities Exchange of Bhutan * sase - SASE - Sarajevo Stock Exchange * sbx - SBX - BX Swiss * sehk - SEHK - The Stock Exchange of Hong Kong * sem - SEM - Stock Exchange of Mauritius * sgbv - SGBV - Algiers Stock Exchange * sgx - SGX - Singapore Stock Exchange * six - SIX - SIX Swiss Exchange * spbex - SPBEX - Saint Petersburg Stock Exchange * spse - SPSE - South Pacific Stock Exchange * sse - SSE - Shanghai Stock Exchange * ssx - SSX - Sydney Stock Exchange * sto - STO - Stockholm Stock Exchange * stu - STU - Börse Stuttgart * swx - SWX - SIX Swiss Exchange * szse - SZSE - Shenzhen Stock Exchange * tadawul - Tadawul - Saudi Stock Exchange * tal - TSE - Tallinn Stock Exchange * tfex - TFEX - Thailand Futures Exchange * tise - TISE - The International Stock Exchange * tlv - TLV - Tel Aviv Stock Exchange * tpe - TWSE - Taiwan Stock Exchange * tse_al - TSE - Tirana Stock Exchange * tse_ir - TSE - Tehran Stock Exchange * tsec - TWO - Taiwan OTC Exchange * tsx - TSX - Toronto Stock Exchange * ttse - TTSE - Trinidad and Tobago Stock Exchange * tyo - TYO - Tokyo Stock Exchange * use - USE - Uganda Securities Exchange * ux - UX - Ukrainian Exchange * vie - VIE - Vienna Stock Exchange * vmf - VMF - Faroese Securities Market * vse - VSE - Vancouver Stock Exchange * wse - WSE - Warsaw Stock Exchange * ysx - YSX - Yangon Stock Exchange * zamace - ZAMACE - Zambian Commodity Exchange * zse - ZSE - Zimbabwe Stock Exchange * zse_hr - ZSE - Zagreb Stock Exchange' enum: - adx - afx - altx - amx - amex - ams - asce - asx - ath - bcba - bdp - belex - ber - bfb - bit - bkk - blse - bme - bmv - bom - brvm - bse - bse_lb - bsse - bsx - bvb - bvc - bvfb - bvm - bvmf - bvmt - bx - cas - cise - cnsx - col - cph - cse - cse_cy - csx - dfm - dse - dsx - dus - ebr - egx - eli - epa - etr - eurex - fra - fwb - gha - gsx - gsx_gi - hel - hkg - hnx - hose - ice - idx - iex - ifb - ime - irenex - ise - ist - isx - jp - jsc - jse - jse_jam - kase - klse - kosdaq - krx - kse - lje - lse - lsm - lsx - luse - luxse - mal - mcx - meff - mnse - moex - mse - mse_md - mse_mk - msei - msm - mun - nasdaq - nbo - nex - nepse - neeq - ngm - nig - notc - npex - nse - nsx - nyse - nysearca - nysemkt - nze - ose - otcbb - otcpink - otcqb - otcqx - pdex - pex - pfts - pomsox - prg - pse - psx - qse - rfb - rse - rsebl - sase - sbx - sehk - sem - sgbv - sgx - six - spbex - spse - sse - ssx - sto - stu - swx - szse - tal - tfex - tise - tlv - tpe - tse_al - tse_ir - tsec - tsx - cve - tyo - ttse - tadawul - use - ux - vie - vmf - vse - wse - ysx - zamace - zse - zse_hr x-enum-descriptions: - ADX - Abu Dhabi Securities Exchange - AFX - Afghanistan Stock Exchange - ALTX - ALTX East Africa Exchange - AMX - Armenia Securities Exchange - AMEX - American Stock Exchange - AMS - Euronext Amsterdam - ASCE - Abuja Securities and Commodities Exchange - ASX - Australian Securities Exchange - ATH - Athens Stock Exchange - BCBA - Buenos Aires Stock Exchange - BDP - Budapest Stock Exchange - BELEX - Belgrade Stock Exchange - BER - Berliner Börse - BFB - Baku Stock Exchange - BIT - Italian Stock Exchange - BKK - Thailand Stock Exchange - BLSE - Banja Luka Stock Exchange - BME - Madrid Stock Exchange - BMV - Mexican Stock Exchange - BOM - Bombay Stock Exchange - BRVM - Regional Securities Exchange SA - BSE - Bulgarian Stock Exchange - BSE - Beirut Stock Exchange - BSSE - Bratislava Stock Exchange - BSX - Bermuda Stock Exchange - BVB - Bucharest Stock Exchange - BVC - Colombian Stock Exchange - BVFB - Belarusian Currency and Stock Exchange - BVM - Montevideo Stock Exchange - B3 - Brazil Stock Exchange and OTC Market - BVMT - Tunis Stock Exchange - BX - Berne Stock Exchange - CAS - Casablanca Stock Exchange - CISE - Channel Islands Stock Exchange - CNSX - Canadian National Stock Exchange - COL - Colombo Stock Exchange - CPH - Copenhagen Stock Exchange - CSE - Canadian Securities Exchange - CSE - Cyprus Stock Exchange - CSX - Cambodia Securities Exchange - DFM - Dubai Financial Market - DSE - Dhaka Stock Exchange - DSX - Douala Stock Exchange - DUS - Börse Düsseldorf - EBR - Euronext Brussels - EGX - Egypt Stock Exchange - ELI - Euronext Lisbon - EPA - Euronext Paris - ETR - Deutsche Börse XETRA - EUREX - Eurex Exchange - FRA - Frankfurt Stock Exchange - FWB - Börse Frankfurt Stock Exchange - GHA - Ghana Stock Exchange - GSX - Georgian Stock Exchange - GSX - Gibraltar Stock Exchange - HEL - Helsinki Stock Exchange - HKG - Hong Kong Stock Exchange - HNX - Hanoi Stock Exchange - HOSE - Ho Chi Minh Stock Exchange - ICE - Iceland Stock Exchange - IDX - Indonesia Stock Exchange - IEX - Investors Exchange - IFB - Iran Fara Bourse - IME - Iran Mercantile Exchange - IRENEX - Iran Energy Exchange - ISE - Irish Stock Exchange - IST - Istanbul Stock Exchange - ISX - Iraq Stock Exchange - JP - Japan Exchange - JSC - Belarusian Currency and Stock Exchange - JSE - Johannesburg Stock Exchange - JSE - Jamaica Stock Exchange - KASE - Kazakhstan Stock Exchange - KLSE - Malaysia Stock Exchange - KOSDAQ - Korean Securities Dealers Automated Quotations - KRX - Korea Stock Exchange - KSE - Kuwait Stock Exchange - LJE - Ljubljana Stock Exchange - LSE - London Stock Exchange - LSM - Libyan Stock Market - LSX - Lao Securities Exchange - LuSE - Lusaka Securities Exchange - LuxSE - Luxembourg Stock Exchange - MAL - Malta Stock Exchange - MCX - Multi Commodity Exchange of India - MEFF - Mercado Spanish Financial Futures Market - MNSE - Montenegro Stock Exchange - MOEX - Moscow Exchange - MSE - Metropolitan Stock Exchange - MSE - Moldova Stock Exchange - MSE - Macedonian Stock Exchange - MSEI - Metropolitan Stock Exchange of India - MSM - Muscat Securities Market - MUN - Börse München - NASDAQ - NSE - Nairobi Securities Exchange - NEX - NEX Exchange - NEPSE - Nepal Stock Exchange - NEEQ - National Equities Exchange and Quotations - NGM - Nordic Growth Market Exchange - NIG - Nigerian Stock Exchange - NOTC - Norwegian OTC - NPEX - NPEX Stock Exchange - NSE - National Stock Exchange of India - NSX - National Stock Exchange of Australia - NYSE - New York Stock Exchange - NYSEARCA - NYSE Arca - NYSEAMERICAN - NYSE American - NZE - New Zealand Stock Exchange - OSE - Oslo Stock Exchange - OTCBB - FINRA OTC Bulletin Board - OTC Pink - OTCQB - OTCQX - PDEx - Philippine Dealing Exchange - PEX - Palestine Exchange - PFTS - PFTS Ukraine Stock Exchange - POMSoX - Port Moresby Stock Exchange - PRA - Prague Stock Exchange - PSE - Philippine Stock Exchange - PSX - Pakistan Stock Exchange - QSE - Qatar Stock Exchange - RFB - Riga Stock Exchange - RSE - Rwanda Stock Exchange - RSEBL - Royal Securities Exchange of Bhutan - SASE - Sarajevo Stock Exchange - SBX - BX Swiss - SEHK - The Stock Exchange of Hong Kong - SEM - Stock Exchange of Mauritius - SGBV - Algiers Stock Exchange - SGX - Singapore Stock Exchange - SIX - SIX Swiss Exchange - SPBEX - Saint Petersburg Stock Exchange - SPSE - South Pacific Stock Exchange - SSE - Shanghai Stock Exchange - SSX - Sydney Stock Exchange - STO - Stockholm Stock Exchange - STU - Börse Stuttgart - SWX - SIX Swiss Exchange - SZSE - Shenzhen Stock Exchange - TSE - Tallinn Stock Exchange - TFEX - Thailand Futures Exchange - TISE - The International Stock Exchange - TLV - Tel Aviv Stock Exchange - TWSE - Taiwan Stock Exchange - TSE - Tirana Stock Exchange - TSE - Tehran Stock Exchange - TWO - Taiwan OTC Exchange - TSX - Toronto Stock Exchange - TSX-V - Toronto TSX Venture Exchange - TYO - Tokyo Stock Exchange - TTSE - Trinidad and Tobago Stock Exchange - Tadawul - Saudi Stock Exchange - USE - Uganda Securities Exchange - UX - Ukrainian Exchange - VIE - Vienna Stock Exchange - VMF - Faroese Securities Market - VSE - Vancouver Stock Exchange - WSE - Warsaw Stock Exchange - YSX - Yangon Stock Exchange - ZAMACE - Zambian Commodity Exchange - ZSE - Zimbabwe Stock Exchange - ZSE - Zagreb Stock Exchange x-cb-field-enum-values: - value: adx description: ADX - Abu Dhabi Securities Exchange - value: afx description: AFX - Afghanistan Stock Exchange - value: altx description: ALTX - ALTX East Africa Exchange - value: amx description: AMX - Armenia Securities Exchange - value: amex description: AMEX - American Stock Exchange - value: ams description: AMS - Euronext Amsterdam - value: asce description: ASCE - Abuja Securities and Commodities Exchange - value: asx description: ASX - Australian Securities Exchange - value: ath description: ATH - Athens Stock Exchange - value: bcba description: BCBA - Buenos Aires Stock Exchange - value: bdp description: BDP - Budapest Stock Exchange - value: belex description: BELEX - Belgrade Stock Exchange - value: ber description: BER - Berliner Börse - value: bfb description: BFB - Baku Stock Exchange - value: bit description: BIT - Italian Stock Exchange - value: bkk description: BKK - Thailand Stock Exchange - value: blse description: BLSE - Banja Luka Stock Exchange - value: bme description: BME - Madrid Stock Exchange - value: bmv description: BMV - Mexican Stock Exchange - value: bom description: BOM - Bombay Stock Exchange - value: brvm description: BRVM - Regional Securities Exchange SA - value: bse description: BSE - Bulgarian Stock Exchange - value: bse_lb description: BSE - Beirut Stock Exchange - value: bsse description: BSSE - Bratislava Stock Exchange - value: bsx description: BSX - Bermuda Stock Exchange - value: bvb description: BVB - Bucharest Stock Exchange - value: bvc description: BVC - Colombian Stock Exchange - value: bvfb description: BVFB - Belarusian Currency and Stock Exchange - value: bvm description: BVM - Montevideo Stock Exchange - value: bvmf description: B3 - Brazil Stock Exchange and OTC Market - value: bvmt description: BVMT - Tunis Stock Exchange - value: bx description: BX - Berne Stock Exchange - value: cas description: CAS - Casablanca Stock Exchange - value: cise description: CISE - Channel Islands Stock Exchange - value: cnsx description: CNSX - Canadian National Stock Exchange - value: col description: COL - Colombo Stock Exchange - value: cph description: CPH - Copenhagen Stock Exchange - value: cse description: CSE - Canadian Securities Exchange - value: cse_cy description: CSE - Cyprus Stock Exchange - value: csx description: CSX - Cambodia Securities Exchange - value: dfm description: DFM - Dubai Financial Market - value: dse description: DSE - Dhaka Stock Exchange - value: dsx description: DSX - Douala Stock Exchange - value: dus description: DUS - Börse Düsseldorf - value: ebr description: EBR - Euronext Brussels - value: egx description: EGX - Egypt Stock Exchange - value: eli description: ELI - Euronext Lisbon - value: epa description: EPA - Euronext Paris - value: etr description: ETR - Deutsche Börse XETRA - value: eurex description: EUREX - Eurex Exchange - value: fra description: FRA - Frankfurt Stock Exchange - value: fwb description: FWB - Börse Frankfurt Stock Exchange - value: gha description: GHA - Ghana Stock Exchange - value: gsx description: GSX - Georgian Stock Exchange - value: gsx_gi description: GSX - Gibraltar Stock Exchange - value: hel description: HEL - Helsinki Stock Exchange - value: hkg description: HKG - Hong Kong Stock Exchange - value: hnx description: HNX - Hanoi Stock Exchange - value: hose description: HOSE - Ho Chi Minh Stock Exchange - value: ice description: ICE - Iceland Stock Exchange - value: idx description: IDX - Indonesia Stock Exchange - value: iex description: IEX - Investors Exchange - value: ifb description: IFB - Iran Fara Bourse - value: ime description: IME - Iran Mercantile Exchange - value: irenex description: IRENEX - Iran Energy Exchange - value: ise description: ISE - Irish Stock Exchange - value: ist description: IST - Istanbul Stock Exchange - value: isx description: ISX - Iraq Stock Exchange - value: jp description: JP - Japan Exchange - value: jsc description: JSC - Belarusian Currency and Stock Exchange - value: jse description: JSE - Johannesburg Stock Exchange - value: jse_jam description: JSE - Jamaica Stock Exchange - value: kase description: KASE - Kazakhstan Stock Exchange - value: klse description: KLSE - Malaysia Stock Exchange - value: kosdaq description: KOSDAQ - Korean Securities Dealers Automated Quotations - value: krx description: KRX - Korea Stock Exchange - value: kse description: KSE - Kuwait Stock Exchange - value: lje description: LJE - Ljubljana Stock Exchange - value: lse description: LSE - London Stock Exchange - value: lsm description: LSM - Libyan Stock Market - value: lsx description: LSX - Lao Securities Exchange - value: luse description: LuSE - Lusaka Securities Exchange - value: luxse description: LuxSE - Luxembourg Stock Exchange - value: mal description: MAL - Malta Stock Exchange - value: mcx description: MCX - Multi Commodity Exchange of India - value: meff description: MEFF - Mercado Spanish Financial Futures Market - value: mnse description: MNSE - Montenegro Stock Exchange - value: moex description: MOEX - Moscow Exchange - value: mse description: MSE - Metropolitan Stock Exchange - value: mse_md description: MSE - Moldova Stock Exchange - value: mse_mk description: MSE - Macedonian Stock Exchange - value: msei description: MSEI - Metropolitan Stock Exchange of India - value: msm description: MSM - Muscat Securities Market - value: mun description: MUN - Börse München - value: nasdaq description: NASDAQ - value: nbo description: NSE - Nairobi Securities Exchange - value: nex description: NEX - NEX Exchange - value: nepse description: NEPSE - Nepal Stock Exchange - value: neeq description: NEEQ - National Equities Exchange and Quotations - value: ngm description: NGM - Nordic Growth Market Exchange - value: nig description: NIG - Nigerian Stock Exchange - value: notc description: NOTC - Norwegian OTC - value: npex description: NPEX - NPEX Stock Exchange - value: nse description: NSE - National Stock Exchange of India - value: nsx description: NSX - National Stock Exchange of Australia - value: nyse description: NYSE - New York Stock Exchange - value: nysearca description: NYSEARCA - NYSE Arca - value: nysemkt description: NYSEAMERICAN - NYSE American - value: nze description: NZE - New Zealand Stock Exchange - value: ose description: OSE - Oslo Stock Exchange - value: otcbb description: OTCBB - FINRA OTC Bulletin Board - value: otcpink description: OTC Pink - value: otcqb description: OTCQB - value: otcqx description: OTCQX - value: pdex description: PDEx - Philippine Dealing Exchange - value: pex description: PEX - Palestine Exchange - value: pfts description: PFTS - PFTS Ukraine Stock Exchange - value: pomsox description: POMSoX - Port Moresby Stock Exchange - value: prg description: PRA - Prague Stock Exchange - value: pse description: PSE - Philippine Stock Exchange - value: psx description: PSX - Pakistan Stock Exchange - value: qse description: QSE - Qatar Stock Exchange - value: rfb description: RFB - Riga Stock Exchange - value: rse description: RSE - Rwanda Stock Exchange - value: rsebl description: RSEBL - Royal Securities Exchange of Bhutan - value: sase description: SASE - Sarajevo Stock Exchange - value: sbx description: SBX - BX Swiss - value: sehk description: SEHK - The Stock Exchange of Hong Kong - value: sem description: SEM - Stock Exchange of Mauritius - value: sgbv description: SGBV - Algiers Stock Exchange - value: sgx description: SGX - Singapore Stock Exchange - value: six description: SIX - SIX Swiss Exchange - value: spbex description: SPBEX - Saint Petersburg Stock Exchange - value: spse description: SPSE - South Pacific Stock Exchange - value: sse description: SSE - Shanghai Stock Exchange - value: ssx description: SSX - Sydney Stock Exchange - value: sto description: STO - Stockholm Stock Exchange - value: stu description: STU - Börse Stuttgart - value: swx description: SWX - SIX Swiss Exchange - value: szse description: SZSE - Shenzhen Stock Exchange - value: tal description: TSE - Tallinn Stock Exchange - value: tfex description: TFEX - Thailand Futures Exchange - value: tise description: TISE - The International Stock Exchange - value: tlv description: TLV - Tel Aviv Stock Exchange - value: tpe description: TWSE - Taiwan Stock Exchange - value: tse_al description: TSE - Tirana Stock Exchange - value: tse_ir description: TSE - Tehran Stock Exchange - value: tsec description: TWO - Taiwan OTC Exchange - value: tsx description: TSX - Toronto Stock Exchange - value: cve description: TSX-V - Toronto TSX Venture Exchange - value: tyo description: TYO - Tokyo Stock Exchange - value: ttse description: TTSE - Trinidad and Tobago Stock Exchange - value: tadawul description: Tadawul - Saudi Stock Exchange - value: use description: USE - Uganda Securities Exchange - value: ux description: UX - Ukrainian Exchange - value: vie description: VIE - Vienna Stock Exchange - value: vmf description: VMF - Faroese Securities Market - value: vse description: VSE - Vancouver Stock Exchange - value: wse description: WSE - Warsaw Stock Exchange - value: ysx description: YSX - Yangon Stock Exchange - value: zamace description: ZAMACE - Zambian Commodity Exchange - value: zse description: ZSE - Zimbabwe Stock Exchange - value: zse_hr description: ZSE - Zagreb Stock Exchange x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes stock_symbol: type: object description: Stock ticker symbol (e.g. AAPL, FB, TWTR) allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts twitter: type: object description: Link to an organization's X page allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes valuation: type: object description: Latest post money valuation of organization allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq valuation_date: type: string description: Date of latest post money valuation format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte website: type: object description: Link to homepage allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] website_url: type: string description: Link to homepage maxLength: 8192 x-cb-field-type: url x-cb-searchable: true x-cb-search-operators: - domain_blank - domain_eq - domain_includes - not_domain_eq - not_domain_includes went_public_on: type: string description: The date when the Organization went public format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte PartnershipAnnouncementFieldId: type: string description: PartnershipAnnouncement field ids enum: - created_at - description - entity_def_id - identifier - key_event_date - organization - press_reference_link - sentiment - updated_at - uuid EntityIdentifier_4: type: object description: Every entity in the system has a unique identifier that contains all necessary properties to represent it. required: - entity_def_id - uuid properties: entity_def_id: type: string enum: - acquisition - address - award - category - category_group - market_insight - market_insight_reason - current_valuation_estimate - degree - diversity_spotlight - event - event_appearance - fund - funding_round - growth_insight - investment - investor_insight - investor_match - ipo - job - key_employee_change - layoff - legal_proceeding - location - micro_category - organization - org_similarity - product_similarity - ownership - partnership_announcement - person - press_reference - product - product_launch - research_insight image_id: type: string maxLength: 255 permalink: type: string maxLength: 255 uuid: type: string description: Universally Unique Identifier format: uuid value: type: string maxLength: 255 InvestorMatch: type: object required: - identifier properties: created_at: type: string description: Time of creation format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: 'Entity Def Type * investor_match - Investor Match' enum: - investor_match x-enum-descriptions: - Investor Match x-cb-field-enum-values: - value: investor_match description: Investor Match x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Investor Match Title allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts investor: type: object description: Unique identifier for the investor associated with this funding prediction allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts local_rank: type: number description: Ranking indicating the strength of the investor match x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq organization: type: object description: Unique identifier for the organization associated with this investor match allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts updated_at: type: string description: Time of Update format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string description: UUID format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes KeyEmployeeChange: type: object required: - identifier properties: created_at: type: string description: Time of Creation format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte description: type: string description: Description of the event maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] entity_def_id: type: string description: 'Entity Def Type * key_employee_change - Key Employee Change' enum: - key_employee_change x-enum-descriptions: - Key Employee Change x-cb-field-enum-values: - value: key_employee_change description: Key Employee Change x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Key employee change identifier allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts key_event_date: type: string description: Date when the news article was posted format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte organization_identifier: type: object description: Organization that had a key employee change mentioned allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts press_reference_link: type: object description: Title of the news article allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] sentiment: type: string description: 'Sentiment associated with key employee change * c100_positive - Positive * c200_neutral - Neutral * c300_negative - Negative' enum: - c100_positive - c200_neutral - c300_negative x-enum-descriptions: - Positive - Neutral - Negative x-cb-field-enum-values: - value: c100_positive description: Positive - value: c200_neutral description: Neutral - value: c300_negative description: Negative x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes updated_at: type: string description: Time of Update format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string description: UUID format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes MarketInsightReasonFieldId: type: string description: MarketInsightReason field ids enum: - created_at - entity_def_id - identifier - market_insight - market_insight_generated_on - market_insight_subject - metric_basis - percent_change - reason_kind - timeframe - updated_at - uuid OrganizationEntity_4: type: object properties: cards: type: object properties: acquiree_acquisitions: type: array items: $ref: '#/components/schemas/Acquisition_2' acquirer_acquisitions: type: array items: $ref: '#/components/schemas/Acquisition_2' addresses: type: array items: $ref: '#/components/schemas/Address_2' awards: type: array items: $ref: '#/components/schemas/Award' child_organizations: type: array items: $ref: '#/components/schemas/Organization_4' child_ownerships: type: array items: $ref: '#/components/schemas/Ownership' current_valuation_estimates: type: array items: $ref: '#/components/schemas/CurrentValuationEstimate' event_appearances: type: array items: $ref: '#/components/schemas/EventAppearance' fields: $ref: '#/components/schemas/Organization_4' founders: type: array items: $ref: '#/components/schemas/Person' growth_insights: type: array items: $ref: '#/components/schemas/GrowthInsight' headquarters_address: type: array items: $ref: '#/components/schemas/Address_2' investor_insights: type: array items: $ref: '#/components/schemas/InvestorInsight' investor_matches: type: array items: $ref: '#/components/schemas/InvestorMatch' investors: type: array items: $ref: '#/components/schemas/Principal' ipos: type: array items: $ref: '#/components/schemas/Ipo_3' jobs: type: array items: $ref: '#/components/schemas/Job' key_employee_changes: type: array items: $ref: '#/components/schemas/KeyEmployeeChange' layoffs: type: array items: $ref: '#/components/schemas/Layoff' legal_proceedings: type: array items: $ref: '#/components/schemas/LegalProceeding' parent_organization: type: array items: $ref: '#/components/schemas/Organization_4' parent_ownership: type: array items: $ref: '#/components/schemas/Ownership' participated_funding_rounds: type: array items: $ref: '#/components/schemas/FundingRound_2' participated_funds: type: array items: $ref: '#/components/schemas/Fund' participated_investments: type: array items: $ref: '#/components/schemas/Investment' partnership_announcements: type: array items: $ref: '#/components/schemas/PartnershipAnnouncement' press_references: type: array items: $ref: '#/components/schemas/PressReference' product_launches: type: array items: $ref: '#/components/schemas/ProductLaunch' products: type: array items: $ref: '#/components/schemas/Product' raised_funding_rounds: type: array items: $ref: '#/components/schemas/FundingRound_2' raised_funds: type: array items: $ref: '#/components/schemas/Fund' raised_investments: type: array items: $ref: '#/components/schemas/Investment' research_insights: type: array items: $ref: '#/components/schemas/ResearchInsight' similar_organizations: type: array items: $ref: '#/components/schemas/OrgSimilarity' properties: $ref: '#/components/schemas/Organization_4' ProductLaunch: type: object required: - identifier properties: created_at: type: string description: Time of Creation format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte description: type: string description: Brief summary of context maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] entity_def_id: type: string description: 'Entity Def Type * product_launch - Product Launch' enum: - product_launch x-enum-descriptions: - Product Launch x-cb-field-enum-values: - value: product_launch description: Product Launch x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Product launch identifier allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts key_event_date: type: string description: Date when the news article was posted format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte organization: type: object description: Organization that had a product launch mentioned allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts press_reference_link: type: object description: Title of the news article allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] updated_at: type: string description: Time of Update format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string description: UUID format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes OrgSimilarity: type: object required: - identifier properties: additional_reasons: type: array items: type: string description: '* global_location_overlap - Global Location Overlap' enum: - global_location_overlap x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all category_overlap: type: array description: Shared Industries items: $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all created_at: type: string description: Created At format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* org_similarity - Organization Similarity' enum: - org_similarity x-enum-descriptions: - Organization Similarity x-cb-field-enum-values: - value: org_similarity description: Organization Similarity x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Organization Similarity allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts location_overlap: type: array items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all product_similarities: type: array description: Product Similarities items: $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all score: type: number format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq source: type: object allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts target: type: object allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts updated_at: type: string description: Updated At format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes InvestorMatchFieldId: type: string description: InvestorMatch field ids enum: - created_at - entity_def_id - identifier - investor - local_rank - organization - updated_at - uuid FundingRoundFieldId_2: type: string description: FundingRound field ids enum: - announced_on - closed_on - created_at - entity_def_id - funded_organization_categories - funded_organization_description - funded_organization_diversity_spotlights - funded_organization_funding_stage - funded_organization_funding_total - funded_organization_identifier - funded_organization_location - funded_organization_revenue_range - identifier - image_id - investment_stage - investment_type - investor_identifiers - is_equity - lead_investor_identifiers - money_raised - name - num_investors - num_partners - permalink - post_money_valuation - post_money_valuation_source - pre_money_valuation - rank - rank_funding_round - sentiment - short_description - target_money_raised - updated_at - uuid InvestorInsightEntity: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/InvestorInsight' properties: $ref: '#/components/schemas/InvestorInsight' InvestorMatchEntity: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/InvestorMatch' properties: $ref: '#/components/schemas/InvestorMatch' LegalProceedingEntity: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/LegalProceeding' properties: $ref: '#/components/schemas/LegalProceeding' LayoffEntity: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/Layoff' properties: $ref: '#/components/schemas/Layoff' Layoff: type: object required: - identifier properties: created_at: type: string description: Laoyff entity creation date format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: 'Layoff Signal * layoff - layoff' enum: - layoff x-enum-descriptions: - layoff x-cb-field-enum-values: - value: layoff description: layoff x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Layoff identifier allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts key_event_date: type: string description: Date when the news article was posted format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte organization_identifier: type: object description: Organization that had a layoff mentioned allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts press_reference_link: type: object description: Title of the news article allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] sentiment: type: string description: 'Sentiment of the news article(s) that mention this layoff * c100_positive - Positive * c200_neutral - Neutral * c300_negative - Negative' enum: - c100_positive - c200_neutral - c300_negative x-enum-descriptions: - Positive - Neutral - Negative x-cb-field-enum-values: - value: c100_positive description: Positive - value: c200_neutral description: Neutral - value: c300_negative description: Negative x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes updated_at: type: string description: Entity Updating date format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string description: Entity UUID format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes AwardFieldId: type: string description: Award field ids enum: - created_at - description - entity_def_id - identifier - key_event_date - name - organization - press_reference_link - sentiment - updated_at - uuid CategoryFieldId_2: type: string description: Category field ids enum: - category_groups - created_at - entity_def_id - identifier - last_market_insight_direction - naics_code - name - updated_at - uuid Location_2: type: object required: - identifier properties: country_code: type: string description: Short alphabetic or numeric geographical codes that represent countries (e.g. TWN, USA, ZAF) maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] country_code_ext: type: string maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] created_at: type: string description: Created At format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* location - Location' enum: - location x-enum-descriptions: - Location x-cb-field-enum-values: - value: location description: Location x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes facet_ids: type: array description: Type of location (e.g. City, Continent, Regional Area) items: type: string x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all groups: type: array description: Regional areas this location belongs to (e.g. San Francisco Bay Area, Silicon Valley) items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all identifier: type: object description: Short location name (e.g. Japan, San Francisco, Europe) allOf: - $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts location_type: type: string description: 'Type of location (e.g. City, Continent, Regional Area) * city - City * continent - Continent * country - Country * group - Regional Area * region - Region' enum: - city - region - country - continent - group x-enum-descriptions: - City - Region - Country - Continent - Regional Area x-cb-field-enum-values: - value: city description: City - value: region description: Region - value: country description: Country - value: continent description: Continent - value: group description: Regional Area x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes locations: type: array description: Full location name (e.g. Denver, Colorado, United States, North America) items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all name: type: string maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] permalink: type: string maxLength: 255 x-cb-field-type: permalink x-cb-searchable: false x-cb-search-operators: [] permalink_aliases: type: array description: These are the alternative aliases to the primary permalink of the Organization items: type: string maxLength: 255 x-cb-field-type: text_exact_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all region_code: type: string description: Region code used to define location maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] short_description: type: string description: Description maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains updated_at: type: string description: Updated At format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes GrowthInsightFieldId: type: string description: GrowthInsight field ids enum: - created_at - customers - description - engagement - entity_def_id - finance - funding_raised - generated_on - growth_confidence - growth_direction - headcount - identifier - market_share - mergers_acquisitions - operations - organization - outbound_investment - press_references - updated_at - uuid CurrentValuationEstimate: type: object required: - identifier properties: created_at: type: string description: Time of Creation format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte current_valuation: type: object description: Estimated current valuation. allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq entity_def_id: type: string description: 'Entity Def Type * current_valuation_estimate - Current Valuation Estimate' enum: - current_valuation_estimate x-enum-descriptions: - Current Valuation Estimate x-cb-field-enum-values: - value: current_valuation_estimate description: Current Valuation Estimate x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes estimate_confidence_tier: type: string description: 'Confidence tier for the current valuation estimate. * c100_high - High * c200_medium - Medium * c300_low - Low' enum: - c100_high - c200_medium - c300_low x-enum-descriptions: - High - Medium - Low x-cb-field-enum-values: - value: c100_high description: High - value: c200_medium description: Medium - value: c300_low description: Low x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes estimated_lower_bound: type: object description: Lower bound of the estimated current valuation range. allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq estimated_upper_bound: type: object description: Upper bound of the estimated current valuation range. allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq financials_impact_tier: type: string description: 'Impact of financial signals on the current valuation estimate. * p100_positive_high - Strong Positive Impact * p200_positive_low - Slight Positive Impact * p300_neutral - Neutral Impact * p400_negative_low - Slight Negative Impact * p500_negative_high - Strong Negative Impact' enum: - p100_positive_high - p200_positive_low - p300_neutral - p400_negative_low - p500_negative_high x-enum-descriptions: - Strong Positive Impact - Slight Positive Impact - Neutral Impact - Slight Negative Impact - Strong Negative Impact x-cb-field-enum-values: - value: p100_positive_high description: Strong Positive Impact - value: p200_positive_low description: Slight Positive Impact - value: p300_neutral description: Neutral Impact - value: p400_negative_low description: Slight Negative Impact - value: p500_negative_high description: Strong Negative Impact x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes financials_reasons: type: array description: Explanation for the impact of financial signals used in this current valuation estimate. items: type: string maxLength: 8192 x-cb-field-type: text_blob_multi x-cb-searchable: false x-cb-search-operators: [] generated_on: type: string description: Date on which this current valuation estimate was generated. format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte identifier: type: object description: Current Valuation Estimate Title allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts industry_performance_impact_tier: type: string description: 'Impact of industry performance signals on the current valuation estimate. * p100_positive_high - Strong Positive Impact * p200_positive_low - Slight Positive Impact * p300_neutral - Neutral Impact * p400_negative_low - Slight Negative Impact * p500_negative_high - Strong Negative Impact' enum: - p100_positive_high - p200_positive_low - p300_neutral - p400_negative_low - p500_negative_high x-enum-descriptions: - Strong Positive Impact - Slight Positive Impact - Neutral Impact - Slight Negative Impact - Strong Negative Impact x-cb-field-enum-values: - value: p100_positive_high description: Strong Positive Impact - value: p200_positive_low description: Slight Positive Impact - value: p300_neutral description: Neutral Impact - value: p400_negative_low description: Slight Negative Impact - value: p500_negative_high description: Strong Negative Impact x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes industry_performance_reasons: type: array description: Explanation for the impact of industry performance signals used in this current valuation estimate. items: type: string maxLength: 8192 x-cb-field-type: text_blob_multi x-cb-searchable: false x-cb-search-operators: [] market_equity_impact_tier: type: string description: 'Impact of market equity signals on the current valuation estimate. * p100_positive_high - Strong Positive Impact * p200_positive_low - Slight Positive Impact * p300_neutral - Neutral Impact * p400_negative_low - Slight Negative Impact * p500_negative_high - Strong Negative Impact' enum: - p100_positive_high - p200_positive_low - p300_neutral - p400_negative_low - p500_negative_high x-enum-descriptions: - Strong Positive Impact - Slight Positive Impact - Neutral Impact - Slight Negative Impact - Strong Negative Impact x-cb-field-enum-values: - value: p100_positive_high description: Strong Positive Impact - value: p200_positive_low description: Slight Positive Impact - value: p300_neutral description: Neutral Impact - value: p400_negative_low description: Slight Negative Impact - value: p500_negative_high description: Strong Negative Impact x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes market_equity_reasons: type: array description: Explanation for the impact of market equity signals used in this current valuation estimate. items: type: string maxLength: 8192 x-cb-field-type: text_blob_multi x-cb-searchable: false x-cb-search-operators: [] misc_impact_tier: type: string description: 'Impact of miscellaneous signals on the current valuation estimate. * p100_positive_high - Strong Positive Impact * p200_positive_low - Slight Positive Impact * p300_neutral - Neutral Impact * p400_negative_low - Slight Negative Impact * p500_negative_high - Strong Negative Impact' enum: - p100_positive_high - p200_positive_low - p300_neutral - p400_negative_low - p500_negative_high x-enum-descriptions: - Strong Positive Impact - Slight Positive Impact - Neutral Impact - Slight Negative Impact - Strong Negative Impact x-cb-field-enum-values: - value: p100_positive_high description: Strong Positive Impact - value: p200_positive_low description: Slight Positive Impact - value: p300_neutral description: Neutral Impact - value: p400_negative_low description: Slight Negative Impact - value: p500_negative_high description: Strong Negative Impact x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes misc_reasons: type: array description: Explanation for the impact of miscellaneous signals used in this current valuation estimate. items: type: string maxLength: 8192 x-cb-field-type: text_blob_multi x-cb-searchable: false x-cb-search-operators: [] organization: type: object description: Unique identifier for the organization associated with this current valuation estimate. allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts updated_at: type: string description: Time of Update format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string description: UUID format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes OrganizationFieldId_4: type: string description: Organization field ids enum: - acquirer_identifier - aliases - categories - category_groups - closed_on - company_type - contact_email - created_at - delisted_on - demo_days - description - diversity_spotlights - entity_def_id - equity_funding_total - exited_on - facebook - facet_ids - founded_on - founder_identifiers - funding_stage - funding_total - funds_total - growth_insight_confidence - growth_insight_direction - growth_score - growth_score_delta_d90 - heat_score - heat_score_delta_d90 - hub_tags - identifier - image_id - image_url - investor_identifiers - investor_stage - investor_type - ipo_status - last_equity_funding_total - last_equity_funding_type - last_funding_at - last_funding_total - last_funding_type - last_key_employee_change_date - last_layoff_date - last_market_insights - layout_id - legal_name - linkedin - listed_stock_symbol - location_group_identifiers - location_identifiers - micro_categories - name - num_acquisitions - num_alumni - num_articles - num_current_advisor_positions - num_current_positions - num_diversity_spotlight_investments - num_employees_enum - num_enrollments - num_event_appearances - num_exits - num_exits_ipo - num_founder_alumni - num_founders - num_funding_rounds - num_funds - num_investments - num_investors - num_lead_investments - num_lead_investors - num_past_positions - num_portfolio_organizations - num_sub_organizations - operating_status - owner_identifier - permalink - permalink_aliases - phone_number - program_application_deadline - program_duration - program_type - rank - rank_delta_d30 - rank_delta_d7 - rank_delta_d90 - rank_org - revenue_range - school_method - school_program - school_type - short_description - status - stock_exchange_symbol - stock_symbol - twitter - updated_at - uuid - valuation - valuation_date - website - website_url - went_public_on CategoryGroup_2: type: object required: - identifier properties: categories: type: array description: Descriptive keyword for an Organization (e.g. SaaS, Android, Cloud Computing, Medical Device) items: $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* category_group - Industry Group' enum: - category_group x-enum-descriptions: - Industry Group x-cb-field-enum-values: - value: category_group description: Industry Group x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Superset of Industries (e.g. Software, Mobile, Health Care) allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts last_market_insight_direction: type: string description: '* c100_growing - Growing * c200_stable - Stable * c300_declining - Declining' enum: - c100_growing - c200_stable - c300_declining x-enum-descriptions: - Growing - Stable - Declining x-cb-field-enum-values: - value: c100_growing description: Growing - value: c200_stable description: Stable - value: c300_declining description: Declining x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes name: type: string description: Descriptive name of the Industry Group maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes Acquisition_2: type: object required: - identifier properties: acquiree_categories: type: array description: Keyword, sector, or industry items: $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all acquiree_funding_total: type: object description: Total funding amount raised across all acquired organization's funding rounds allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq acquiree_identifier: type: object description: Name of the acquired organization allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts acquiree_last_funding_type: type: string description: 'Last funding round type (e.g. Series A, Seed, Private Equity) * angel - Angel * convertible_note - Convertible Note * corporate_round - Corporate Round * debt_financing - Debt Financing * equity_crowdfunding - Equity Crowdfunding * grant - Grant * initial_coin_offering - Initial Coin Offering * non_equity_assistance - Non-equity Assistance * post_ipo_debt - Post-IPO Debt * post_ipo_equity - Post-IPO Equity * post_ipo_secondary - Post-IPO Secondary * pre_seed - Pre-Seed * private_equity - Private Equity * product_crowdfunding - Product Crowdfunding * secondary_market - Secondary Market * seed - Seed * series_a - Series A * series_b - Series B * series_c - Series C * series_d - Series D * series_e - Series E * series_f - Series F * series_g - Series G * series_h - Series H * series_i - Series I * series_j - Series J * series_unknown - Venture - Series Unknown * undisclosed - Undisclosed' enum: - pre_seed - seed - series_a - series_b - series_c - series_d - series_e - series_f - series_g - series_h - series_i - series_j - series_unknown - angel - private_equity - debt_financing - convertible_note - grant - corporate_round - equity_crowdfunding - product_crowdfunding - secondary_market - post_ipo_equity - post_ipo_debt - post_ipo_secondary - non_equity_assistance - initial_coin_offering - undisclosed x-enum-descriptions: - Pre-Seed - Seed - Series A - Series B - Series C - Series D - Series E - Series F - Series G - Series H - Series I - Series J - Venture - Series Unknown - Angel - Private Equity - Debt Financing - Convertible Note - Grant - Corporate Round - Equity Crowdfunding - Product Crowdfunding - Secondary Market - Post-IPO Equity - Post-IPO Debt - Post-IPO Secondary - Non-equity Assistance - Initial Coin Offering - Undisclosed x-cb-field-enum-values: - value: pre_seed description: Pre-Seed - value: seed description: Seed - value: series_a description: Series A - value: series_b description: Series B - value: series_c description: Series C - value: series_d description: Series D - value: series_e description: Series E - value: series_f description: Series F - value: series_g description: Series G - value: series_h description: Series H - value: series_i description: Series I - value: series_j description: Series J - value: series_unknown description: Venture - Series Unknown - value: angel description: Angel - value: private_equity description: Private Equity - value: debt_financing description: Debt Financing - value: convertible_note description: Convertible Note - value: grant description: Grant - value: corporate_round description: Corporate Round - value: equity_crowdfunding description: Equity Crowdfunding - value: product_crowdfunding description: Product Crowdfunding - value: secondary_market description: Secondary Market - value: post_ipo_equity description: Post-IPO Equity - value: post_ipo_debt description: Post-IPO Debt - value: post_ipo_secondary description: Post-IPO Secondary - value: non_equity_assistance description: Non-equity Assistance - value: initial_coin_offering description: Initial Coin Offering - value: undisclosed description: Undisclosed x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes acquiree_locations: type: array description: Where the acquired organization is headquartered items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all acquiree_num_funding_rounds: type: number description: Acquired organization's total number of funding rounds x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq acquiree_revenue_range: type: string description: 'Estimated revenue range for acquired organization * r_00000000 - Less than $1M * r_00001000 - $1M to $10M * r_00010000 - $10M to $50M * r_00050000 - $50M to $100M * r_00100000 - $100M to $500M * r_00500000 - $500M to $1B * r_01000000 - $1B to $10B * r_10000000 - $10B+' enum: - r_00000000 - r_00001000 - r_00010000 - r_00050000 - r_00100000 - r_00500000 - r_01000000 - r_10000000 x-enum-descriptions: - Less than $1M - $1M to $10M - $10M to $50M - $50M to $100M - $100M to $500M - $500M to $1B - $1B to $10B - $10B+ x-cb-field-enum-values: - value: r_00000000 description: Less than $1M - value: r_00001000 description: $1M to $10M - value: r_00010000 description: $10M to $50M - value: r_00050000 description: $50M to $100M - value: r_00100000 description: $100M to $500M - value: r_00500000 description: $500M to $1B - value: r_01000000 description: $1B to $10B - value: r_10000000 description: $10B+ x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes acquiree_short_description: type: string description: Text of acquired organization's description, industries, and industry groups maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains acquirer_categories: type: array description: Keyword, sector, or industry items: $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all acquirer_funding_stage: type: string description: 'Acquiring organization''s most recent funding status * early_stage_venture - Early Stage Venture * ipo - IPO * late_stage_venture - Late Stage Venture * m_and_a - M&A * private_equity - Private Equity * seed - Seed' enum: - seed - early_stage_venture - late_stage_venture - private_equity - m_and_a - ipo x-enum-descriptions: - Seed - Early Stage Venture - Late Stage Venture - Private Equity - M&A - IPO x-cb-field-enum-values: - value: seed description: Seed - value: early_stage_venture description: Early Stage Venture - value: late_stage_venture description: Late Stage Venture - value: private_equity description: Private Equity - value: m_and_a description: M&A - value: ipo description: IPO x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes acquirer_funding_total: type: object description: Total funding amount raised across all acquiring organization's funding rounds allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq acquirer_identifier: type: object description: Name of the acquiring organization allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts acquirer_locations: type: array description: Where the organization is headquartered items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all acquirer_num_funding_rounds: type: number description: Acquiring organization's total number of funding rounds x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq acquirer_revenue_range: type: string description: 'Estimated revenue range for acquiring organization * r_00000000 - Less than $1M * r_00001000 - $1M to $10M * r_00010000 - $10M to $50M * r_00050000 - $50M to $100M * r_00100000 - $100M to $500M * r_00500000 - $500M to $1B * r_01000000 - $1B to $10B * r_10000000 - $10B+' enum: - r_00000000 - r_00001000 - r_00010000 - r_00050000 - r_00100000 - r_00500000 - r_01000000 - r_10000000 x-enum-descriptions: - Less than $1M - $1M to $10M - $10M to $50M - $50M to $100M - $100M to $500M - $500M to $1B - $1B to $10B - $10B+ x-cb-field-enum-values: - value: r_00000000 description: Less than $1M - value: r_00001000 description: $1M to $10M - value: r_00010000 description: $10M to $50M - value: r_00050000 description: $50M to $100M - value: r_00100000 description: $100M to $500M - value: r_00500000 description: $500M to $1B - value: r_01000000 description: $1B to $10B - value: r_10000000 description: $10B+ x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes acquirer_short_description: type: string description: Text of acquiring organization's description, industries, and industry groups maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains acquisition_type: type: string description: 'Type of acquisition * acquihire - Acquihire * acquisition - Acquisition * lbo - Leveraged Buyout * management_buyout - Management Buyout * merge - Merger' enum: - acquisition - merge - lbo - acquihire - management_buyout x-enum-descriptions: - Acquisition - Merger - Leveraged Buyout - Acquihire - Management Buyout x-cb-field-enum-values: - value: acquisition description: Acquisition - value: merge description: Merger - value: lbo description: Leveraged Buyout - value: acquihire description: Acquihire - value: management_buyout description: Management Buyout x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes announced_on: type: object description: Date the acquisition was announced allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte completed_on: type: object description: Date the Acquisition was completed allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte disposition_of_acquired: type: string description: 'How is the acquired Organization structured after the acquisition * combined - Combined * division - Division * product - Product * separate_entity - Separate Entity * subsidiary - Subsidiary' enum: - subsidiary - separate_entity - combined - division - product x-enum-descriptions: - Subsidiary - Separate Entity - Combined - Division - Product x-cb-field-enum-values: - value: subsidiary description: Subsidiary - value: separate_entity description: Separate Entity - value: combined description: Combined - value: division description: Division - value: product description: Product x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes entity_def_id: type: string description: '* acquisition - Acquisition' enum: - acquisition x-enum-descriptions: - Acquisition x-cb-field-enum-values: - value: acquisition description: Acquisition x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Auto-generated name of transaction (e.g. WhatsApp acquired by Facebook) allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts permalink: type: string maxLength: 255 x-cb-field-type: permalink x-cb-searchable: false x-cb-search-operators: [] price: type: object description: Price of the acquisition allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank: type: number description: Algorithmic rank assigned to the top profiles on Crunchbase x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank_acquisition: type: number description: Algorithmic rank assigned to the top 100,000 most active Acquisitions x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq sentiment: type: string description: 'Sentiment associated with acquisition * c100_positive - Positive * c200_neutral - Neutral * c300_negative - Negative' enum: - c100_positive - c200_neutral - c300_negative x-enum-descriptions: - Positive - Neutral - Negative x-cb-field-enum-values: - value: c100_positive description: Positive - value: c200_neutral description: Neutral - value: c300_negative description: Negative x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes short_description: type: string description: Short description of the Acquisition maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains status: type: string description: 'Status of the acquisition * complete - Complete * pending - Pending' enum: - complete - pending x-enum-descriptions: - Complete - Pending x-cb-field-enum-values: - value: complete description: Complete - value: pending description: Pending x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes terms: type: string description: 'Terms of the acquisition * cash - Cash * cash_and_stock - Cash & Stock * stock - Stock' enum: - cash - stock - cash_and_stock x-enum-descriptions: - Cash - Stock - Cash & Stock x-cb-field-enum-values: - value: cash description: Cash - value: stock description: Stock - value: cash_and_stock description: Cash & Stock x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes Product: type: object required: - identifier properties: created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte description: type: string description: Product description maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] discontinuation_sentiment: type: string description: 'Sentiment associated with product discontinuation * c100_positive - Positive * c200_neutral - Neutral * c300_negative - Negative' enum: - c100_positive - c200_neutral - c300_negative x-enum-descriptions: - Positive - Neutral - Negative x-cb-field-enum-values: - value: c100_positive description: Positive - value: c200_neutral description: Neutral - value: c300_negative description: Negative x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes entity_def_id: type: string description: 'Product * product - Product' enum: - product x-enum-descriptions: - Product x-cb-field-enum-values: - value: product description: Product x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Name of the product allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts launch_sentiment: type: string description: 'Sentiment associated with product launch * c100_positive - Positive * c200_neutral - Neutral * c300_negative - Negative' enum: - c100_positive - c200_neutral - c300_negative x-enum-descriptions: - Positive - Neutral - Negative x-cb-field-enum-values: - value: c100_positive description: Positive - value: c200_neutral description: Neutral - value: c300_negative description: Negative x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes local_rank: type: number description: Rank relative to this organization's other products x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq micro_categories: type: array description: Micro-Industries associated with this product items: $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all organization: type: object description: Unique identifier for the organization associated with this product allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes IpoFieldId_3: type: string description: Ipo field ids enum: - amount_raised - created_at - delisted_on - entity_def_id - identifier - image_id - organization_identifier - permalink - rank - rank_ipo - sentiment - share_price - shares_outstanding - shares_sold - short_description - stock_exchange_symbol - stock_full_symbol - stock_symbol - updated_at - uuid - valuation - went_public_on ProductSimilarityEntity: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/ProductSimilarity' properties: $ref: '#/components/schemas/ProductSimilarity' AddressFieldId_2: type: string description: Address field ids enum: - country_code - created_at - entity_def_id - headquartered_organization_identifier - identifier - location_identifiers - name - opening_date - opening_description - opening_press_reference_link - organization - postal_code - region_code - street_1 - street_2 - updated_at - uuid LegalProceeding: type: object required: - identifier properties: created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte description: type: string description: Description of legal proceeding maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] entity_def_id: type: string description: 'Proceedings relating to law, regulation, or compliance * legal_proceeding - Legal Proceeding' enum: - legal_proceeding x-enum-descriptions: - Legal Proceeding x-cb-field-enum-values: - value: legal_proceeding description: Legal Proceeding x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Legal proceeding name allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts key_event_date: type: string description: Date of proceeding or when expected format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte name: type: string description: Legal proceeding name maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] organization: type: object description: Organization undergoing legal proceeding allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts press_reference_link: type: object description: News article mentioning legal proceeding allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] proceeding_type: type: string description: 'The type of proceeding * compliance - Compliance * lawsuit - Lawsuit * other - Other * regulatory - Regulatory' enum: - compliance - lawsuit - regulatory - other x-enum-descriptions: - Compliance - Lawsuit - Regulatory - Other x-cb-field-enum-values: - value: compliance description: Compliance - value: lawsuit description: Lawsuit - value: regulatory description: Regulatory - value: other description: Other x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes sentiment: type: string description: 'Sentiment associated with proceeding * c100_positive - Positive * c200_neutral - Neutral * c300_negative - Negative' enum: - c100_positive - c200_neutral - c300_negative x-enum-descriptions: - Positive - Neutral - Negative x-cb-field-enum-values: - value: c100_positive description: Positive - value: c200_neutral description: Neutral - value: c300_negative description: Negative x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes updated_at: type: string description: Date entity was updated format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string description: UUID of legal proceeding entity format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes CategoryGroupEntity_2: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/CategoryGroup_2' market_insights: type: array items: $ref: '#/components/schemas/MarketInsight' properties: $ref: '#/components/schemas/CategoryGroup_2' MarketInsightReasonEntity: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/MarketInsightReason' properties: $ref: '#/components/schemas/MarketInsightReason' MicroCategory: type: object required: - identifier properties: categories: type: array description: Industries containing this Micro-Industry items: $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* micro_category - Micro-Industry' enum: - micro_category x-enum-descriptions: - Micro-Industry x-cb-field-enum-values: - value: micro_category description: Micro-Industry x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Descriptive name for the Micro-Industry (e.g. Agentic AI, Online Bill Payment Services, Secure Document Destruction Services) allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts last_market_insight_direction: type: string description: '* c100_growing - Growing * c200_stable - Stable * c300_declining - Declining' enum: - c100_growing - c200_stable - c300_declining x-enum-descriptions: - Growing - Stable - Declining x-cb-field-enum-values: - value: c100_growing description: Growing - value: c200_stable description: Stable - value: c300_declining description: Declining x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes name: type: string description: Descriptive name of the Micro-Industry maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes Category_2: type: object required: - identifier properties: category_groups: type: array description: Superset of Industries (e.g. Software, Mobile, Health Care) items: $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* category - Industry' enum: - category x-enum-descriptions: - Industry x-cb-field-enum-values: - value: category description: Industry x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Descriptive keyword for a Company (e.g. SaaS, Android, Cloud Computing, Medical Device) allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts last_market_insight_direction: type: string description: '* c100_growing - Growing * c200_stable - Stable * c300_declining - Declining' enum: - c100_growing - c200_stable - c300_declining x-enum-descriptions: - Growing - Stable - Declining x-cb-field-enum-values: - value: c100_growing description: Growing - value: c200_stable description: Stable - value: c300_declining description: Declining x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes naics_code: type: string maxLength: 255 x-cb-field-type: text_exact x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes name: type: string description: Descriptive name of the Industry maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes ProductLaunchFieldId: type: string description: ProductLaunch field ids enum: - created_at - description - entity_def_id - identifier - key_event_date - organization - press_reference_link - updated_at - uuid Ipo_3: type: object required: - identifier properties: amount_raised: type: object description: Total amount raised from the IPO allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte delisted_on: type: object description: Date when the organization delisted its stock allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* ipo - Ipo' enum: - ipo x-enum-descriptions: - Ipo x-cb-field-enum-values: - value: ipo description: Ipo x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Stock ticker symbol (e.g. AAPL, FB, TWTR) allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts image_id: type: string maxLength: 255 x-cb-field-type: image_id x-cb-searchable: false x-cb-search-operators: [] organization_identifier: type: object description: Organization went public allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts permalink: type: string maxLength: 255 x-cb-field-type: permalink x-cb-searchable: false x-cb-search-operators: [] rank: type: number description: Algorithmic rank assigned to the top profiles on Crunchbase x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank_ipo: type: number description: Algorithmic rank assigned to the top 100,000 most active IPOs x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq sentiment: type: string description: 'Sentiment associated with IPO * c100_positive - Positive * c200_neutral - Neutral * c300_negative - Negative' enum: - c100_positive - c200_neutral - c300_negative x-enum-descriptions: - Positive - Neutral - Negative x-cb-field-enum-values: - value: c100_positive description: Positive - value: c200_neutral description: Neutral - value: c300_negative description: Negative x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes share_price: type: object description: The share price for the stock at the time of IPO allOf: - $ref: '#/components/schemas/MoneyDecimal' x-cb-field-type: money_decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq shares_outstanding: type: number description: Number of shares that were outstanding at the time of IPO x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq shares_sold: type: number description: Number of shares sold at the time of IPO x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq short_description: type: string maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains stock_exchange_symbol: type: string description: 'Stock exchange where the Organization is listed (e.g. NYSE, NASDAQ) * adx - ADX - Abu Dhabi Securities Exchange * afx - AFX - Afghanistan Stock Exchange * altx - ALTX - ALTX East Africa Exchange * amex - AMEX - American Stock Exchange * ams - AMS - Euronext Amsterdam * amx - AMX - Armenia Securities Exchange * asce - ASCE - Abuja Securities and Commodities Exchange * asx - ASX - Australian Securities Exchange * ath - ATH - Athens Stock Exchange * bcba - BCBA - Buenos Aires Stock Exchange * bdp - BDP - Budapest Stock Exchange * belex - BELEX - Belgrade Stock Exchange * ber - BER - Berliner Börse * bfb - BFB - Baku Stock Exchange * bit - BIT - Italian Stock Exchange * bkk - BKK - Thailand Stock Exchange * blse - BLSE - Banja Luka Stock Exchange * bme - BME - Madrid Stock Exchange * bmv - BMV - Mexican Stock Exchange * bom - BOM - Bombay Stock Exchange * brvm - BRVM - Regional Securities Exchange SA * bse - BSE - Bulgarian Stock Exchange * bse_lb - BSE - Beirut Stock Exchange * bsse - BSSE - Bratislava Stock Exchange * bsx - BSX - Bermuda Stock Exchange * bvb - BVB - Bucharest Stock Exchange * bvc - BVC - Colombian Stock Exchange * bvfb - BVFB - Belarusian Currency and Stock Exchange * bvm - BVM - Montevideo Stock Exchange * bvmf - B3 - Brazil Stock Exchange and OTC Market * bvmt - BVMT - Tunis Stock Exchange * bx - BX - Berne Stock Exchange * cas - CAS - Casablanca Stock Exchange * cise - CISE - Channel Islands Stock Exchange * cnsx - CNSX - Canadian National Stock Exchange * col - COL - Colombo Stock Exchange * cph - CPH - Copenhagen Stock Exchange * cse - CSE - Canadian Securities Exchange * cse_cy - CSE - Cyprus Stock Exchange * csx - CSX - Cambodia Securities Exchange * cve - TSX-V - Toronto TSX Venture Exchange * dfm - DFM - Dubai Financial Market * dse - DSE - Dhaka Stock Exchange * dsx - DSX - Douala Stock Exchange * dus - DUS - Börse Düsseldorf * ebr - EBR - Euronext Brussels * egx - EGX - Egypt Stock Exchange * eli - ELI - Euronext Lisbon * epa - EPA - Euronext Paris * etr - ETR - Deutsche Börse XETRA * eurex - EUREX - Eurex Exchange * fra - FRA - Frankfurt Stock Exchange * fwb - FWB - Börse Frankfurt Stock Exchange * gha - GHA - Ghana Stock Exchange * gsx - GSX - Georgian Stock Exchange * gsx_gi - GSX - Gibraltar Stock Exchange * hel - HEL - Helsinki Stock Exchange * hkg - HKG - Hong Kong Stock Exchange * hnx - HNX - Hanoi Stock Exchange * hose - HOSE - Ho Chi Minh Stock Exchange * ice - ICE - Iceland Stock Exchange * idx - IDX - Indonesia Stock Exchange * iex - IEX - Investors Exchange * ifb - IFB - Iran Fara Bourse * ime - IME - Iran Mercantile Exchange * irenex - IRENEX - Iran Energy Exchange * ise - ISE - Irish Stock Exchange * ist - IST - Istanbul Stock Exchange * isx - ISX - Iraq Stock Exchange * jp - JP - Japan Exchange * jsc - JSC - Belarusian Currency and Stock Exchange * jse - JSE - Johannesburg Stock Exchange * jse_jam - JSE - Jamaica Stock Exchange * kase - KASE - Kazakhstan Stock Exchange * klse - KLSE - Malaysia Stock Exchange * kosdaq - KOSDAQ - Korean Securities Dealers Automated Quotations * krx - KRX - Korea Stock Exchange * kse - KSE - Kuwait Stock Exchange * lje - LJE - Ljubljana Stock Exchange * lse - LSE - London Stock Exchange * lsm - LSM - Libyan Stock Market * lsx - LSX - Lao Securities Exchange * luse - LuSE - Lusaka Securities Exchange * luxse - LuxSE - Luxembourg Stock Exchange * mal - MAL - Malta Stock Exchange * mcx - MCX - Multi Commodity Exchange of India * meff - MEFF - Mercado Spanish Financial Futures Market * mnse - MNSE - Montenegro Stock Exchange * moex - MOEX - Moscow Exchange * mse - MSE - Metropolitan Stock Exchange * mse_md - MSE - Moldova Stock Exchange * mse_mk - MSE - Macedonian Stock Exchange * msei - MSEI - Metropolitan Stock Exchange of India * msm - MSM - Muscat Securities Market * mun - MUN - Börse München * nasdaq - NASDAQ * nbo - NSE - Nairobi Securities Exchange * neeq - NEEQ - National Equities Exchange and Quotations * nepse - NEPSE - Nepal Stock Exchange * nex - NEX - NEX Exchange * ngm - NGM - Nordic Growth Market Exchange * nig - NIG - Nigerian Stock Exchange * notc - NOTC - Norwegian OTC * npex - NPEX - NPEX Stock Exchange * nse - NSE - National Stock Exchange of India * nsx - NSX - National Stock Exchange of Australia * nyse - NYSE - New York Stock Exchange * nysearca - NYSEARCA - NYSE Arca * nysemkt - NYSEAMERICAN - NYSE American * nze - NZE - New Zealand Stock Exchange * ose - OSE - Oslo Stock Exchange * otcbb - OTCBB - FINRA OTC Bulletin Board * otcpink - OTC Pink * otcqb - OTCQB * otcqx - OTCQX * pdex - PDEx - Philippine Dealing Exchange * pex - PEX - Palestine Exchange * pfts - PFTS - PFTS Ukraine Stock Exchange * pomsox - POMSoX - Port Moresby Stock Exchange * prg - PRA - Prague Stock Exchange * pse - PSE - Philippine Stock Exchange * psx - PSX - Pakistan Stock Exchange * qse - QSE - Qatar Stock Exchange * rfb - RFB - Riga Stock Exchange * rse - RSE - Rwanda Stock Exchange * rsebl - RSEBL - Royal Securities Exchange of Bhutan * sase - SASE - Sarajevo Stock Exchange * sbx - SBX - BX Swiss * sehk - SEHK - The Stock Exchange of Hong Kong * sem - SEM - Stock Exchange of Mauritius * sgbv - SGBV - Algiers Stock Exchange * sgx - SGX - Singapore Stock Exchange * six - SIX - SIX Swiss Exchange * spbex - SPBEX - Saint Petersburg Stock Exchange * spse - SPSE - South Pacific Stock Exchange * sse - SSE - Shanghai Stock Exchange * ssx - SSX - Sydney Stock Exchange * sto - STO - Stockholm Stock Exchange * stu - STU - Börse Stuttgart * swx - SWX - SIX Swiss Exchange * szse - SZSE - Shenzhen Stock Exchange * tadawul - Tadawul - Saudi Stock Exchange * tal - TSE - Tallinn Stock Exchange * tfex - TFEX - Thailand Futures Exchange * tise - TISE - The International Stock Exchange * tlv - TLV - Tel Aviv Stock Exchange * tpe - TWSE - Taiwan Stock Exchange * tse_al - TSE - Tirana Stock Exchange * tse_ir - TSE - Tehran Stock Exchange * tsec - TWO - Taiwan OTC Exchange * tsx - TSX - Toronto Stock Exchange * ttse - TTSE - Trinidad and Tobago Stock Exchange * tyo - TYO - Tokyo Stock Exchange * use - USE - Uganda Securities Exchange * ux - UX - Ukrainian Exchange * vie - VIE - Vienna Stock Exchange * vmf - VMF - Faroese Securities Market * vse - VSE - Vancouver Stock Exchange * wse - WSE - Warsaw Stock Exchange * ysx - YSX - Yangon Stock Exchange * zamace - ZAMACE - Zambian Commodity Exchange * zse - ZSE - Zimbabwe Stock Exchange * zse_hr - ZSE - Zagreb Stock Exchange' enum: - adx - afx - altx - amx - amex - ams - asce - asx - ath - bcba - bdp - belex - ber - bfb - bit - bkk - blse - bme - bmv - bom - brvm - bse - bse_lb - bsse - bsx - bvb - bvc - bvfb - bvm - bvmf - bvmt - bx - cas - cise - cnsx - col - cph - cse - cse_cy - csx - dfm - dse - dsx - dus - ebr - egx - eli - epa - etr - eurex - fra - fwb - gha - gsx - gsx_gi - hel - hkg - hnx - hose - ice - idx - iex - ifb - ime - irenex - ise - ist - isx - jp - jsc - jse - jse_jam - kase - klse - kosdaq - krx - kse - lje - lse - lsm - lsx - luse - luxse - mal - mcx - meff - mnse - moex - mse - mse_md - mse_mk - msei - msm - mun - nasdaq - nbo - nex - nepse - neeq - ngm - nig - notc - npex - nse - nsx - nyse - nysearca - nysemkt - nze - ose - otcbb - otcpink - otcqb - otcqx - pdex - pex - pfts - pomsox - prg - pse - psx - qse - rfb - rse - rsebl - sase - sbx - sehk - sem - sgbv - sgx - six - spbex - spse - sse - ssx - sto - stu - swx - szse - tal - tfex - tise - tlv - tpe - tse_al - tse_ir - tsec - tsx - cve - tyo - ttse - tadawul - use - ux - vie - vmf - vse - wse - ysx - zamace - zse - zse_hr x-enum-descriptions: - ADX - Abu Dhabi Securities Exchange - AFX - Afghanistan Stock Exchange - ALTX - ALTX East Africa Exchange - AMX - Armenia Securities Exchange - AMEX - American Stock Exchange - AMS - Euronext Amsterdam - ASCE - Abuja Securities and Commodities Exchange - ASX - Australian Securities Exchange - ATH - Athens Stock Exchange - BCBA - Buenos Aires Stock Exchange - BDP - Budapest Stock Exchange - BELEX - Belgrade Stock Exchange - BER - Berliner Börse - BFB - Baku Stock Exchange - BIT - Italian Stock Exchange - BKK - Thailand Stock Exchange - BLSE - Banja Luka Stock Exchange - BME - Madrid Stock Exchange - BMV - Mexican Stock Exchange - BOM - Bombay Stock Exchange - BRVM - Regional Securities Exchange SA - BSE - Bulgarian Stock Exchange - BSE - Beirut Stock Exchange - BSSE - Bratislava Stock Exchange - BSX - Bermuda Stock Exchange - BVB - Bucharest Stock Exchange - BVC - Colombian Stock Exchange - BVFB - Belarusian Currency and Stock Exchange - BVM - Montevideo Stock Exchange - B3 - Brazil Stock Exchange and OTC Market - BVMT - Tunis Stock Exchange - BX - Berne Stock Exchange - CAS - Casablanca Stock Exchange - CISE - Channel Islands Stock Exchange - CNSX - Canadian National Stock Exchange - COL - Colombo Stock Exchange - CPH - Copenhagen Stock Exchange - CSE - Canadian Securities Exchange - CSE - Cyprus Stock Exchange - CSX - Cambodia Securities Exchange - DFM - Dubai Financial Market - DSE - Dhaka Stock Exchange - DSX - Douala Stock Exchange - DUS - Börse Düsseldorf - EBR - Euronext Brussels - EGX - Egypt Stock Exchange - ELI - Euronext Lisbon - EPA - Euronext Paris - ETR - Deutsche Börse XETRA - EUREX - Eurex Exchange - FRA - Frankfurt Stock Exchange - FWB - Börse Frankfurt Stock Exchange - GHA - Ghana Stock Exchange - GSX - Georgian Stock Exchange - GSX - Gibraltar Stock Exchange - HEL - Helsinki Stock Exchange - HKG - Hong Kong Stock Exchange - HNX - Hanoi Stock Exchange - HOSE - Ho Chi Minh Stock Exchange - ICE - Iceland Stock Exchange - IDX - Indonesia Stock Exchange - IEX - Investors Exchange - IFB - Iran Fara Bourse - IME - Iran Mercantile Exchange - IRENEX - Iran Energy Exchange - ISE - Irish Stock Exchange - IST - Istanbul Stock Exchange - ISX - Iraq Stock Exchange - JP - Japan Exchange - JSC - Belarusian Currency and Stock Exchange - JSE - Johannesburg Stock Exchange - JSE - Jamaica Stock Exchange - KASE - Kazakhstan Stock Exchange - KLSE - Malaysia Stock Exchange - KOSDAQ - Korean Securities Dealers Automated Quotations - KRX - Korea Stock Exchange - KSE - Kuwait Stock Exchange - LJE - Ljubljana Stock Exchange - LSE - London Stock Exchange - LSM - Libyan Stock Market - LSX - Lao Securities Exchange - LuSE - Lusaka Securities Exchange - LuxSE - Luxembourg Stock Exchange - MAL - Malta Stock Exchange - MCX - Multi Commodity Exchange of India - MEFF - Mercado Spanish Financial Futures Market - MNSE - Montenegro Stock Exchange - MOEX - Moscow Exchange - MSE - Metropolitan Stock Exchange - MSE - Moldova Stock Exchange - MSE - Macedonian Stock Exchange - MSEI - Metropolitan Stock Exchange of India - MSM - Muscat Securities Market - MUN - Börse München - NASDAQ - NSE - Nairobi Securities Exchange - NEX - NEX Exchange - NEPSE - Nepal Stock Exchange - NEEQ - National Equities Exchange and Quotations - NGM - Nordic Growth Market Exchange - NIG - Nigerian Stock Exchange - NOTC - Norwegian OTC - NPEX - NPEX Stock Exchange - NSE - National Stock Exchange of India - NSX - National Stock Exchange of Australia - NYSE - New York Stock Exchange - NYSEARCA - NYSE Arca - NYSEAMERICAN - NYSE American - NZE - New Zealand Stock Exchange - OSE - Oslo Stock Exchange - OTCBB - FINRA OTC Bulletin Board - OTC Pink - OTCQB - OTCQX - PDEx - Philippine Dealing Exchange - PEX - Palestine Exchange - PFTS - PFTS Ukraine Stock Exchange - POMSoX - Port Moresby Stock Exchange - PRA - Prague Stock Exchange - PSE - Philippine Stock Exchange - PSX - Pakistan Stock Exchange - QSE - Qatar Stock Exchange - RFB - Riga Stock Exchange - RSE - Rwanda Stock Exchange - RSEBL - Royal Securities Exchange of Bhutan - SASE - Sarajevo Stock Exchange - SBX - BX Swiss - SEHK - The Stock Exchange of Hong Kong - SEM - Stock Exchange of Mauritius - SGBV - Algiers Stock Exchange - SGX - Singapore Stock Exchange - SIX - SIX Swiss Exchange - SPBEX - Saint Petersburg Stock Exchange - SPSE - South Pacific Stock Exchange - SSE - Shanghai Stock Exchange - SSX - Sydney Stock Exchange - STO - Stockholm Stock Exchange - STU - Börse Stuttgart - SWX - SIX Swiss Exchange - SZSE - Shenzhen Stock Exchange - TSE - Tallinn Stock Exchange - TFEX - Thailand Futures Exchange - TISE - The International Stock Exchange - TLV - Tel Aviv Stock Exchange - TWSE - Taiwan Stock Exchange - TSE - Tirana Stock Exchange - TSE - Tehran Stock Exchange - TWO - Taiwan OTC Exchange - TSX - Toronto Stock Exchange - TSX-V - Toronto TSX Venture Exchange - TYO - Tokyo Stock Exchange - TTSE - Trinidad and Tobago Stock Exchange - Tadawul - Saudi Stock Exchange - USE - Uganda Securities Exchange - UX - Ukrainian Exchange - VIE - Vienna Stock Exchange - VMF - Faroese Securities Market - VSE - Vancouver Stock Exchange - WSE - Warsaw Stock Exchange - YSX - Yangon Stock Exchange - ZAMACE - Zambian Commodity Exchange - ZSE - Zimbabwe Stock Exchange - ZSE - Zagreb Stock Exchange x-cb-field-enum-values: - value: adx description: ADX - Abu Dhabi Securities Exchange - value: afx description: AFX - Afghanistan Stock Exchange - value: altx description: ALTX - ALTX East Africa Exchange - value: amx description: AMX - Armenia Securities Exchange - value: amex description: AMEX - American Stock Exchange - value: ams description: AMS - Euronext Amsterdam - value: asce description: ASCE - Abuja Securities and Commodities Exchange - value: asx description: ASX - Australian Securities Exchange - value: ath description: ATH - Athens Stock Exchange - value: bcba description: BCBA - Buenos Aires Stock Exchange - value: bdp description: BDP - Budapest Stock Exchange - value: belex description: BELEX - Belgrade Stock Exchange - value: ber description: BER - Berliner Börse - value: bfb description: BFB - Baku Stock Exchange - value: bit description: BIT - Italian Stock Exchange - value: bkk description: BKK - Thailand Stock Exchange - value: blse description: BLSE - Banja Luka Stock Exchange - value: bme description: BME - Madrid Stock Exchange - value: bmv description: BMV - Mexican Stock Exchange - value: bom description: BOM - Bombay Stock Exchange - value: brvm description: BRVM - Regional Securities Exchange SA - value: bse description: BSE - Bulgarian Stock Exchange - value: bse_lb description: BSE - Beirut Stock Exchange - value: bsse description: BSSE - Bratislava Stock Exchange - value: bsx description: BSX - Bermuda Stock Exchange - value: bvb description: BVB - Bucharest Stock Exchange - value: bvc description: BVC - Colombian Stock Exchange - value: bvfb description: BVFB - Belarusian Currency and Stock Exchange - value: bvm description: BVM - Montevideo Stock Exchange - value: bvmf description: B3 - Brazil Stock Exchange and OTC Market - value: bvmt description: BVMT - Tunis Stock Exchange - value: bx description: BX - Berne Stock Exchange - value: cas description: CAS - Casablanca Stock Exchange - value: cise description: CISE - Channel Islands Stock Exchange - value: cnsx description: CNSX - Canadian National Stock Exchange - value: col description: COL - Colombo Stock Exchange - value: cph description: CPH - Copenhagen Stock Exchange - value: cse description: CSE - Canadian Securities Exchange - value: cse_cy description: CSE - Cyprus Stock Exchange - value: csx description: CSX - Cambodia Securities Exchange - value: dfm description: DFM - Dubai Financial Market - value: dse description: DSE - Dhaka Stock Exchange - value: dsx description: DSX - Douala Stock Exchange - value: dus description: DUS - Börse Düsseldorf - value: ebr description: EBR - Euronext Brussels - value: egx description: EGX - Egypt Stock Exchange - value: eli description: ELI - Euronext Lisbon - value: epa description: EPA - Euronext Paris - value: etr description: ETR - Deutsche Börse XETRA - value: eurex description: EUREX - Eurex Exchange - value: fra description: FRA - Frankfurt Stock Exchange - value: fwb description: FWB - Börse Frankfurt Stock Exchange - value: gha description: GHA - Ghana Stock Exchange - value: gsx description: GSX - Georgian Stock Exchange - value: gsx_gi description: GSX - Gibraltar Stock Exchange - value: hel description: HEL - Helsinki Stock Exchange - value: hkg description: HKG - Hong Kong Stock Exchange - value: hnx description: HNX - Hanoi Stock Exchange - value: hose description: HOSE - Ho Chi Minh Stock Exchange - value: ice description: ICE - Iceland Stock Exchange - value: idx description: IDX - Indonesia Stock Exchange - value: iex description: IEX - Investors Exchange - value: ifb description: IFB - Iran Fara Bourse - value: ime description: IME - Iran Mercantile Exchange - value: irenex description: IRENEX - Iran Energy Exchange - value: ise description: ISE - Irish Stock Exchange - value: ist description: IST - Istanbul Stock Exchange - value: isx description: ISX - Iraq Stock Exchange - value: jp description: JP - Japan Exchange - value: jsc description: JSC - Belarusian Currency and Stock Exchange - value: jse description: JSE - Johannesburg Stock Exchange - value: jse_jam description: JSE - Jamaica Stock Exchange - value: kase description: KASE - Kazakhstan Stock Exchange - value: klse description: KLSE - Malaysia Stock Exchange - value: kosdaq description: KOSDAQ - Korean Securities Dealers Automated Quotations - value: krx description: KRX - Korea Stock Exchange - value: kse description: KSE - Kuwait Stock Exchange - value: lje description: LJE - Ljubljana Stock Exchange - value: lse description: LSE - London Stock Exchange - value: lsm description: LSM - Libyan Stock Market - value: lsx description: LSX - Lao Securities Exchange - value: luse description: LuSE - Lusaka Securities Exchange - value: luxse description: LuxSE - Luxembourg Stock Exchange - value: mal description: MAL - Malta Stock Exchange - value: mcx description: MCX - Multi Commodity Exchange of India - value: meff description: MEFF - Mercado Spanish Financial Futures Market - value: mnse description: MNSE - Montenegro Stock Exchange - value: moex description: MOEX - Moscow Exchange - value: mse description: MSE - Metropolitan Stock Exchange - value: mse_md description: MSE - Moldova Stock Exchange - value: mse_mk description: MSE - Macedonian Stock Exchange - value: msei description: MSEI - Metropolitan Stock Exchange of India - value: msm description: MSM - Muscat Securities Market - value: mun description: MUN - Börse München - value: nasdaq description: NASDAQ - value: nbo description: NSE - Nairobi Securities Exchange - value: nex description: NEX - NEX Exchange - value: nepse description: NEPSE - Nepal Stock Exchange - value: neeq description: NEEQ - National Equities Exchange and Quotations - value: ngm description: NGM - Nordic Growth Market Exchange - value: nig description: NIG - Nigerian Stock Exchange - value: notc description: NOTC - Norwegian OTC - value: npex description: NPEX - NPEX Stock Exchange - value: nse description: NSE - National Stock Exchange of India - value: nsx description: NSX - National Stock Exchange of Australia - value: nyse description: NYSE - New York Stock Exchange - value: nysearca description: NYSEARCA - NYSE Arca - value: nysemkt description: NYSEAMERICAN - NYSE American - value: nze description: NZE - New Zealand Stock Exchange - value: ose description: OSE - Oslo Stock Exchange - value: otcbb description: OTCBB - FINRA OTC Bulletin Board - value: otcpink description: OTC Pink - value: otcqb description: OTCQB - value: otcqx description: OTCQX - value: pdex description: PDEx - Philippine Dealing Exchange - value: pex description: PEX - Palestine Exchange - value: pfts description: PFTS - PFTS Ukraine Stock Exchange - value: pomsox description: POMSoX - Port Moresby Stock Exchange - value: prg description: PRA - Prague Stock Exchange - value: pse description: PSE - Philippine Stock Exchange - value: psx description: PSX - Pakistan Stock Exchange - value: qse description: QSE - Qatar Stock Exchange - value: rfb description: RFB - Riga Stock Exchange - value: rse description: RSE - Rwanda Stock Exchange - value: rsebl description: RSEBL - Royal Securities Exchange of Bhutan - value: sase description: SASE - Sarajevo Stock Exchange - value: sbx description: SBX - BX Swiss - value: sehk description: SEHK - The Stock Exchange of Hong Kong - value: sem description: SEM - Stock Exchange of Mauritius - value: sgbv description: SGBV - Algiers Stock Exchange - value: sgx description: SGX - Singapore Stock Exchange - value: six description: SIX - SIX Swiss Exchange - value: spbex description: SPBEX - Saint Petersburg Stock Exchange - value: spse description: SPSE - South Pacific Stock Exchange - value: sse description: SSE - Shanghai Stock Exchange - value: ssx description: SSX - Sydney Stock Exchange - value: sto description: STO - Stockholm Stock Exchange - value: stu description: STU - Börse Stuttgart - value: swx description: SWX - SIX Swiss Exchange - value: szse description: SZSE - Shenzhen Stock Exchange - value: tal description: TSE - Tallinn Stock Exchange - value: tfex description: TFEX - Thailand Futures Exchange - value: tise description: TISE - The International Stock Exchange - value: tlv description: TLV - Tel Aviv Stock Exchange - value: tpe description: TWSE - Taiwan Stock Exchange - value: tse_al description: TSE - Tirana Stock Exchange - value: tse_ir description: TSE - Tehran Stock Exchange - value: tsec description: TWO - Taiwan OTC Exchange - value: tsx description: TSX - Toronto Stock Exchange - value: cve description: TSX-V - Toronto TSX Venture Exchange - value: tyo description: TYO - Tokyo Stock Exchange - value: ttse description: TTSE - Trinidad and Tobago Stock Exchange - value: tadawul description: Tadawul - Saudi Stock Exchange - value: use description: USE - Uganda Securities Exchange - value: ux description: UX - Ukrainian Exchange - value: vie description: VIE - Vienna Stock Exchange - value: vmf description: VMF - Faroese Securities Market - value: vse description: VSE - Vancouver Stock Exchange - value: wse description: WSE - Warsaw Stock Exchange - value: ysx description: YSX - Yangon Stock Exchange - value: zamace description: ZAMACE - Zambian Commodity Exchange - value: zse description: ZSE - Zimbabwe Stock Exchange - value: zse_hr description: ZSE - Zagreb Stock Exchange x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes stock_full_symbol: type: string maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] stock_symbol: type: string description: Stock ticker symbol (e.g. AAPL, FB, TWTR) maxLength: 255 x-cb-field-type: text_short x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes valuation: type: object description: Valuation of the Organization at IPO allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq went_public_on: type: string description: Date the Organization went public format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte CurrentValuationEstimateFieldId: type: string description: CurrentValuationEstimate field ids enum: - created_at - current_valuation - entity_def_id - estimate_confidence_tier - estimated_lower_bound - estimated_upper_bound - financials_impact_tier - financials_reasons - generated_on - identifier - industry_performance_impact_tier - industry_performance_reasons - market_equity_impact_tier - market_equity_reasons - misc_impact_tier - misc_reasons - organization - updated_at - uuid InvestorInsight: type: object required: - identifier properties: associated_investments_since: type: string description: Associated investments since format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte categories: type: array description: Investment categories items: $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte description: type: string description: A concise text statement highlighting the investor insight maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] diversity_investments: type: array description: Diversity investments items: $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all entity_def_id: type: string description: 'Investor Insight * investor_insight - Investor Insight' enum: - investor_insight x-enum-descriptions: - Investor Insight x-cb-field-enum-values: - value: investor_insight description: Investor Insight x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes exit_success_rate: type: number description: Exit success rate format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq generated_on: type: string description: Date on which this insight was generated format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte identifier: type: object description: Name of the Investor Insight allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts investment_funding_stage: type: array description: Investment funding stage items: type: string description: 'Investment funding stage * early_stage_venture - Early Stage Venture * ipo - IPO * late_stage_venture - Late Stage Venture * m_and_a - M&A * private_equity - Private Equity * seed - Seed' enum: - seed - early_stage_venture - late_stage_venture - private_equity - m_and_a - ipo x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all investment_types: type: array description: Investment types items: type: string description: 'Investment types * angel - Angel * convertible_note - Convertible Note * corporate_round - Corporate Round * debt_financing - Debt Financing * equity_crowdfunding - Equity Crowdfunding * grant - Grant * initial_coin_offering - Initial Coin Offering * non_equity_assistance - Non-equity Assistance * post_ipo_debt - Post-IPO Debt * post_ipo_equity - Post-IPO Equity * post_ipo_secondary - Post-IPO Secondary * pre_seed - Pre-Seed * private_equity - Private Equity * product_crowdfunding - Product Crowdfunding * secondary_market - Secondary Market * seed - Seed * series_a - Series A * series_b - Series B * series_c - Series C * series_d - Series D * series_e - Series E * series_f - Series F * series_g - Series G * series_h - Series H * series_i - Series I * series_j - Series J * series_unknown - Venture - Series Unknown * undisclosed - Undisclosed' enum: - pre_seed - seed - series_a - series_b - series_c - series_d - series_e - series_f - series_g - series_h - series_i - series_j - series_unknown - angel - private_equity - debt_financing - convertible_note - grant - corporate_round - equity_crowdfunding - product_crowdfunding - secondary_market - post_ipo_equity - post_ipo_debt - post_ipo_secondary - non_equity_assistance - initial_coin_offering - undisclosed x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all lead_investor_rate: type: number description: Lead investor rate format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq locations: type: array description: Investment locations items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all median_investment_size: type: object description: Median investment size allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq organization: type: object description: Unique identifier for the organization associated with this investor insight allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts stages: type: array description: Investment stages items: type: string description: 'Investment stages * convertible_note - Convertible Note * crowdfunding - Crowdfunding * debt - Debt * early_stage_venture - Early Stage Venture * grant - Grant * initial_coin_offering - Initial Coin Offering * late_stage_venture - Late Stage Venture * non_equity_assistance - Non Equity Assistance * post_ipo - Post-Ipo * private_equity - Private Equity * secondary_market - Secondary Market * seed - Seed * venture - Venture' enum: - seed - early_stage_venture - late_stage_venture - venture - private_equity - crowdfunding - debt - grant - non_equity_assistance - convertible_note - secondary_market - post_ipo - initial_coin_offering x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes ResearchInsight: type: object required: - identifier properties: created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte description: type: string description: A concise text statement highlighting the company's recent research and development maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] entity_def_id: type: string description: 'Research and Development Insight * research_insight - Research and Development Insight' enum: - research_insight x-enum-descriptions: - Research and Development Insight x-cb-field-enum-values: - value: research_insight description: Research and Development Insight x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes generated_on: type: string description: Date on which this insight was generated format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte identifier: type: object description: Name of the Research and Development Insight allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts organization: type: object description: Unique identifier for the organization associated with this research insight allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes MicroCategoryEntity: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/MicroCategory' market_insights: type: array items: $ref: '#/components/schemas/MarketInsight' properties: $ref: '#/components/schemas/MicroCategory' Award: type: object required: - identifier properties: created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte description: type: string description: Award description maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] entity_def_id: type: string description: 'Award * award - Award' enum: - award x-enum-descriptions: - Award x-cb-field-enum-values: - value: award description: Award x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Award name allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts key_event_date: type: string description: Date award presented or announced format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte name: type: string description: Award name maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] organization: type: object description: Organization that received the award allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts press_reference_link: type: object description: News article mentioning award allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] sentiment: type: string description: 'Sentiment associated with award * c100_positive - Positive * c200_neutral - Neutral * c300_negative - Negative' enum: - c100_positive - c200_neutral - c300_negative x-enum-descriptions: - Positive - Neutral - Negative x-cb-field-enum-values: - value: c100_positive description: Positive - value: c200_neutral description: Neutral - value: c300_negative description: Negative x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes updated_at: type: string description: Date entity was updated format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string description: Award entity UUID format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes Address_2: type: object required: - identifier properties: country_code: type: string description: Country Code maxLength: 255 x-cb-field-type: text_exact x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* address - Address' enum: - address x-enum-descriptions: - Address x-cb-field-enum-values: - value: address description: Address x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes headquartered_organization_identifier: type: object description: Identifier of the organization that's headquartered on this address allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts identifier: type: object description: Descriptive name of the Address (e.g. Headquarters, London Office) allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts location_identifiers: type: array description: What city the address is located in (e.g. San Francisco, London, Kiev). items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all name: type: string description: Descriptive name of the Address (e.g. Headquarters, London Office) maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] opening_date: type: string description: Date this location opened format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte opening_description: type: string description: Summary of context regarding opening of this address maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] opening_press_reference_link: type: object description: News article url mentioning the address opening allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] organization: type: object description: Organization with an office or headquarters at this address allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts postal_code: type: string description: The postal code of the address maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] region_code: type: string description: Region Code maxLength: 255 x-cb-field-type: text_exact x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes street_1: type: string description: The street address of the location maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] street_2: type: string description: The street address of the location maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes GrowthInsightEntity: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/GrowthInsight' properties: $ref: '#/components/schemas/GrowthInsight' OrgSimilarityFieldId: type: string description: OrgSimilarity field ids enum: - additional_reasons - category_overlap - created_at - entity_def_id - identifier - location_overlap - product_similarities - score - source - target - updated_at - uuid InvestorInsightFieldId: type: string description: InvestorInsight field ids enum: - associated_investments_since - categories - created_at - description - diversity_investments - entity_def_id - exit_success_rate - generated_on - identifier - investment_funding_stage - investment_types - lead_investor_rate - locations - median_investment_size - organization - stages - updated_at - uuid CategoryEntity_2: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/Category_2' market_insights: type: array items: $ref: '#/components/schemas/MarketInsight' properties: $ref: '#/components/schemas/Category_2' ResearchInsightEntity: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/ResearchInsight' properties: $ref: '#/components/schemas/ResearchInsight' AwardEntity: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/Award' properties: $ref: '#/components/schemas/Award' CurrentValuationEstimateEntity: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/CurrentValuationEstimate' properties: $ref: '#/components/schemas/CurrentValuationEstimate' KeyEmployeeChangeEntity: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/KeyEmployeeChange' properties: $ref: '#/components/schemas/KeyEmployeeChange' MarketInsightEntity: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/MarketInsight' market_insight_reasons: type: array items: $ref: '#/components/schemas/MarketInsightReason' properties: $ref: '#/components/schemas/MarketInsight' ProductSimilarityFieldId: type: string description: ProductSimilarity field ids enum: - created_at - entity_def_id - identifier - source - target - target_organization - updated_at - uuid GrowthInsight: type: object required: - identifier properties: created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte customers: type: string description: 'Fluctuations in the number of customers or users * c100_worsening - Customer Decline * c200_improving - Customer Growth' enum: - c100_worsening - c200_improving x-enum-descriptions: - Customer Decline - Customer Growth x-cb-field-enum-values: - value: c100_worsening description: Customer Decline - value: c200_improving description: Customer Growth x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes description: type: string description: A concise text statement highlighting the company's growth trajectory maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] engagement: type: string description: 'Changes in product engagement levels, including increases or decreases in website traffic, app downloads, and user activity * c100_worsening - Product Usage Decline * c200_improving - Product Usage Growth' enum: - c100_worsening - c200_improving x-enum-descriptions: - Product Usage Decline - Product Usage Growth x-cb-field-enum-values: - value: c100_worsening description: Product Usage Decline - value: c200_improving description: Product Usage Growth x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes entity_def_id: type: string description: 'Growth Insight * growth_insight - Growth Insight' enum: - growth_insight x-enum-descriptions: - Growth Insight x-cb-field-enum-values: - value: growth_insight description: Growth Insight x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes finance: type: string description: 'Changes in key financial metrics including revenue, sales, earnings, profit margins, dividends, return on investment, stock performance, and commercial contracts * c100_worsening - Financial Decline * c200_improving - Financial Growth' enum: - c100_worsening - c200_improving x-enum-descriptions: - Financial Decline - Financial Growth x-cb-field-enum-values: - value: c100_worsening description: Financial Decline - value: c200_improving description: Financial Growth x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes funding_raised: type: string description: 'Activities related to financial investments, including receiving funding or making strategic investments into other organizations * c100_worsening - Has Not Recently Raised Funding * c200_improving - Recently Raised Funding' enum: - c100_worsening - c200_improving x-enum-descriptions: - Has Not Recently Raised Funding - Recently Raised Funding x-cb-field-enum-values: - value: c100_worsening description: Has Not Recently Raised Funding - value: c200_improving description: Recently Raised Funding x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes generated_on: type: string description: Date on which this insight was generated format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte growth_confidence: type: string description: 'Assessment of the reliability and accuracy of the provided data * c100_unknown - Unknown * c200_low - Low * c300_medium - Medium * c400_high - High' enum: - c100_unknown - c200_low - c300_medium - c400_high x-enum-descriptions: - Unknown - Low - Medium - High x-cb-field-enum-values: - value: c100_unknown description: Unknown - value: c200_low description: Low - value: c300_medium description: Medium - value: c400_high description: High x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes growth_direction: type: string description: 'Direction of the company''s growth trajectory * c100_uncertain - Uncertain * c200_declining - Not Growing * c300_stable - Stable * c400_growing - Growing' enum: - c100_uncertain - c200_declining - c300_stable - c400_growing x-enum-descriptions: - Uncertain - Not Growing - Stable - Growing x-cb-field-enum-values: - value: c100_uncertain description: Uncertain - value: c200_declining description: Not Growing - value: c300_stable description: Stable - value: c400_growing description: Growing x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes headcount: type: string description: 'Variations in employee numbers, including hiring sprees, layoffs, workforce expansions, and reductions * c100_worsening - Headcount Reduction * c200_improving - Headcount Growth' enum: - c100_worsening - c200_improving x-enum-descriptions: - Headcount Reduction - Headcount Growth x-cb-field-enum-values: - value: c100_worsening description: Headcount Reduction - value: c200_improving description: Headcount Growth x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Name of the Growth Insight allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts market_share: type: string description: 'Changes in the company''s market share, including growth through new market entries and decline due to market exits * c100_worsening - Market Share Decline * c200_improving - Market Share Expansion' enum: - c100_worsening - c200_improving x-enum-descriptions: - Market Share Decline - Market Share Expansion x-cb-field-enum-values: - value: c100_worsening description: Market Share Decline - value: c200_improving description: Market Share Expansion x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes mergers_acquisitions: type: string description: 'Business consolidations involving mergers, acquisitions, or divestitures * c100_worsening - No Merger or Acquisition * c200_improving - Merger or Acquisition' enum: - c100_worsening - c200_improving x-enum-descriptions: - No Merger or Acquisition - Merger or Acquisition x-cb-field-enum-values: - value: c100_worsening description: No Merger or Acquisition - value: c200_improving description: Merger or Acquisition x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes operations: type: string description: 'Modifications in operational footprints, including acquisitions or reductions of facilities, and regional expansions or contractions * c100_worsening - Operations Contraction * c200_improving - Operations Expansion' enum: - c100_worsening - c200_improving x-enum-descriptions: - Operations Contraction - Operations Expansion x-cb-field-enum-values: - value: c100_worsening description: Operations Contraction - value: c200_improving description: Operations Expansion x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes organization: type: object description: Unique identifier for the organization associated with this growth insight allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts outbound_investment: type: string description: 'Records the company''s financial investments into external entities or projects * c100_worsening - No Strategic Investment * c200_improving - Strategic Investment' enum: - c100_worsening - c200_improving x-enum-descriptions: - No Strategic Investment - Strategic Investment x-cb-field-enum-values: - value: c100_worsening description: No Strategic Investment - value: c200_improving description: Strategic Investment x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes press_references: type: array description: A list of the press references used to construct this growth insight items: type: object properties: entity_def_id: type: string enum: - press_reference x-enum-descriptions: - press_reference x-cb-field-enum-values: [] x-cb-field-type: enum x-cb-searchable: false x-cb-search-operators: [] posted_on: type: string format: date x-cb-field-type: date x-cb-searchable: false x-cb-search-operators: [] publisher: type: string maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] source_url: type: string maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] thumbnail_url: type: string maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: false x-cb-search-operators: [] value: type: string maxLength: 255 x-cb-field-type: text_short x-cb-searchable: false x-cb-search-operators: [] x-cb-field-type: properties_multi x-cb-searchable: false x-cb-search-operators: [] updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes ProductSimilarity: type: object required: - identifier properties: created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: 'Product Similarity * product_similarity - Product Similarity' enum: - product_similarity x-enum-descriptions: - Product Similarity x-cb-field-enum-values: - value: product_similarity description: Product Similarity x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Product Similarity allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts source: type: object allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts target: type: object allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts target_organization: type: object allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes MarketInsightReason: type: object required: - identifier properties: created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: 'Market Insight Reason * market_insight_reason - Market Insight Reason' enum: - market_insight_reason x-enum-descriptions: - Market Insight Reason x-cb-field-enum-values: - value: market_insight_reason description: Market Insight Reason x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Market Insight Reason allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts market_insight: type: object description: Market Insight allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts market_insight_generated_on: type: string format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte market_insight_subject: type: object description: Industry Collection Type allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts metric_basis: type: string description: '* acquisition_activity - Acquisition Activity * activity - Activity * average_value - Average Value * cluster_size - Cluster Size * company_count - Company Count * coverage_rate - Coverage Rate * employment - Employment * ipo_activity - IPO Activity * median_value - Median Value * total_value - Total Value * viewer_count - Viewer Count' enum: - activity - total_value - median_value - average_value - company_count - coverage_rate - cluster_size - ipo_activity - acquisition_activity - viewer_count - employment x-enum-descriptions: - Activity - Total Value - Median Value - Average Value - Company Count - Coverage Rate - Cluster Size - IPO Activity - Acquisition Activity - Viewer Count - Employment x-cb-field-enum-values: - value: activity description: Activity - value: total_value description: Total Value - value: median_value description: Median Value - value: average_value description: Average Value - value: company_count description: Company Count - value: coverage_rate description: Coverage Rate - value: cluster_size description: Cluster Size - value: ipo_activity description: IPO Activity - value: acquisition_activity description: Acquisition Activity - value: viewer_count description: Viewer Count - value: employment description: Employment x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes percent_change: type: number format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq reason_kind: type: string description: '* exits - Exits * funding - Funding * labor_market - Labor Market * profile_views - Profile Views' enum: - funding - exits - profile_views - labor_market x-enum-descriptions: - Funding - Exits - Profile Views - Labor Market x-cb-field-enum-values: - value: funding description: Funding - value: exits description: Exits - value: profile_views description: Profile Views - value: labor_market description: Labor Market x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes timeframe: type: string description: '* last_12_months - Last 12 Months * last_180_days - Last 180 Days * last_2_years - Last 2 Years * last_30_days - Last 30 Days * last_3_years - Last 3 Years * last_90_days - Last 90 Days * month_over_month - Month Over Month * since_last_clustering_cycle - Since Last Clustering Cycle * week_over_week - Week Over Week * year_over_year - Year Over Year' enum: - since_last_clustering_cycle - last_12_months - year_over_year - last_30_days - week_over_week - month_over_month - last_90_days - last_180_days - last_2_years - last_3_years x-enum-descriptions: - Since Last Clustering Cycle - Last 12 Months - Year Over Year - Last 30 Days - Week Over Week - Month Over Month - Last 90 Days - Last 180 Days - Last 2 Years - Last 3 Years x-cb-field-enum-values: - value: since_last_clustering_cycle description: Since Last Clustering Cycle - value: last_12_months description: Last 12 Months - value: year_over_year description: Year Over Year - value: last_30_days description: Last 30 Days - value: week_over_week description: Week Over Week - value: month_over_month description: Month Over Month - value: last_90_days description: Last 90 Days - value: last_180_days description: Last 180 Days - value: last_2_years description: Last 2 Years - value: last_3_years description: Last 3 Years x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes LayoffFieldId: type: string description: Layoff field ids enum: - created_at - entity_def_id - identifier - key_event_date - organization_identifier - press_reference_link - sentiment - updated_at - uuid ProductFieldId: type: string description: Product field ids enum: - created_at - description - discontinuation_sentiment - entity_def_id - identifier - launch_sentiment - local_rank - micro_categories - organization - updated_at - uuid CategoryGroupFieldId_2: type: string description: CategoryGroup field ids enum: - categories - created_at - entity_def_id - identifier - last_market_insight_direction - name - updated_at - uuid MarketInsightFieldId: type: string description: MarketInsight field ids enum: - created_at - direction - entity_def_id - generated_on - identifier - subject - updated_at - uuid PartnershipAnnouncementEntity: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/PartnershipAnnouncement' properties: $ref: '#/components/schemas/PartnershipAnnouncement' FundingRound_2: type: object required: - identifier properties: announced_on: type: string description: Date that the Funding Round was publicly announced format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte closed_on: type: object description: Date that the Funding Round was closed allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* funding_round - Funding Round' enum: - funding_round x-enum-descriptions: - Funding Round x-cb-field-enum-values: - value: funding_round description: Funding Round x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes funded_organization_categories: type: array description: Industries of the organization that got funded items: $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all funded_organization_description: type: string description: Description of the organization that got funded maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains funded_organization_diversity_spotlights: type: array description: Types of diversity represented in an organization, specifically of those who are founding members, currently the CEO, or have check-writing abilities in an investment firm. This feature is in beta and may change with future updates. items: $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all funded_organization_funding_stage: type: string description: 'Organization''s most recent funding status * early_stage_venture - Early Stage Venture * ipo - IPO * late_stage_venture - Late Stage Venture * m_and_a - M&A * private_equity - Private Equity * seed - Seed' enum: - seed - early_stage_venture - late_stage_venture - private_equity - m_and_a - ipo x-enum-descriptions: - Seed - Early Stage Venture - Late Stage Venture - Private Equity - M&A - IPO x-cb-field-enum-values: - value: seed description: Seed - value: early_stage_venture description: Early Stage Venture - value: late_stage_venture description: Late Stage Venture - value: private_equity description: Private Equity - value: m_and_a description: M&A - value: ipo description: IPO x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes funded_organization_funding_total: type: object description: Total funding amount raised across all Funding Rounds allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq funded_organization_identifier: type: object description: Name of the organization that got funded allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts funded_organization_location: type: array description: Location of the organization that got funded items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all funded_organization_revenue_range: type: string description: 'Revenue range of the organization that got funded * r_00000000 - Less than $1M * r_00001000 - $1M to $10M * r_00010000 - $10M to $50M * r_00050000 - $50M to $100M * r_00100000 - $100M to $500M * r_00500000 - $500M to $1B * r_01000000 - $1B to $10B * r_10000000 - $10B+' enum: - r_00000000 - r_00001000 - r_00010000 - r_00050000 - r_00100000 - r_00500000 - r_01000000 - r_10000000 x-enum-descriptions: - Less than $1M - $1M to $10M - $10M to $50M - $50M to $100M - $100M to $500M - $500M to $1B - $1B to $10B - $10B+ x-cb-field-enum-values: - value: r_00000000 description: Less than $1M - value: r_00001000 description: $1M to $10M - value: r_00010000 description: $10M to $50M - value: r_00050000 description: $50M to $100M - value: r_00100000 description: $100M to $500M - value: r_00500000 description: $500M to $1B - value: r_01000000 description: $1B to $10B - value: r_10000000 description: $10B+ x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Auto-generated name of transaction (e.g. Angel - Uber) allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts image_id: type: string maxLength: 255 x-cb-field-type: image_id x-cb-searchable: false x-cb-search-operators: [] investment_stage: type: string description: 'The funding stage of a funding round * early_stage_venture - Early Stage Venture * late_stage_venture - Late Stage Venture * private_equity - Private Equity * seed - Seed' enum: - seed - early_stage_venture - late_stage_venture - private_equity x-enum-descriptions: - Seed - Early Stage Venture - Late Stage Venture - Private Equity x-cb-field-enum-values: - value: seed description: Seed - value: early_stage_venture description: Early Stage Venture - value: late_stage_venture description: Late Stage Venture - value: private_equity description: Private Equity x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes investment_type: type: string description: 'Type of Funding Round (e.g. Seed, Series A, Private Equity, Debt Financing) * angel - Angel * convertible_note - Convertible Note * corporate_round - Corporate Round * debt_financing - Debt Financing * equity_crowdfunding - Equity Crowdfunding * grant - Grant * initial_coin_offering - Initial Coin Offering * non_equity_assistance - Non-equity Assistance * post_ipo_debt - Post-IPO Debt * post_ipo_equity - Post-IPO Equity * post_ipo_secondary - Post-IPO Secondary * pre_seed - Pre-Seed * private_equity - Private Equity * product_crowdfunding - Product Crowdfunding * secondary_market - Secondary Market * seed - Seed * series_a - Series A * series_b - Series B * series_c - Series C * series_d - Series D * series_e - Series E * series_f - Series F * series_g - Series G * series_h - Series H * series_i - Series I * series_j - Series J * series_unknown - Venture - Series Unknown * undisclosed - Funding Round' enum: - pre_seed - seed - series_a - series_b - series_c - series_d - series_e - series_f - series_g - series_h - series_i - series_j - series_unknown - angel - private_equity - debt_financing - convertible_note - grant - corporate_round - equity_crowdfunding - product_crowdfunding - secondary_market - post_ipo_equity - post_ipo_debt - post_ipo_secondary - non_equity_assistance - initial_coin_offering - undisclosed x-enum-descriptions: - Pre-Seed - Seed - Series A - Series B - Series C - Series D - Series E - Series F - Series G - Series H - Series I - Series J - Venture - Series Unknown - Angel - Private Equity - Debt Financing - Convertible Note - Grant - Corporate Round - Equity Crowdfunding - Product Crowdfunding - Secondary Market - Post-IPO Equity - Post-IPO Debt - Post-IPO Secondary - Non-equity Assistance - Initial Coin Offering - Funding Round x-cb-field-enum-values: - value: pre_seed description: Pre-Seed - value: seed description: Seed - value: series_a description: Series A - value: series_b description: Series B - value: series_c description: Series C - value: series_d description: Series D - value: series_e description: Series E - value: series_f description: Series F - value: series_g description: Series G - value: series_h description: Series H - value: series_i description: Series I - value: series_j description: Series J - value: series_unknown description: Venture - Series Unknown - value: angel description: Angel - value: private_equity description: Private Equity - value: debt_financing description: Debt Financing - value: convertible_note description: Convertible Note - value: grant description: Grant - value: corporate_round description: Corporate Round - value: equity_crowdfunding description: Equity Crowdfunding - value: product_crowdfunding description: Product Crowdfunding - value: secondary_market description: Secondary Market - value: post_ipo_equity description: Post-IPO Equity - value: post_ipo_debt description: Post-IPO Debt - value: post_ipo_secondary description: Post-IPO Secondary - value: non_equity_assistance description: Non-equity Assistance - value: initial_coin_offering description: Initial Coin Offering - value: undisclosed description: Funding Round x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes investor_identifiers: type: array description: Names of all investors who invested in the funding round items: $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all is_equity: type: boolean description: This indicates whether the Funding Round is financed only through equity. x-cb-field-type: boolean x-cb-searchable: true x-cb-search-operators: - blank - eq lead_investor_identifiers: type: array description: Name of the investor who led the investment in the funding round items: $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all money_raised: type: object description: Amount of money raised in Funding Round allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq name: type: string maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] num_investors: type: number description: Total number of Investors in a Funding Round x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_partners: type: number description: Total number of Partner Investors in a Funding Round x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq permalink: type: string maxLength: 255 x-cb-field-type: permalink x-cb-searchable: false x-cb-search-operators: [] post_money_valuation: type: object description: Valuation of a Company after a Funding Round allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq post_money_valuation_source: type: string description: 'Source of the Post-Money Valuation for a Funding Round * c100_confirmed - Confirmed * c200_estimated - Estimated' enum: - c100_confirmed - c200_estimated x-enum-descriptions: - Confirmed - Estimated x-cb-field-enum-values: - value: c100_confirmed description: Confirmed - value: c200_estimated description: Estimated x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes pre_money_valuation: type: object description: Valuation of a Company prior to a Funding Round allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank: type: number description: Algorithmic rank assigned to the top profiles on Crunchbase x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank_funding_round: type: number description: Algorithmic rank assigned to the top 100,000 most active Funding Rounds x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq sentiment: type: string description: 'Sentiment of news articles associated with a Funding Round * c100_positive - Positive * c200_neutral - Neutral * c300_negative - Negative' enum: - c100_positive - c200_neutral - c300_negative x-enum-descriptions: - Positive - Neutral - Negative x-cb-field-enum-values: - value: c100_positive description: Positive - value: c200_neutral description: Neutral - value: c300_negative description: Negative x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes short_description: type: string description: Short description of the Funding Round maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains target_money_raised: type: object description: Amount of money the funded Organization would like to raised in the Funding Round allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes AcquisitionFieldId_2: type: string description: Acquisition field ids enum: - acquiree_categories - acquiree_funding_total - acquiree_identifier - acquiree_last_funding_type - acquiree_locations - acquiree_num_funding_rounds - acquiree_revenue_range - acquiree_short_description - acquirer_categories - acquirer_funding_stage - acquirer_funding_total - acquirer_identifier - acquirer_locations - acquirer_num_funding_rounds - acquirer_revenue_range - acquirer_short_description - acquisition_type - announced_on - completed_on - created_at - disposition_of_acquired - entity_def_id - identifier - permalink - price - rank - rank_acquisition - sentiment - short_description - status - terms - updated_at - uuid PartnershipAnnouncement: type: object required: - identifier properties: created_at: type: string description: Time of Creation format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte description: type: string description: Brief context summary maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] entity_def_id: type: string description: 'Entity Def Type * partnership_announcement - Partnership Announcement' enum: - partnership_announcement x-enum-descriptions: - Partnership Announcement x-cb-field-enum-values: - value: partnership_announcement description: Partnership Announcement x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Partnership announcement identifier allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts key_event_date: type: string description: Date when the news article was posted format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte organization: type: object description: Organization that had a partnership announcement mentioned allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts press_reference_link: type: object description: Title of the news article allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] sentiment: type: string description: 'Sentiment of the news article(s) that mention this partnership announcement * c100_positive - Positive * c200_neutral - Neutral * c300_negative - Negative' enum: - c100_positive - c200_neutral - c300_negative x-enum-descriptions: - Positive - Neutral - Negative x-cb-field-enum-values: - value: c100_positive description: Positive - value: c200_neutral description: Neutral - value: c300_negative description: Negative x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes updated_at: type: string description: Time of Update format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string description: UUID format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes OrgSimilarityEntity: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/OrgSimilarity' properties: $ref: '#/components/schemas/OrgSimilarity' KeyEmployeeChangeFieldId: type: string description: KeyEmployeeChange field ids enum: - created_at - description - entity_def_id - identifier - key_event_date - organization_identifier - press_reference_link - sentiment - updated_at - uuid LegalProceedingFieldId: type: string description: LegalProceeding field ids enum: - created_at - description - entity_def_id - identifier - key_event_date - name - organization - press_reference_link - proceeding_type - sentiment - updated_at - uuid ProductEntity: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/Product' properties: $ref: '#/components/schemas/Product' MicroCategoryFieldId: type: string description: MicroCategory field ids enum: - categories - created_at - entity_def_id - identifier - last_market_insight_direction - name - updated_at - uuid ResearchInsightFieldId: type: string description: ResearchInsight field ids enum: - created_at - description - entity_def_id - generated_on - identifier - organization - updated_at - uuid ProductLaunchEntity: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/ProductLaunch' properties: $ref: '#/components/schemas/ProductLaunch' MarketInsight: type: object required: - identifier properties: created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte direction: type: string description: '* c100_growing - Growing * c200_stable - Stable * c300_declining - Declining' enum: - c100_growing - c200_stable - c300_declining x-enum-descriptions: - Growing - Stable - Declining x-cb-field-enum-values: - value: c100_growing description: Growing - value: c200_stable description: Stable - value: c300_declining description: Declining x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes entity_def_id: type: string description: 'Market Insight * market_insight - Market Insight' enum: - market_insight x-enum-descriptions: - Market Insight x-cb-field-enum-values: - value: market_insight description: Market Insight x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes generated_on: type: string format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte identifier: type: object description: Market Insight allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts subject: type: object description: Industry Collection Type allOf: - $ref: '#/components/schemas/EntityIdentifier_4' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes Organization_5: type: object required: - identifier properties: acquirer_identifier: type: object description: Name of the organization that made the acquisition allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts aliases: type: array description: Alternate or previous names for the organization items: type: string maxLength: 255 x-cb-field-type: text_short_multi x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts categories: type: array description: Descriptive keyword for an Organization (e.g. SaaS, Android, Cloud Computing, Medical Device) items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all category_groups: type: array description: Superset of Industries (e.g. Software, Mobile, Health Care) items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all closed_on: type: object description: The date when the organization is closed allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte company_type: type: string description: 'Whether an Organization is for profit or non-profit * for_profit - For Profit * non_profit - Non-profit' enum: - for_profit - non_profit x-enum-descriptions: - For Profit - Non-profit x-cb-field-enum-values: - value: for_profit description: For Profit - value: non_profit description: Non-profit x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes contact_email: type: string description: General contact email for the organization maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte delisted_on: type: object description: The date when the Organization removed its stock from the stock exchange. allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte demo_days: type: boolean description: Whether an accelerator hosts any demo days x-cb-field-type: boolean x-cb-searchable: true x-cb-search-operators: - blank - eq description: type: string description: Organization Description, Industries, Industry Groups maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains diversity_spotlights: type: array description: Types of diversity represented in an organization, specifically of those who are founding members, currently the CEO, or have check-writing abilities in an investment firm. This feature is in beta and may change with future updates. items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all entity_def_id: type: string description: '* organization - Organization' enum: - organization x-enum-descriptions: - Organization x-cb-field-enum-values: - value: organization description: Organization x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes equity_funding_total: type: object description: Total funding amount raised across all Funding Rounds excluding debt allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq exited_on: type: object description: Date the organization was acquired or went public allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte facebook: type: object description: Link to Organization's Facebook page allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] facet_ids: type: array items: type: string description: '* company - Company * government_entity - Government Entity * investor - Investor * school - School' enum: - company - government_entity - investor - school x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all founded_on: type: object description: Date the Organization was founded allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte founder_identifiers: type: array description: Founders of the organization items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all funding_stage: type: string description: 'This field describes an organization''s most recent funding status (e.g. Early Stage Venture, Late Stage Venture, M&A) * early_stage_venture - Early Stage Venture * ipo - IPO * late_stage_venture - Late Stage Venture * m_and_a - M&A * private_equity - Private Equity * seed - Seed' enum: - seed - early_stage_venture - late_stage_venture - private_equity - m_and_a - ipo x-enum-descriptions: - Seed - Early Stage Venture - Late Stage Venture - Private Equity - M&A - IPO x-cb-field-enum-values: - value: seed description: Seed - value: early_stage_venture description: Early Stage Venture - value: late_stage_venture description: Late Stage Venture - value: private_equity description: Private Equity - value: m_and_a description: M&A - value: ipo description: IPO x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes funding_total: type: object description: Total amount raised across all funding rounds allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq funds_total: type: object description: Total funding amount raised across all Fund Raises allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq growth_insight_confidence: type: string description: 'Confidence level associated with this company''s growth status * c100_unknown - Unknown * c200_low - Low * c300_medium - Medium * c400_high - High' enum: - c100_unknown - c200_low - c300_medium - c400_high x-enum-descriptions: - Unknown - Low - Medium - High x-cb-field-enum-values: - value: c100_unknown description: Unknown - value: c200_low description: Low - value: c300_medium description: Medium - value: c400_high description: High x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes growth_insight_direction: type: string description: '* c100_uncertain - Uncertain * c200_declining - Not Growing * c300_stable - Stable * c400_growing - Growing' enum: - c100_uncertain - c200_declining - c300_stable - c400_growing x-enum-descriptions: - Uncertain - Not Growing - Stable - Growing x-cb-field-enum-values: - value: c100_uncertain description: Uncertain - value: c200_declining description: Not Growing - value: c300_stable description: Stable - value: c400_growing description: Growing x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes growth_score: type: number description: Current Growth Score x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq growth_score_delta_d90: type: number description: Change in Growth Score over the past 90 days x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq heat_score: type: number description: Current Heat Score x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq heat_score_delta_d90: type: number description: Change in Heat Score over the past 90 days x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq hub_tags: type: array description: Tags are labels assigned to organizations, which identify their belonging to a group with that shared label items: type: string description: 'Tags are labels assigned to organizations, which identify their belonging to a group with that shared label * cbvp - Crunchbase Venture Program * emerging_unicorn - Emerging Unicorn * exited_unicorn - Exited Unicorn * pledge_one_percent - Pledge 1% * unicorn - Unicorn' enum: - cbvp - pledge_one_percent - unicorn - emerging_unicorn - exited_unicorn x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all identifier: type: object description: Name of the Organization allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts image_id: type: string description: The profile image of the organization on Crunchbase maxLength: 255 x-cb-field-type: image_id x-cb-searchable: false x-cb-search-operators: [] image_url: type: string description: The url of the profile image maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] investor_identifiers: type: array description: The top 5 investors with investments in this company, ordered by Crunchbase Rank items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all investor_stage: type: array description: This describes the stage of investments made by this organization (e.g. Angel, Fund of Funds, Venture Capital) items: type: string description: 'This describes the stage of investments made by this organization (e.g. Angel, Fund of Funds, Venture Capital) * convertible_note - Convertible Note * crowdfunding - Crowdfunding * debt - Debt * early_stage_venture - Early Stage Venture * grant - Grant * initial_coin_offering - Initial Coin Offering * late_stage_venture - Late Stage Venture * non_equity_assistance - Non Equity Assistance * post_ipo - Post-Ipo * private_equity - Private Equity * secondary_market - Secondary Market * seed - Seed * venture - Venture' enum: - seed - early_stage_venture - late_stage_venture - venture - private_equity - crowdfunding - debt - grant - non_equity_assistance - convertible_note - secondary_market - post_ipo - initial_coin_offering x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all investor_type: type: array description: This describes the type of investor this organization is (e.g. Angel, Fund of Funds, Venture Capital) items: type: string description: 'This describes the type of investor this organization is (e.g. Angel, Fund of Funds, Venture Capital) * accelerator - Accelerator * angel_group - Angel Group * co_working_space - Co-Working Space * corporate_venture_capital - Corporate Venture Capital * entrepreneurship_program - Entrepreneurship Program * family_investment_office - Family Investment Office * fund_of_funds - Fund Of Funds * government_office - Government Office * hedge_fund - Hedge Fund * incubator - Incubator * investment_bank - Investment Bank * micro_vc - Micro VC * pension_funds - Pension Funds * private_equity_firm - Private Equity Firm * secondary_purchaser - Secondary Purchaser * startup_competition - Startup Competition * syndicate - Syndicate * university_program - University Program * venture_capital - Venture Capital * venture_debt - Venture Debt' enum: - venture_capital - corporate_venture_capital - private_equity_firm - accelerator - micro_vc - angel_group - incubator - investment_bank - family_investment_office - venture_debt - co_working_space - fund_of_funds - hedge_fund - government_office - university_program - entrepreneurship_program - secondary_purchaser - startup_competition - syndicate - pension_funds x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all ipo_status: type: string description: 'The current public status of the Organization * delisted - Delisted * private - Private * public - Public' enum: - public - delisted - private x-enum-descriptions: - Public - Delisted - Private x-cb-field-enum-values: - value: public description: Public - value: delisted description: Delisted - value: private description: Private x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes last_equity_funding_total: type: object description: Amount of most recent Funding Round excluding debt allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq last_equity_funding_type: type: string description: 'The most recent Funding Round excluding debt * angel - Angel * convertible_note - Convertible Note * corporate_round - Corporate Round * debt_financing - Debt Financing * equity_crowdfunding - Equity Crowdfunding * grant - Grant * initial_coin_offering - Initial Coin Offering * non_equity_assistance - Non-equity Assistance * post_ipo_debt - Post-IPO Debt * post_ipo_equity - Post-IPO Equity * post_ipo_secondary - Post-IPO Secondary * pre_seed - Pre-Seed * private_equity - Private Equity * product_crowdfunding - Product Crowdfunding * secondary_market - Secondary Market * seed - Seed * series_a - Series A * series_b - Series B * series_c - Series C * series_d - Series D * series_e - Series E * series_f - Series F * series_g - Series G * series_h - Series H * series_i - Series I * series_j - Series J * series_unknown - Venture - Series Unknown * undisclosed - Undisclosed' enum: - pre_seed - seed - series_a - series_b - series_c - series_d - series_e - series_f - series_g - series_h - series_i - series_j - series_unknown - angel - private_equity - debt_financing - convertible_note - grant - corporate_round - equity_crowdfunding - product_crowdfunding - secondary_market - post_ipo_equity - post_ipo_debt - post_ipo_secondary - non_equity_assistance - initial_coin_offering - undisclosed x-enum-descriptions: - Pre-Seed - Seed - Series A - Series B - Series C - Series D - Series E - Series F - Series G - Series H - Series I - Series J - Venture - Series Unknown - Angel - Private Equity - Debt Financing - Convertible Note - Grant - Corporate Round - Equity Crowdfunding - Product Crowdfunding - Secondary Market - Post-IPO Equity - Post-IPO Debt - Post-IPO Secondary - Non-equity Assistance - Initial Coin Offering - Undisclosed x-cb-field-enum-values: - value: pre_seed description: Pre-Seed - value: seed description: Seed - value: series_a description: Series A - value: series_b description: Series B - value: series_c description: Series C - value: series_d description: Series D - value: series_e description: Series E - value: series_f description: Series F - value: series_g description: Series G - value: series_h description: Series H - value: series_i description: Series I - value: series_j description: Series J - value: series_unknown description: Venture - Series Unknown - value: angel description: Angel - value: private_equity description: Private Equity - value: debt_financing description: Debt Financing - value: convertible_note description: Convertible Note - value: grant description: Grant - value: corporate_round description: Corporate Round - value: equity_crowdfunding description: Equity Crowdfunding - value: product_crowdfunding description: Product Crowdfunding - value: secondary_market description: Secondary Market - value: post_ipo_equity description: Post-IPO Equity - value: post_ipo_debt description: Post-IPO Debt - value: post_ipo_secondary description: Post-IPO Secondary - value: non_equity_assistance description: Non-equity Assistance - value: initial_coin_offering description: Initial Coin Offering - value: undisclosed description: Undisclosed x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes last_funding_at: type: string description: Date of most recent Funding Round format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte last_funding_total: type: object description: Amount of most recent Funding Round allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq last_funding_type: type: string description: 'Last funding round type (e.g. Seed, Series A, Private Equity) * angel - Angel * convertible_note - Convertible Note * corporate_round - Corporate Round * debt_financing - Debt Financing * equity_crowdfunding - Equity Crowdfunding * grant - Grant * initial_coin_offering - Initial Coin Offering * non_equity_assistance - Non-equity Assistance * post_ipo_debt - Post-IPO Debt * post_ipo_equity - Post-IPO Equity * post_ipo_secondary - Post-IPO Secondary * pre_seed - Pre-Seed * private_equity - Private Equity * product_crowdfunding - Product Crowdfunding * secondary_market - Secondary Market * seed - Seed * series_a - Series A * series_b - Series B * series_c - Series C * series_d - Series D * series_e - Series E * series_f - Series F * series_g - Series G * series_h - Series H * series_i - Series I * series_j - Series J * series_unknown - Venture - Series Unknown * undisclosed - Undisclosed' enum: - pre_seed - seed - series_a - series_b - series_c - series_d - series_e - series_f - series_g - series_h - series_i - series_j - series_unknown - angel - private_equity - debt_financing - convertible_note - grant - corporate_round - equity_crowdfunding - product_crowdfunding - secondary_market - post_ipo_equity - post_ipo_debt - post_ipo_secondary - non_equity_assistance - initial_coin_offering - undisclosed x-enum-descriptions: - Pre-Seed - Seed - Series A - Series B - Series C - Series D - Series E - Series F - Series G - Series H - Series I - Series J - Venture - Series Unknown - Angel - Private Equity - Debt Financing - Convertible Note - Grant - Corporate Round - Equity Crowdfunding - Product Crowdfunding - Secondary Market - Post-IPO Equity - Post-IPO Debt - Post-IPO Secondary - Non-equity Assistance - Initial Coin Offering - Undisclosed x-cb-field-enum-values: - value: pre_seed description: Pre-Seed - value: seed description: Seed - value: series_a description: Series A - value: series_b description: Series B - value: series_c description: Series C - value: series_d description: Series D - value: series_e description: Series E - value: series_f description: Series F - value: series_g description: Series G - value: series_h description: Series H - value: series_i description: Series I - value: series_j description: Series J - value: series_unknown description: Venture - Series Unknown - value: angel description: Angel - value: private_equity description: Private Equity - value: debt_financing description: Debt Financing - value: convertible_note description: Convertible Note - value: grant description: Grant - value: corporate_round description: Corporate Round - value: equity_crowdfunding description: Equity Crowdfunding - value: product_crowdfunding description: Product Crowdfunding - value: secondary_market description: Secondary Market - value: post_ipo_equity description: Post-IPO Equity - value: post_ipo_debt description: Post-IPO Debt - value: post_ipo_secondary description: Post-IPO Secondary - value: non_equity_assistance description: Non-equity Assistance - value: initial_coin_offering description: Initial Coin Offering - value: undisclosed description: Undisclosed x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes last_key_employee_change_date: type: string description: See companies that have hired executives (VP and above) in a certain date range format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte last_layoff_date: type: string description: Date of last layoff event format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte last_market_insights: type: array description: The latest market insight identifiers for this organization items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all layout_id: type: string description: 'This is the auto-generated layout for the profile * investor - Investor Layout * school - School Layout' enum: - school - investor x-enum-descriptions: - School Layout - Investor Layout x-cb-field-enum-values: - value: school description: School Layout - value: investor description: Investor Layout x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes legal_name: type: string description: The legal name of the organization maxLength: 255 x-cb-field-type: text_short x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts linkedin: type: object description: Link to Organization's LinkedIn page allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] listed_stock_symbol: type: string description: Stock ticker symbol (e.g. AAPL, FB, TWTR) maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] location_group_identifiers: type: array description: Where the organization is headquartered (e.g. San Francisco Bay Area, Silicon Valley) items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all location_identifiers: type: array description: Where the organization is headquartered items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all micro_categories: type: array description: Micro industries associated with this Organization items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all name: type: string maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] num_acquisitions: type: number description: Total number of Acquisitions x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_alumni: type: number description: Total number of alumni x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_articles: type: number description: Number of news articles that reference the Organization x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_current_advisor_positions: type: number description: Total number of board member and advisor profiles an organization has on Crunchbase x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_current_positions: type: number description: Total number of employee profiles an organization has on Crunchbase x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_diversity_spotlight_investments: type: number description: Total number of diversity investments made by an investor x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_employees_enum: type: string description: 'Total number of employees * c_00001_00010 - 1-10 * c_00011_00050 - 11-50 * c_00051_00100 - 51-100 * c_00101_00250 - 101-250 * c_00251_00500 - 251-500 * c_00501_01000 - 501-1000 * c_01001_05000 - 1001-5000 * c_05001_10000 - 5001-10000 * c_10001_max - 10001+' enum: - c_00001_00010 - c_00011_00050 - c_00051_00100 - c_00101_00250 - c_00251_00500 - c_00501_01000 - c_01001_05000 - c_05001_10000 - c_10001_max x-enum-descriptions: - 1-10 - 11-50 - 51-100 - 101-250 - 251-500 - 501-1000 - 1001-5000 - 5001-10000 - 10001+ x-cb-field-enum-values: - value: c_00001_00010 description: 1-10 - value: c_00011_00050 description: 11-50 - value: c_00051_00100 description: 51-100 - value: c_00101_00250 description: 101-250 - value: c_00251_00500 description: 251-500 - value: c_00501_01000 description: 501-1000 - value: c_01001_05000 description: 1001-5000 - value: c_05001_10000 description: 5001-10000 - value: c_10001_max description: 10001+ x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes num_enrollments: type: string description: 'Total number of Enrollments * c_00001_00010 - 1-10 * c_00011_00050 - 11-50 * c_00051_00100 - 51-100 * c_00101_00250 - 101-250 * c_00251_00500 - 251-500 * c_00501_01000 - 501-1000 * c_01001_05000 - 1001-5000 * c_05001_10000 - 5001-10000 * c_10001_max - 10001+' enum: - c_00001_00010 - c_00011_00050 - c_00051_00100 - c_00101_00250 - c_00251_00500 - c_00501_01000 - c_01001_05000 - c_05001_10000 - c_10001_max x-enum-descriptions: - 1-10 - 11-50 - 51-100 - 101-250 - 251-500 - 501-1000 - 1001-5000 - 5001-10000 - 10001+ x-cb-field-enum-values: - value: c_00001_00010 description: 1-10 - value: c_00011_00050 description: 11-50 - value: c_00051_00100 description: 51-100 - value: c_00101_00250 description: 101-250 - value: c_00251_00500 description: 251-500 - value: c_00501_01000 description: 501-1000 - value: c_01001_05000 description: 1001-5000 - value: c_05001_10000 description: 5001-10000 - value: c_10001_max description: 10001+ x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes num_event_appearances: type: number description: Total number of events an Organization appeared in x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_exits: type: number description: Total number of Exits x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_exits_ipo: type: number description: Total number of Exits (IPO) x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_founder_alumni: type: number description: Total number of Alumni that are Founders x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_founders: type: number description: Total number of Founders x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_funding_rounds: type: number description: Total number of Funding Rounds x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_funds: type: number description: Total number of Funds raised x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_investments: type: number description: Total number of Investments made x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_investors: type: number description: Total number of investment firms and individual investors x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_lead_investments: type: number description: Total number of Lead Investments made x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_lead_investors: type: number description: Total number of lead investment firms and individual investors x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_past_positions: type: number description: Total number of past employee profiles of an organization x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_portfolio_organizations: type: number description: Total number of portfolio organizations x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_sub_organizations: type: number description: Total number of sub-organizations that belongs to a parent Organization x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq operating_status: type: string description: 'Operating Status of Organization e.g. Active, Closed * active - Active * closed - Closed' enum: - active - closed x-enum-descriptions: - Active - Closed x-cb-field-enum-values: - value: active description: Active - value: closed description: Closed x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes owner_identifier: type: object description: This is the parent Organization of the sub-organization allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts permalink: type: string maxLength: 255 x-cb-field-type: permalink x-cb-searchable: false x-cb-search-operators: [] permalink_aliases: type: array description: These are the alternative aliases to the primary permalink of the Organization items: type: string maxLength: 255 x-cb-field-type: text_exact_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all phone_number: type: string description: Organization's general phone number maxLength: 255 x-cb-field-type: text_exact x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes program_application_deadline: type: string description: The deadline for applying to the Accelerator Program format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte program_duration: type: number description: The duration of the Acceleration Program in number of weeks x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq program_type: type: string description: 'The type of Accelerator Program (e.g. On-Site, Online) * on_site - On-Site * online - Online' enum: - on_site - online x-enum-descriptions: - On-Site - Online x-cb-field-enum-values: - value: on_site description: On-Site - value: online description: Online x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes rank: type: number description: Algorithmic rank assigned to the top profiles on Crunchbase x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank_delta_d30: type: number description: Movement in Rank over the last 30 days using a score from -10 to 10 format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank_delta_d7: type: number description: Movement in Rank over the last 7 days using a score from -10 to 10 format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank_delta_d90: type: number description: Movement in Rank over the last 90 days using a score from -10 to 10 format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank_org: type: number description: Algorithmic rank assigned to the top 100,000 most active Organizations x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq revenue_range: type: string description: 'Estimated revenue range for organization * r_00000000 - Less than $1M * r_00001000 - $1M to $10M * r_00010000 - $10M to $50M * r_00050000 - $50M to $100M * r_00100000 - $100M to $500M * r_00500000 - $500M to $1B * r_01000000 - $1B to $10B * r_10000000 - $10B+' enum: - r_00000000 - r_00001000 - r_00010000 - r_00050000 - r_00100000 - r_00500000 - r_01000000 - r_10000000 x-enum-descriptions: - Less than $1M - $1M to $10M - $10M to $50M - $50M to $100M - $100M to $500M - $500M to $1B - $1B to $10B - $10B+ x-cb-field-enum-values: - value: r_00000000 description: Less than $1M - value: r_00001000 description: $1M to $10M - value: r_00010000 description: $10M to $50M - value: r_00050000 description: $50M to $100M - value: r_00100000 description: $100M to $500M - value: r_00500000 description: $500M to $1B - value: r_01000000 description: $1B to $10B - value: r_10000000 description: $10B+ x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes school_method: type: string description: 'The type of School Method (e.g. On Campus, Online) * on_compus - On Campus * online - Online * online_and_on_campus - Online and On Campus' enum: - on_compus - online - online_and_on_campus x-enum-descriptions: - On Campus - Online - Online and On Campus x-cb-field-enum-values: - value: on_compus description: On Campus - value: online description: Online - value: online_and_on_campus description: Online and On Campus x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes school_program: type: string description: 'The type of School Program (e.g. Bootcamp, Four Year University) * bootcamp - Bootcamp * community_college - Community College * four_year_university - Four Year University * graduate_university - Graduate University * high_school - High School * trade_school - Trade School * two_year_university - Two Year University' enum: - four_year_university - two_year_university - graduate_university - bootcamp - trade_school - community_college - high_school x-enum-descriptions: - Four Year University - Two Year University - Graduate University - Bootcamp - Trade School - Community College - High School x-cb-field-enum-values: - value: four_year_university description: Four Year University - value: two_year_university description: Two Year University - value: graduate_university description: Graduate University - value: bootcamp description: Bootcamp - value: trade_school description: Trade School - value: community_college description: Community College - value: high_school description: High School x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes school_type: type: string description: 'The type of school * for_profit_private - Private * non_profit_private - Private (Non-Profit) * public - Public' enum: - public - for_profit_private - non_profit_private x-enum-descriptions: - Public - Private - Private (Non-Profit) x-cb-field-enum-values: - value: public description: Public - value: for_profit_private description: Private - value: non_profit_private description: Private (Non-Profit) x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes short_description: type: string description: Text of Organization Description, Industries, and Industry Groups maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains status: type: string description: 'Status of Organization e.g. Operating, Closed, Acquired, IPO * closed - Closed * ipo - IPO * operating - Operating * was_acquired - Was Acquired' enum: - closed - ipo - operating - was_acquired x-enum-descriptions: - Closed - IPO - Operating - Was Acquired x-cb-field-enum-values: - value: closed description: Closed - value: ipo description: IPO - value: operating description: Operating - value: was_acquired description: Was Acquired x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes stock_exchange_symbol: type: string description: 'Stock exchange where the Organization is listed e.g. NYSE, NASDAQ * adx - ADX - Abu Dhabi Securities Exchange * afx - AFX - Afghanistan Stock Exchange * altx - ALTX - ALTX East Africa Exchange * amex - AMEX - American Stock Exchange * ams - AMS - Euronext Amsterdam * amx - AMX - Armenia Securities Exchange * asce - ASCE - Abuja Securities and Commodities Exchange * asx - ASX - Australian Securities Exchange * ath - ATH - Athens Stock Exchange * bcba - BCBA - Buenos Aires Stock Exchange * bdp - BDP - Budapest Stock Exchange * belex - BELEX - Belgrade Stock Exchange * ber - BER - Berliner Börse * bfb - BFB - Baku Stock Exchange * bit - BIT - Italian Stock Exchange * bkk - BKK - Thailand Stock Exchange * blse - BLSE - Banja Luka Stock Exchange * bme - BME - Madrid Stock Exchange * bmv - BMV - Mexican Stock Exchange * bom - BOM - Bombay Stock Exchange * brvm - BRVM - Regional Securities Exchange SA * bse - BSE - Bulgarian Stock Exchange * bse_lb - BSE - Beirut Stock Exchange * bsse - BSSE - Bratislava Stock Exchange * bsx - BSX - Bermuda Stock Exchange * bvb - BVB - Bucharest Stock Exchange * bvc - BVC - Colombian Stock Exchange * bvfb - BVFB - Belarusian Currency and Stock Exchange * bvm - BVM - Montevideo Stock Exchange * bvmf - B3 - Brazil Stock Exchange and OTC Market * bvmt - BVMT - Tunis Stock Exchange * bx - BX - Berne Stock Exchange * cas - CAS - Casablanca Stock Exchange * cise - CISE - Channel Islands Stock Exchange * cnsx - CNSX - Canadian National Stock Exchange * col - COL - Colombo Stock Exchange * cph - CPH - Copenhagen Stock Exchange * cse - CSE - Canadian Securities Exchange * cse_cy - CSE - Cyprus Stock Exchange * csx - CSX - Cambodia Securities Exchange * cve - TSX-V - Toronto TSX Venture Exchange * dfm - DFM - Dubai Financial Market * dse - DSE - Dhaka Stock Exchange * dsx - DSX - Douala Stock Exchange * dus - DUS - Börse Düsseldorf * ebr - EBR - Euronext Brussels * egx - EGX - Egypt Stock Exchange * eli - ELI - Euronext Lisbon * epa - EPA - Euronext Paris * etr - ETR - Deutsche Börse XETRA * eurex - EUREX - Eurex Exchange * fra - FRA - Frankfurt Stock Exchange * fwb - FWB - Börse Frankfurt Stock Exchange * gha - GHA - Ghana Stock Exchange * gsx - GSX - Georgian Stock Exchange * gsx_gi - GSX - Gibraltar Stock Exchange * hel - HEL - Helsinki Stock Exchange * hkg - HKG - Hong Kong Stock Exchange * hnx - HNX - Hanoi Stock Exchange * hose - HOSE - Ho Chi Minh Stock Exchange * ice - ICE - Iceland Stock Exchange * idx - IDX - Indonesia Stock Exchange * iex - IEX - Investors Exchange * ifb - IFB - Iran Fara Bourse * ime - IME - Iran Mercantile Exchange * irenex - IRENEX - Iran Energy Exchange * ise - ISE - Irish Stock Exchange * ist - IST - Istanbul Stock Exchange * isx - ISX - Iraq Stock Exchange * jp - JP - Japan Exchange * jsc - JSC - Belarusian Currency and Stock Exchange * jse - JSE - Johannesburg Stock Exchange * jse_jam - JSE - Jamaica Stock Exchange * kase - KASE - Kazakhstan Stock Exchange * klse - KLSE - Malaysia Stock Exchange * kosdaq - KOSDAQ - Korean Securities Dealers Automated Quotations * krx - KRX - Korea Stock Exchange * kse - KSE - Kuwait Stock Exchange * lje - LJE - Ljubljana Stock Exchange * lse - LSE - London Stock Exchange * lsm - LSM - Libyan Stock Market * lsx - LSX - Lao Securities Exchange * luse - LuSE - Lusaka Securities Exchange * luxse - LuxSE - Luxembourg Stock Exchange * mal - MAL - Malta Stock Exchange * mcx - MCX - Multi Commodity Exchange of India * meff - MEFF - Mercado Spanish Financial Futures Market * mnse - MNSE - Montenegro Stock Exchange * moex - MOEX - Moscow Exchange * mse - MSE - Metropolitan Stock Exchange * mse_md - MSE - Moldova Stock Exchange * mse_mk - MSE - Macedonian Stock Exchange * msei - MSEI - Metropolitan Stock Exchange of India * msm - MSM - Muscat Securities Market * mun - MUN - Börse München * nasdaq - NASDAQ * nbo - NSE - Nairobi Securities Exchange * neeq - NEEQ - National Equities Exchange and Quotations * nepse - NEPSE - Nepal Stock Exchange * nex - NEX - NEX Exchange * ngm - NGM - Nordic Growth Market Exchange * nig - NIG - Nigerian Stock Exchange * notc - NOTC - Norwegian OTC * npex - NPEX - NPEX Stock Exchange * nse - NSE - National Stock Exchange of India * nsx - NSX - National Stock Exchange of Australia * nyse - NYSE - New York Stock Exchange * nysearca - NYSEARCA - NYSE Arca * nysemkt - NYSEAMERICAN - NYSE American * nze - NZE - New Zealand Stock Exchange * ose - OSE - Oslo Stock Exchange * otcbb - OTCBB - FINRA OTC Bulletin Board * otcpink - OTC Pink * otcqb - OTCQB * otcqx - OTCQX * pdex - PDEx - Philippine Dealing Exchange * pex - PEX - Palestine Exchange * pfts - PFTS - PFTS Ukraine Stock Exchange * pomsox - POMSoX - Port Moresby Stock Exchange * prg - PRA - Prague Stock Exchange * pse - PSE - Philippine Stock Exchange * psx - PSX - Pakistan Stock Exchange * qse - QSE - Qatar Stock Exchange * rfb - RFB - Riga Stock Exchange * rse - RSE - Rwanda Stock Exchange * rsebl - RSEBL - Royal Securities Exchange of Bhutan * sase - SASE - Sarajevo Stock Exchange * sbx - SBX - BX Swiss * sehk - SEHK - The Stock Exchange of Hong Kong * sem - SEM - Stock Exchange of Mauritius * sgbv - SGBV - Algiers Stock Exchange * sgx - SGX - Singapore Stock Exchange * six - SIX - SIX Swiss Exchange * spbex - SPBEX - Saint Petersburg Stock Exchange * spse - SPSE - South Pacific Stock Exchange * sse - SSE - Shanghai Stock Exchange * ssx - SSX - Sydney Stock Exchange * sto - STO - Stockholm Stock Exchange * stu - STU - Börse Stuttgart * swx - SWX - SIX Swiss Exchange * szse - SZSE - Shenzhen Stock Exchange * tadawul - Tadawul - Saudi Stock Exchange * tal - TSE - Tallinn Stock Exchange * tfex - TFEX - Thailand Futures Exchange * tise - TISE - The International Stock Exchange * tlv - TLV - Tel Aviv Stock Exchange * tpe - TWSE - Taiwan Stock Exchange * tse_al - TSE - Tirana Stock Exchange * tse_ir - TSE - Tehran Stock Exchange * tsec - TWO - Taiwan OTC Exchange * tsx - TSX - Toronto Stock Exchange * ttse - TTSE - Trinidad and Tobago Stock Exchange * tyo - TYO - Tokyo Stock Exchange * use - USE - Uganda Securities Exchange * ux - UX - Ukrainian Exchange * vie - VIE - Vienna Stock Exchange * vmf - VMF - Faroese Securities Market * vse - VSE - Vancouver Stock Exchange * wse - WSE - Warsaw Stock Exchange * ysx - YSX - Yangon Stock Exchange * zamace - ZAMACE - Zambian Commodity Exchange * zse - ZSE - Zimbabwe Stock Exchange * zse_hr - ZSE - Zagreb Stock Exchange' enum: - adx - afx - altx - amx - amex - ams - asce - asx - ath - bcba - bdp - belex - ber - bfb - bit - bkk - blse - bme - bmv - bom - brvm - bse - bse_lb - bsse - bsx - bvb - bvc - bvfb - bvm - bvmf - bvmt - bx - cas - cise - cnsx - col - cph - cse - cse_cy - csx - dfm - dse - dsx - dus - ebr - egx - eli - epa - etr - eurex - fra - fwb - gha - gsx - gsx_gi - hel - hkg - hnx - hose - ice - idx - iex - ifb - ime - irenex - ise - ist - isx - jp - jsc - jse - jse_jam - kase - klse - kosdaq - krx - kse - lje - lse - lsm - lsx - luse - luxse - mal - mcx - meff - mnse - moex - mse - mse_md - mse_mk - msei - msm - mun - nasdaq - nbo - nex - nepse - neeq - ngm - nig - notc - npex - nse - nsx - nyse - nysearca - nysemkt - nze - ose - otcbb - otcpink - otcqb - otcqx - pdex - pex - pfts - pomsox - prg - pse - psx - qse - rfb - rse - rsebl - sase - sbx - sehk - sem - sgbv - sgx - six - spbex - spse - sse - ssx - sto - stu - swx - szse - tal - tfex - tise - tlv - tpe - tse_al - tse_ir - tsec - tsx - cve - tyo - ttse - tadawul - use - ux - vie - vmf - vse - wse - ysx - zamace - zse - zse_hr x-enum-descriptions: - ADX - Abu Dhabi Securities Exchange - AFX - Afghanistan Stock Exchange - ALTX - ALTX East Africa Exchange - AMX - Armenia Securities Exchange - AMEX - American Stock Exchange - AMS - Euronext Amsterdam - ASCE - Abuja Securities and Commodities Exchange - ASX - Australian Securities Exchange - ATH - Athens Stock Exchange - BCBA - Buenos Aires Stock Exchange - BDP - Budapest Stock Exchange - BELEX - Belgrade Stock Exchange - BER - Berliner Börse - BFB - Baku Stock Exchange - BIT - Italian Stock Exchange - BKK - Thailand Stock Exchange - BLSE - Banja Luka Stock Exchange - BME - Madrid Stock Exchange - BMV - Mexican Stock Exchange - BOM - Bombay Stock Exchange - BRVM - Regional Securities Exchange SA - BSE - Bulgarian Stock Exchange - BSE - Beirut Stock Exchange - BSSE - Bratislava Stock Exchange - BSX - Bermuda Stock Exchange - BVB - Bucharest Stock Exchange - BVC - Colombian Stock Exchange - BVFB - Belarusian Currency and Stock Exchange - BVM - Montevideo Stock Exchange - B3 - Brazil Stock Exchange and OTC Market - BVMT - Tunis Stock Exchange - BX - Berne Stock Exchange - CAS - Casablanca Stock Exchange - CISE - Channel Islands Stock Exchange - CNSX - Canadian National Stock Exchange - COL - Colombo Stock Exchange - CPH - Copenhagen Stock Exchange - CSE - Canadian Securities Exchange - CSE - Cyprus Stock Exchange - CSX - Cambodia Securities Exchange - DFM - Dubai Financial Market - DSE - Dhaka Stock Exchange - DSX - Douala Stock Exchange - DUS - Börse Düsseldorf - EBR - Euronext Brussels - EGX - Egypt Stock Exchange - ELI - Euronext Lisbon - EPA - Euronext Paris - ETR - Deutsche Börse XETRA - EUREX - Eurex Exchange - FRA - Frankfurt Stock Exchange - FWB - Börse Frankfurt Stock Exchange - GHA - Ghana Stock Exchange - GSX - Georgian Stock Exchange - GSX - Gibraltar Stock Exchange - HEL - Helsinki Stock Exchange - HKG - Hong Kong Stock Exchange - HNX - Hanoi Stock Exchange - HOSE - Ho Chi Minh Stock Exchange - ICE - Iceland Stock Exchange - IDX - Indonesia Stock Exchange - IEX - Investors Exchange - IFB - Iran Fara Bourse - IME - Iran Mercantile Exchange - IRENEX - Iran Energy Exchange - ISE - Irish Stock Exchange - IST - Istanbul Stock Exchange - ISX - Iraq Stock Exchange - JP - Japan Exchange - JSC - Belarusian Currency and Stock Exchange - JSE - Johannesburg Stock Exchange - JSE - Jamaica Stock Exchange - KASE - Kazakhstan Stock Exchange - KLSE - Malaysia Stock Exchange - KOSDAQ - Korean Securities Dealers Automated Quotations - KRX - Korea Stock Exchange - KSE - Kuwait Stock Exchange - LJE - Ljubljana Stock Exchange - LSE - London Stock Exchange - LSM - Libyan Stock Market - LSX - Lao Securities Exchange - LuSE - Lusaka Securities Exchange - LuxSE - Luxembourg Stock Exchange - MAL - Malta Stock Exchange - MCX - Multi Commodity Exchange of India - MEFF - Mercado Spanish Financial Futures Market - MNSE - Montenegro Stock Exchange - MOEX - Moscow Exchange - MSE - Metropolitan Stock Exchange - MSE - Moldova Stock Exchange - MSE - Macedonian Stock Exchange - MSEI - Metropolitan Stock Exchange of India - MSM - Muscat Securities Market - MUN - Börse München - NASDAQ - NSE - Nairobi Securities Exchange - NEX - NEX Exchange - NEPSE - Nepal Stock Exchange - NEEQ - National Equities Exchange and Quotations - NGM - Nordic Growth Market Exchange - NIG - Nigerian Stock Exchange - NOTC - Norwegian OTC - NPEX - NPEX Stock Exchange - NSE - National Stock Exchange of India - NSX - National Stock Exchange of Australia - NYSE - New York Stock Exchange - NYSEARCA - NYSE Arca - NYSEAMERICAN - NYSE American - NZE - New Zealand Stock Exchange - OSE - Oslo Stock Exchange - OTCBB - FINRA OTC Bulletin Board - OTC Pink - OTCQB - OTCQX - PDEx - Philippine Dealing Exchange - PEX - Palestine Exchange - PFTS - PFTS Ukraine Stock Exchange - POMSoX - Port Moresby Stock Exchange - PRA - Prague Stock Exchange - PSE - Philippine Stock Exchange - PSX - Pakistan Stock Exchange - QSE - Qatar Stock Exchange - RFB - Riga Stock Exchange - RSE - Rwanda Stock Exchange - RSEBL - Royal Securities Exchange of Bhutan - SASE - Sarajevo Stock Exchange - SBX - BX Swiss - SEHK - The Stock Exchange of Hong Kong - SEM - Stock Exchange of Mauritius - SGBV - Algiers Stock Exchange - SGX - Singapore Stock Exchange - SIX - SIX Swiss Exchange - SPBEX - Saint Petersburg Stock Exchange - SPSE - South Pacific Stock Exchange - SSE - Shanghai Stock Exchange - SSX - Sydney Stock Exchange - STO - Stockholm Stock Exchange - STU - Börse Stuttgart - SWX - SIX Swiss Exchange - SZSE - Shenzhen Stock Exchange - TSE - Tallinn Stock Exchange - TFEX - Thailand Futures Exchange - TISE - The International Stock Exchange - TLV - Tel Aviv Stock Exchange - TWSE - Taiwan Stock Exchange - TSE - Tirana Stock Exchange - TSE - Tehran Stock Exchange - TWO - Taiwan OTC Exchange - TSX - Toronto Stock Exchange - TSX-V - Toronto TSX Venture Exchange - TYO - Tokyo Stock Exchange - TTSE - Trinidad and Tobago Stock Exchange - Tadawul - Saudi Stock Exchange - USE - Uganda Securities Exchange - UX - Ukrainian Exchange - VIE - Vienna Stock Exchange - VMF - Faroese Securities Market - VSE - Vancouver Stock Exchange - WSE - Warsaw Stock Exchange - YSX - Yangon Stock Exchange - ZAMACE - Zambian Commodity Exchange - ZSE - Zimbabwe Stock Exchange - ZSE - Zagreb Stock Exchange x-cb-field-enum-values: - value: adx description: ADX - Abu Dhabi Securities Exchange - value: afx description: AFX - Afghanistan Stock Exchange - value: altx description: ALTX - ALTX East Africa Exchange - value: amx description: AMX - Armenia Securities Exchange - value: amex description: AMEX - American Stock Exchange - value: ams description: AMS - Euronext Amsterdam - value: asce description: ASCE - Abuja Securities and Commodities Exchange - value: asx description: ASX - Australian Securities Exchange - value: ath description: ATH - Athens Stock Exchange - value: bcba description: BCBA - Buenos Aires Stock Exchange - value: bdp description: BDP - Budapest Stock Exchange - value: belex description: BELEX - Belgrade Stock Exchange - value: ber description: BER - Berliner Börse - value: bfb description: BFB - Baku Stock Exchange - value: bit description: BIT - Italian Stock Exchange - value: bkk description: BKK - Thailand Stock Exchange - value: blse description: BLSE - Banja Luka Stock Exchange - value: bme description: BME - Madrid Stock Exchange - value: bmv description: BMV - Mexican Stock Exchange - value: bom description: BOM - Bombay Stock Exchange - value: brvm description: BRVM - Regional Securities Exchange SA - value: bse description: BSE - Bulgarian Stock Exchange - value: bse_lb description: BSE - Beirut Stock Exchange - value: bsse description: BSSE - Bratislava Stock Exchange - value: bsx description: BSX - Bermuda Stock Exchange - value: bvb description: BVB - Bucharest Stock Exchange - value: bvc description: BVC - Colombian Stock Exchange - value: bvfb description: BVFB - Belarusian Currency and Stock Exchange - value: bvm description: BVM - Montevideo Stock Exchange - value: bvmf description: B3 - Brazil Stock Exchange and OTC Market - value: bvmt description: BVMT - Tunis Stock Exchange - value: bx description: BX - Berne Stock Exchange - value: cas description: CAS - Casablanca Stock Exchange - value: cise description: CISE - Channel Islands Stock Exchange - value: cnsx description: CNSX - Canadian National Stock Exchange - value: col description: COL - Colombo Stock Exchange - value: cph description: CPH - Copenhagen Stock Exchange - value: cse description: CSE - Canadian Securities Exchange - value: cse_cy description: CSE - Cyprus Stock Exchange - value: csx description: CSX - Cambodia Securities Exchange - value: dfm description: DFM - Dubai Financial Market - value: dse description: DSE - Dhaka Stock Exchange - value: dsx description: DSX - Douala Stock Exchange - value: dus description: DUS - Börse Düsseldorf - value: ebr description: EBR - Euronext Brussels - value: egx description: EGX - Egypt Stock Exchange - value: eli description: ELI - Euronext Lisbon - value: epa description: EPA - Euronext Paris - value: etr description: ETR - Deutsche Börse XETRA - value: eurex description: EUREX - Eurex Exchange - value: fra description: FRA - Frankfurt Stock Exchange - value: fwb description: FWB - Börse Frankfurt Stock Exchange - value: gha description: GHA - Ghana Stock Exchange - value: gsx description: GSX - Georgian Stock Exchange - value: gsx_gi description: GSX - Gibraltar Stock Exchange - value: hel description: HEL - Helsinki Stock Exchange - value: hkg description: HKG - Hong Kong Stock Exchange - value: hnx description: HNX - Hanoi Stock Exchange - value: hose description: HOSE - Ho Chi Minh Stock Exchange - value: ice description: ICE - Iceland Stock Exchange - value: idx description: IDX - Indonesia Stock Exchange - value: iex description: IEX - Investors Exchange - value: ifb description: IFB - Iran Fara Bourse - value: ime description: IME - Iran Mercantile Exchange - value: irenex description: IRENEX - Iran Energy Exchange - value: ise description: ISE - Irish Stock Exchange - value: ist description: IST - Istanbul Stock Exchange - value: isx description: ISX - Iraq Stock Exchange - value: jp description: JP - Japan Exchange - value: jsc description: JSC - Belarusian Currency and Stock Exchange - value: jse description: JSE - Johannesburg Stock Exchange - value: jse_jam description: JSE - Jamaica Stock Exchange - value: kase description: KASE - Kazakhstan Stock Exchange - value: klse description: KLSE - Malaysia Stock Exchange - value: kosdaq description: KOSDAQ - Korean Securities Dealers Automated Quotations - value: krx description: KRX - Korea Stock Exchange - value: kse description: KSE - Kuwait Stock Exchange - value: lje description: LJE - Ljubljana Stock Exchange - value: lse description: LSE - London Stock Exchange - value: lsm description: LSM - Libyan Stock Market - value: lsx description: LSX - Lao Securities Exchange - value: luse description: LuSE - Lusaka Securities Exchange - value: luxse description: LuxSE - Luxembourg Stock Exchange - value: mal description: MAL - Malta Stock Exchange - value: mcx description: MCX - Multi Commodity Exchange of India - value: meff description: MEFF - Mercado Spanish Financial Futures Market - value: mnse description: MNSE - Montenegro Stock Exchange - value: moex description: MOEX - Moscow Exchange - value: mse description: MSE - Metropolitan Stock Exchange - value: mse_md description: MSE - Moldova Stock Exchange - value: mse_mk description: MSE - Macedonian Stock Exchange - value: msei description: MSEI - Metropolitan Stock Exchange of India - value: msm description: MSM - Muscat Securities Market - value: mun description: MUN - Börse München - value: nasdaq description: NASDAQ - value: nbo description: NSE - Nairobi Securities Exchange - value: nex description: NEX - NEX Exchange - value: nepse description: NEPSE - Nepal Stock Exchange - value: neeq description: NEEQ - National Equities Exchange and Quotations - value: ngm description: NGM - Nordic Growth Market Exchange - value: nig description: NIG - Nigerian Stock Exchange - value: notc description: NOTC - Norwegian OTC - value: npex description: NPEX - NPEX Stock Exchange - value: nse description: NSE - National Stock Exchange of India - value: nsx description: NSX - National Stock Exchange of Australia - value: nyse description: NYSE - New York Stock Exchange - value: nysearca description: NYSEARCA - NYSE Arca - value: nysemkt description: NYSEAMERICAN - NYSE American - value: nze description: NZE - New Zealand Stock Exchange - value: ose description: OSE - Oslo Stock Exchange - value: otcbb description: OTCBB - FINRA OTC Bulletin Board - value: otcpink description: OTC Pink - value: otcqb description: OTCQB - value: otcqx description: OTCQX - value: pdex description: PDEx - Philippine Dealing Exchange - value: pex description: PEX - Palestine Exchange - value: pfts description: PFTS - PFTS Ukraine Stock Exchange - value: pomsox description: POMSoX - Port Moresby Stock Exchange - value: prg description: PRA - Prague Stock Exchange - value: pse description: PSE - Philippine Stock Exchange - value: psx description: PSX - Pakistan Stock Exchange - value: qse description: QSE - Qatar Stock Exchange - value: rfb description: RFB - Riga Stock Exchange - value: rse description: RSE - Rwanda Stock Exchange - value: rsebl description: RSEBL - Royal Securities Exchange of Bhutan - value: sase description: SASE - Sarajevo Stock Exchange - value: sbx description: SBX - BX Swiss - value: sehk description: SEHK - The Stock Exchange of Hong Kong - value: sem description: SEM - Stock Exchange of Mauritius - value: sgbv description: SGBV - Algiers Stock Exchange - value: sgx description: SGX - Singapore Stock Exchange - value: six description: SIX - SIX Swiss Exchange - value: spbex description: SPBEX - Saint Petersburg Stock Exchange - value: spse description: SPSE - South Pacific Stock Exchange - value: sse description: SSE - Shanghai Stock Exchange - value: ssx description: SSX - Sydney Stock Exchange - value: sto description: STO - Stockholm Stock Exchange - value: stu description: STU - Börse Stuttgart - value: swx description: SWX - SIX Swiss Exchange - value: szse description: SZSE - Shenzhen Stock Exchange - value: tal description: TSE - Tallinn Stock Exchange - value: tfex description: TFEX - Thailand Futures Exchange - value: tise description: TISE - The International Stock Exchange - value: tlv description: TLV - Tel Aviv Stock Exchange - value: tpe description: TWSE - Taiwan Stock Exchange - value: tse_al description: TSE - Tirana Stock Exchange - value: tse_ir description: TSE - Tehran Stock Exchange - value: tsec description: TWO - Taiwan OTC Exchange - value: tsx description: TSX - Toronto Stock Exchange - value: cve description: TSX-V - Toronto TSX Venture Exchange - value: tyo description: TYO - Tokyo Stock Exchange - value: ttse description: TTSE - Trinidad and Tobago Stock Exchange - value: tadawul description: Tadawul - Saudi Stock Exchange - value: use description: USE - Uganda Securities Exchange - value: ux description: UX - Ukrainian Exchange - value: vie description: VIE - Vienna Stock Exchange - value: vmf description: VMF - Faroese Securities Market - value: vse description: VSE - Vancouver Stock Exchange - value: wse description: WSE - Warsaw Stock Exchange - value: ysx description: YSX - Yangon Stock Exchange - value: zamace description: ZAMACE - Zambian Commodity Exchange - value: zse description: ZSE - Zimbabwe Stock Exchange - value: zse_hr description: ZSE - Zagreb Stock Exchange x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes stock_symbol: type: object description: Stock ticker symbol (e.g. AAPL, FB, TWTR) allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts twitter: type: object description: Link to an organization's X page allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes valuation: type: object description: Latest post money valuation of organization allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq valuation_date: type: string description: Date of latest post money valuation format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte website: type: object description: Link to homepage allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] website_url: type: string description: Link to homepage maxLength: 8192 x-cb-field-type: url x-cb-searchable: true x-cb-search-operators: - domain_blank - domain_eq - domain_includes - not_domain_eq - not_domain_includes went_public_on: type: string description: The date when the Organization went public format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte EntityIdentifier_5: type: object description: Every entity in the system has a unique identifier that contains all necessary properties to represent it. required: - entity_def_id - uuid properties: entity_def_id: type: string enum: - acquisition - acquisition_prediction - address - award - category - category_group - market_insight - market_insight_reason - closure_prediction - current_valuation_estimate - degree - diversity_spotlight - event - event_appearance - fund - funding_prediction - funding_round - growth_insight - growth_prediction - investment - investor_insight - investor_match - ipo - ipo_prediction - job - key_employee_change - layoff - layoff_prediction - legal_proceeding - location - micro_category - remain_private_prediction - organization - org_similarity - product_similarity - ownership - partnership_announcement - person - press_reference - product - product_launch - research_insight image_id: type: string maxLength: 255 permalink: type: string maxLength: 255 uuid: type: string description: Universally Unique Identifier format: uuid value: type: string maxLength: 255 InvestorMatch_2: type: object required: - identifier properties: created_at: type: string description: Time of creation format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: 'Entity Def Type * investor_match - Investor Match' enum: - investor_match x-enum-descriptions: - Investor Match x-cb-field-enum-values: - value: investor_match description: Investor Match x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Investor Match Title allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts investor: type: object description: Unique identifier for the investor associated with this funding prediction allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts local_rank: type: number description: Ranking indicating the strength of the investor match x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq organization: type: object description: Unique identifier for the organization associated with this investor match allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts updated_at: type: string description: Time of Update format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string description: UUID format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes KeyEmployeeChange_2: type: object required: - identifier properties: created_at: type: string description: Time of Creation format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte description: type: string description: Description of the event maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] entity_def_id: type: string description: 'Entity Def Type * key_employee_change - Key Employee Change' enum: - key_employee_change x-enum-descriptions: - Key Employee Change x-cb-field-enum-values: - value: key_employee_change description: Key Employee Change x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Key employee change identifier allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts key_event_date: type: string description: Date when the news article was posted format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte organization_identifier: type: object description: Organization that had a key employee change mentioned allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts press_reference_link: type: object description: Title of the news article allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] sentiment: type: string description: 'Sentiment associated with key employee change * c100_positive - Positive * c200_neutral - Neutral * c300_negative - Negative' enum: - c100_positive - c200_neutral - c300_negative x-enum-descriptions: - Positive - Neutral - Negative x-cb-field-enum-values: - value: c100_positive description: Positive - value: c200_neutral description: Neutral - value: c300_negative description: Negative x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes updated_at: type: string description: Time of Update format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string description: UUID format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes LayoffPredictionFieldId: type: string description: LayoffPrediction field ids enum: - awards - created_at - entity_def_id - example_funding_round - generated_on - growth_insights - identifier - key_employee_changes - key_leadership_hires - layoffs - legal_proceedings - new_offices - organization - partnership_announcements - probability_score - probability_tier - product_launches - runway_speculation - updated_at - uuid LayoffPredictionEntity: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/LayoffPrediction' properties: $ref: '#/components/schemas/LayoffPrediction' OrganizationEntity_5: type: object properties: cards: type: object properties: acquiree_acquisitions: type: array items: $ref: '#/components/schemas/Acquisition_3' acquirer_acquisitions: type: array items: $ref: '#/components/schemas/Acquisition_3' acquisition_predictions: type: array items: $ref: '#/components/schemas/AcquisitionPrediction' addresses: type: array items: $ref: '#/components/schemas/Address_3' awards: type: array items: $ref: '#/components/schemas/Award_2' child_organizations: type: array items: $ref: '#/components/schemas/Organization_5' child_ownerships: type: array items: $ref: '#/components/schemas/Ownership' closure_predictions: type: array items: $ref: '#/components/schemas/ClosurePrediction' current_valuation_estimates: type: array items: $ref: '#/components/schemas/CurrentValuationEstimate_2' event_appearances: type: array items: $ref: '#/components/schemas/EventAppearance' fields: $ref: '#/components/schemas/Organization_5' founders: type: array items: $ref: '#/components/schemas/Person' funding_predictions: type: array items: $ref: '#/components/schemas/FundingPrediction' growth_insights: type: array items: $ref: '#/components/schemas/GrowthInsight_2' growth_predictions: type: array items: $ref: '#/components/schemas/GrowthPrediction' headquarters_address: type: array items: $ref: '#/components/schemas/Address_3' investor_insights: type: array items: $ref: '#/components/schemas/InvestorInsight_2' investor_matches: type: array items: $ref: '#/components/schemas/InvestorMatch_2' investors: type: array items: $ref: '#/components/schemas/Principal' ipo_predictions: type: array items: $ref: '#/components/schemas/IpoPrediction' ipos: type: array items: $ref: '#/components/schemas/Ipo_4' jobs: type: array items: $ref: '#/components/schemas/Job' key_employee_changes: type: array items: $ref: '#/components/schemas/KeyEmployeeChange_2' layoff_predictions: type: array items: $ref: '#/components/schemas/LayoffPrediction' layoffs: type: array items: $ref: '#/components/schemas/Layoff_2' legal_proceedings: type: array items: $ref: '#/components/schemas/LegalProceeding_2' parent_organization: type: array items: $ref: '#/components/schemas/Organization_5' parent_ownership: type: array items: $ref: '#/components/schemas/Ownership' participated_funding_rounds: type: array items: $ref: '#/components/schemas/FundingRound_3' participated_funds: type: array items: $ref: '#/components/schemas/Fund' participated_investments: type: array items: $ref: '#/components/schemas/Investment' partnership_announcements: type: array items: $ref: '#/components/schemas/PartnershipAnnouncement_2' press_references: type: array items: $ref: '#/components/schemas/PressReference' product_launches: type: array items: $ref: '#/components/schemas/ProductLaunch_2' products: type: array items: $ref: '#/components/schemas/Product_2' raised_funding_rounds: type: array items: $ref: '#/components/schemas/FundingRound_3' raised_funds: type: array items: $ref: '#/components/schemas/Fund' raised_investments: type: array items: $ref: '#/components/schemas/Investment' remain_private_prediction: type: array items: $ref: '#/components/schemas/RemainPrivatePrediction' research_insights: type: array items: $ref: '#/components/schemas/ResearchInsight_2' similar_organizations: type: array items: $ref: '#/components/schemas/OrgSimilarity_2' properties: $ref: '#/components/schemas/Organization_5' ProductLaunch_2: type: object required: - identifier properties: created_at: type: string description: Time of Creation format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte description: type: string description: Brief summary of context maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] entity_def_id: type: string description: 'Entity Def Type * product_launch - Product Launch' enum: - product_launch x-enum-descriptions: - Product Launch x-cb-field-enum-values: - value: product_launch description: Product Launch x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Product launch identifier allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts key_event_date: type: string description: Date when the news article was posted format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte organization: type: object description: Organization that had a product launch mentioned allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts press_reference_link: type: object description: Title of the news article allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] updated_at: type: string description: Time of Update format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string description: UUID format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes RemainPrivatePredictionFieldId: type: string description: RemainPrivatePrediction field ids enum: - created_at - entity_def_id - example_funding_round - example_ipo - generated_on - growth_insight - identifier - key_employee_change - key_leadership_hire - media_sentiment - organization - probability_score - probability_tier - unicorn_status - updated_at - uuid OrgSimilarity_2: type: object required: - identifier properties: additional_reasons: type: array items: type: string description: '* global_location_overlap - Global Location Overlap' enum: - global_location_overlap x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all category_overlap: type: array description: Shared Industries items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all created_at: type: string description: Created At format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* org_similarity - Organization Similarity' enum: - org_similarity x-enum-descriptions: - Organization Similarity x-cb-field-enum-values: - value: org_similarity description: Organization Similarity x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Organization Similarity allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts location_overlap: type: array items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all product_similarities: type: array description: Product Similarities items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all score: type: number format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq source: type: object allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts target: type: object allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts updated_at: type: string description: Updated At format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes FundingRoundFieldId_3: type: string description: FundingRound field ids enum: - announced_on - closed_on - created_at - entity_def_id - funded_organization_categories - funded_organization_description - funded_organization_diversity_spotlights - funded_organization_funding_stage - funded_organization_funding_total - funded_organization_identifier - funded_organization_location - funded_organization_revenue_range - identifier - image_id - investment_stage - investment_type - investor_identifiers - is_equity - lead_investor_identifiers - money_raised - name - num_investors - num_partners - permalink - post_money_valuation - post_money_valuation_source - pre_money_valuation - rank - rank_funding_round - sentiment - short_description - target_money_raised - updated_at - uuid IpoPredictionEntity: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/IpoPrediction' properties: $ref: '#/components/schemas/IpoPrediction' Layoff_2: type: object required: - identifier properties: created_at: type: string description: Laoyff entity creation date format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: 'Layoff Signal * layoff - layoff' enum: - layoff x-enum-descriptions: - layoff x-cb-field-enum-values: - value: layoff description: layoff x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Layoff identifier allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts key_event_date: type: string description: Date when the news article was posted format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte organization_identifier: type: object description: Organization that had a layoff mentioned allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts press_reference_link: type: object description: Title of the news article allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] sentiment: type: string description: 'Sentiment of the news article(s) that mention this layoff * c100_positive - Positive * c200_neutral - Neutral * c300_negative - Negative' enum: - c100_positive - c200_neutral - c300_negative x-enum-descriptions: - Positive - Neutral - Negative x-cb-field-enum-values: - value: c100_positive description: Positive - value: c200_neutral description: Neutral - value: c300_negative description: Negative x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes updated_at: type: string description: Entity Updating date format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string description: Entity UUID format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes CategoryFieldId_3: type: string description: Category field ids enum: - category_groups - created_at - entity_def_id - identifier - last_market_insight_direction - naics_code - name - updated_at - uuid ClosurePredictionEntity: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/ClosurePrediction' properties: $ref: '#/components/schemas/ClosurePrediction' LayoffPrediction: type: object required: - identifier properties: awards: type: array description: Awards & Recognition items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* layoff_prediction - Layoff Prediction' enum: - layoff_prediction x-enum-descriptions: - Layoff Prediction x-cb-field-enum-values: - value: layoff_prediction description: Layoff Prediction x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes example_funding_round: type: object description: Similar Funding Event allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts generated_on: type: string format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte growth_insights: type: array description: Growth Insights items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all identifier: type: object description: Layoff prediction identifier allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts key_employee_changes: type: array description: There has been a change to the executive team's composition (hire, departure, or promotion) items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all key_leadership_hires: type: array description: Leadership Hires items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all layoffs: type: array description: Layoffs items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all legal_proceedings: type: array description: Legal Proceedings items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all new_offices: type: array description: New Offices items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all organization: type: object allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts partnership_announcements: type: array description: Partnership Announcements items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all probability_score: type: number format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq probability_tier: type: string description: 'The predicted probability of this organization experiencing a layoff is divided into distinct tiers that quantify the likelihood of this event. * p100_positive_high - Very Likely * p200_positive_low - Probable * p300_neutral - Uncertain * p400_negative_low - Doubtful * p500_negative_high - Very Unlikely' enum: - p100_positive_high - p200_positive_low - p300_neutral - p400_negative_low - p500_negative_high x-enum-descriptions: - Very Likely - Probable - Uncertain - Doubtful - Very Unlikely x-cb-field-enum-values: - value: p100_positive_high description: Very Likely - value: p200_positive_low description: Probable - value: p300_neutral description: Uncertain - value: p400_negative_low description: Doubtful - value: p500_negative_high description: Very Unlikely x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes product_launches: type: array description: Product Launches items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all runway_speculation: type: object description: Runway Speculation allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes GrowthPrediction: type: object required: - identifier properties: awards: type: array description: Awards items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all created_at: type: string description: Time of Creation format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: 'Growth Prediction * growth_prediction - Growth Prediction' enum: - growth_prediction x-enum-descriptions: - Growth Prediction x-cb-field-enum-values: - value: growth_prediction description: Growth Prediction x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes example_funding_round: type: object description: An example of a similar company in the same industry that had a Funding Round in the last 6 months allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts generated_on: type: string description: Date on which this Growth Prediction was generated format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte growth_insight: type: object description: The Growth Insight linked to this Growth Prediction. allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts identifier: type: object description: Growth Prediction Title allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts key_employee_changes: type: array description: There has been a change to the executive team's composition (hire, departure, or promotion) items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all key_leadership_hires: type: array description: A new C-level Officer (CXO) was hired in the last 12 months items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all layoffs: type: array description: Layoffs items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all legal_proceedings: type: array description: Proceedings relating to law, regulation, or compliance items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all new_offices: type: array description: New Offices items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all organization: type: object description: Unique identifier for the organization associated with this growth prediction allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts partnership_announcements: type: array description: A new strategic partnership occurred in the last 12 months items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all probability_score: type: number description: The predicted probability that this organization will exhibit growth format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq probability_tier: type: string description: 'The predicted probability of this organization growing, divided into distinct tiers that quantify the likelihood. * p100_positive_high - Very Likely * p200_positive_low - Probable * p300_neutral - Uncertain * p400_negative_low - Doubtful * p500_negative_high - Very Unlikely' enum: - p100_positive_high - p200_positive_low - p300_neutral - p400_negative_low - p500_negative_high x-enum-descriptions: - Very Likely - Probable - Uncertain - Doubtful - Very Unlikely x-cb-field-enum-values: - value: p100_positive_high description: Very Likely - value: p200_positive_low description: Probable - value: p300_neutral description: Uncertain - value: p400_negative_low description: Doubtful - value: p500_negative_high description: Very Unlikely x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes product_launches: type: array description: A new product or service was launched in the last 12 months items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all runway_speculation: type: object description: Approaching 18-24+ months since the last funding round, the need for capital may be more probable. allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts similar_company_acquired: type: object description: Similar Company Acquired allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts similar_company_went_public: type: object description: Similar Company Went Public allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts unicorn_status: type: string description: 'Achieved unicorn status in the last 12 months * c100_evidence_absent - Has Not Achieved Unicorn Status * c200_evidence_present - Has Achieved Unicorn Status' enum: - c100_evidence_absent - c200_evidence_present x-enum-descriptions: - Has Not Achieved Unicorn Status - Has Achieved Unicorn Status x-cb-field-enum-values: - value: c100_evidence_absent description: Has Not Achieved Unicorn Status - value: c200_evidence_present description: Has Achieved Unicorn Status x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes updated_at: type: string description: Time of Update format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string description: UUID format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes CurrentValuationEstimate_2: type: object required: - identifier properties: created_at: type: string description: Time of Creation format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte current_valuation: type: object description: Estimated current valuation. allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq entity_def_id: type: string description: 'Entity Def Type * current_valuation_estimate - Current Valuation Estimate' enum: - current_valuation_estimate x-enum-descriptions: - Current Valuation Estimate x-cb-field-enum-values: - value: current_valuation_estimate description: Current Valuation Estimate x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes estimate_confidence_tier: type: string description: 'Confidence tier for the current valuation estimate. * c100_high - High * c200_medium - Medium * c300_low - Low' enum: - c100_high - c200_medium - c300_low x-enum-descriptions: - High - Medium - Low x-cb-field-enum-values: - value: c100_high description: High - value: c200_medium description: Medium - value: c300_low description: Low x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes estimated_lower_bound: type: object description: Lower bound of the estimated current valuation range. allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq estimated_upper_bound: type: object description: Upper bound of the estimated current valuation range. allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq financials_impact_tier: type: string description: 'Impact of financial signals on the current valuation estimate. * p100_positive_high - Strong Positive Impact * p200_positive_low - Slight Positive Impact * p300_neutral - Neutral Impact * p400_negative_low - Slight Negative Impact * p500_negative_high - Strong Negative Impact' enum: - p100_positive_high - p200_positive_low - p300_neutral - p400_negative_low - p500_negative_high x-enum-descriptions: - Strong Positive Impact - Slight Positive Impact - Neutral Impact - Slight Negative Impact - Strong Negative Impact x-cb-field-enum-values: - value: p100_positive_high description: Strong Positive Impact - value: p200_positive_low description: Slight Positive Impact - value: p300_neutral description: Neutral Impact - value: p400_negative_low description: Slight Negative Impact - value: p500_negative_high description: Strong Negative Impact x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes financials_reasons: type: array description: Explanation for the impact of financial signals used in this current valuation estimate. items: type: string maxLength: 8192 x-cb-field-type: text_blob_multi x-cb-searchable: false x-cb-search-operators: [] generated_on: type: string description: Date on which this current valuation estimate was generated. format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte identifier: type: object description: Current Valuation Estimate Title allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts industry_performance_impact_tier: type: string description: 'Impact of industry performance signals on the current valuation estimate. * p100_positive_high - Strong Positive Impact * p200_positive_low - Slight Positive Impact * p300_neutral - Neutral Impact * p400_negative_low - Slight Negative Impact * p500_negative_high - Strong Negative Impact' enum: - p100_positive_high - p200_positive_low - p300_neutral - p400_negative_low - p500_negative_high x-enum-descriptions: - Strong Positive Impact - Slight Positive Impact - Neutral Impact - Slight Negative Impact - Strong Negative Impact x-cb-field-enum-values: - value: p100_positive_high description: Strong Positive Impact - value: p200_positive_low description: Slight Positive Impact - value: p300_neutral description: Neutral Impact - value: p400_negative_low description: Slight Negative Impact - value: p500_negative_high description: Strong Negative Impact x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes industry_performance_reasons: type: array description: Explanation for the impact of industry performance signals used in this current valuation estimate. items: type: string maxLength: 8192 x-cb-field-type: text_blob_multi x-cb-searchable: false x-cb-search-operators: [] market_equity_impact_tier: type: string description: 'Impact of market equity signals on the current valuation estimate. * p100_positive_high - Strong Positive Impact * p200_positive_low - Slight Positive Impact * p300_neutral - Neutral Impact * p400_negative_low - Slight Negative Impact * p500_negative_high - Strong Negative Impact' enum: - p100_positive_high - p200_positive_low - p300_neutral - p400_negative_low - p500_negative_high x-enum-descriptions: - Strong Positive Impact - Slight Positive Impact - Neutral Impact - Slight Negative Impact - Strong Negative Impact x-cb-field-enum-values: - value: p100_positive_high description: Strong Positive Impact - value: p200_positive_low description: Slight Positive Impact - value: p300_neutral description: Neutral Impact - value: p400_negative_low description: Slight Negative Impact - value: p500_negative_high description: Strong Negative Impact x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes market_equity_reasons: type: array description: Explanation for the impact of market equity signals used in this current valuation estimate. items: type: string maxLength: 8192 x-cb-field-type: text_blob_multi x-cb-searchable: false x-cb-search-operators: [] misc_impact_tier: type: string description: 'Impact of miscellaneous signals on the current valuation estimate. * p100_positive_high - Strong Positive Impact * p200_positive_low - Slight Positive Impact * p300_neutral - Neutral Impact * p400_negative_low - Slight Negative Impact * p500_negative_high - Strong Negative Impact' enum: - p100_positive_high - p200_positive_low - p300_neutral - p400_negative_low - p500_negative_high x-enum-descriptions: - Strong Positive Impact - Slight Positive Impact - Neutral Impact - Slight Negative Impact - Strong Negative Impact x-cb-field-enum-values: - value: p100_positive_high description: Strong Positive Impact - value: p200_positive_low description: Slight Positive Impact - value: p300_neutral description: Neutral Impact - value: p400_negative_low description: Slight Negative Impact - value: p500_negative_high description: Strong Negative Impact x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes misc_reasons: type: array description: Explanation for the impact of miscellaneous signals used in this current valuation estimate. items: type: string maxLength: 8192 x-cb-field-type: text_blob_multi x-cb-searchable: false x-cb-search-operators: [] organization: type: object description: Unique identifier for the organization associated with this current valuation estimate. allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts updated_at: type: string description: Time of Update format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string description: UUID format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes OrganizationFieldId_5: type: string description: Organization field ids enum: - acquirer_identifier - aliases - categories - category_groups - closed_on - company_type - contact_email - created_at - delisted_on - demo_days - description - diversity_spotlights - entity_def_id - equity_funding_total - exited_on - facebook - facet_ids - founded_on - founder_identifiers - funding_stage - funding_total - funds_total - growth_insight_confidence - growth_insight_direction - growth_score - growth_score_delta_d90 - heat_score - heat_score_delta_d90 - hub_tags - identifier - image_id - image_url - investor_identifiers - investor_stage - investor_type - ipo_status - last_equity_funding_total - last_equity_funding_type - last_funding_at - last_funding_total - last_funding_type - last_key_employee_change_date - last_layoff_date - last_market_insights - layout_id - legal_name - linkedin - listed_stock_symbol - location_group_identifiers - location_identifiers - micro_categories - name - num_acquisitions - num_alumni - num_articles - num_current_advisor_positions - num_current_positions - num_diversity_spotlight_investments - num_employees_enum - num_enrollments - num_event_appearances - num_exits - num_exits_ipo - num_founder_alumni - num_founders - num_funding_rounds - num_funds - num_investments - num_investors - num_lead_investments - num_lead_investors - num_past_positions - num_portfolio_organizations - num_sub_organizations - operating_status - owner_identifier - permalink - permalink_aliases - phone_number - program_application_deadline - program_duration - program_type - rank - rank_delta_d30 - rank_delta_d7 - rank_delta_d90 - rank_org - revenue_range - school_method - school_program - school_type - short_description - status - stock_exchange_symbol - stock_symbol - twitter - updated_at - uuid - valuation - valuation_date - website - website_url - went_public_on CategoryGroup_3: type: object required: - identifier properties: categories: type: array description: Descriptive keyword for an Organization (e.g. SaaS, Android, Cloud Computing, Medical Device) items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* category_group - Industry Group' enum: - category_group x-enum-descriptions: - Industry Group x-cb-field-enum-values: - value: category_group description: Industry Group x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Superset of Industries (e.g. Software, Mobile, Health Care) allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts last_market_insight_direction: type: string description: '* c100_growing - Growing * c200_stable - Stable * c300_declining - Declining' enum: - c100_growing - c200_stable - c300_declining x-enum-descriptions: - Growing - Stable - Declining x-cb-field-enum-values: - value: c100_growing description: Growing - value: c200_stable description: Stable - value: c300_declining description: Declining x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes name: type: string description: Descriptive name of the Industry Group maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes Acquisition_3: type: object required: - identifier properties: acquiree_categories: type: array description: Keyword, sector, or industry items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all acquiree_funding_total: type: object description: Total funding amount raised across all acquired organization's funding rounds allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq acquiree_identifier: type: object description: Name of the acquired organization allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts acquiree_last_funding_type: type: string description: 'Last funding round type (e.g. Series A, Seed, Private Equity) * angel - Angel * convertible_note - Convertible Note * corporate_round - Corporate Round * debt_financing - Debt Financing * equity_crowdfunding - Equity Crowdfunding * grant - Grant * initial_coin_offering - Initial Coin Offering * non_equity_assistance - Non-equity Assistance * post_ipo_debt - Post-IPO Debt * post_ipo_equity - Post-IPO Equity * post_ipo_secondary - Post-IPO Secondary * pre_seed - Pre-Seed * private_equity - Private Equity * product_crowdfunding - Product Crowdfunding * secondary_market - Secondary Market * seed - Seed * series_a - Series A * series_b - Series B * series_c - Series C * series_d - Series D * series_e - Series E * series_f - Series F * series_g - Series G * series_h - Series H * series_i - Series I * series_j - Series J * series_unknown - Venture - Series Unknown * undisclosed - Undisclosed' enum: - pre_seed - seed - series_a - series_b - series_c - series_d - series_e - series_f - series_g - series_h - series_i - series_j - series_unknown - angel - private_equity - debt_financing - convertible_note - grant - corporate_round - equity_crowdfunding - product_crowdfunding - secondary_market - post_ipo_equity - post_ipo_debt - post_ipo_secondary - non_equity_assistance - initial_coin_offering - undisclosed x-enum-descriptions: - Pre-Seed - Seed - Series A - Series B - Series C - Series D - Series E - Series F - Series G - Series H - Series I - Series J - Venture - Series Unknown - Angel - Private Equity - Debt Financing - Convertible Note - Grant - Corporate Round - Equity Crowdfunding - Product Crowdfunding - Secondary Market - Post-IPO Equity - Post-IPO Debt - Post-IPO Secondary - Non-equity Assistance - Initial Coin Offering - Undisclosed x-cb-field-enum-values: - value: pre_seed description: Pre-Seed - value: seed description: Seed - value: series_a description: Series A - value: series_b description: Series B - value: series_c description: Series C - value: series_d description: Series D - value: series_e description: Series E - value: series_f description: Series F - value: series_g description: Series G - value: series_h description: Series H - value: series_i description: Series I - value: series_j description: Series J - value: series_unknown description: Venture - Series Unknown - value: angel description: Angel - value: private_equity description: Private Equity - value: debt_financing description: Debt Financing - value: convertible_note description: Convertible Note - value: grant description: Grant - value: corporate_round description: Corporate Round - value: equity_crowdfunding description: Equity Crowdfunding - value: product_crowdfunding description: Product Crowdfunding - value: secondary_market description: Secondary Market - value: post_ipo_equity description: Post-IPO Equity - value: post_ipo_debt description: Post-IPO Debt - value: post_ipo_secondary description: Post-IPO Secondary - value: non_equity_assistance description: Non-equity Assistance - value: initial_coin_offering description: Initial Coin Offering - value: undisclosed description: Undisclosed x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes acquiree_locations: type: array description: Where the acquired organization is headquartered items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all acquiree_num_funding_rounds: type: number description: Acquired organization's total number of funding rounds x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq acquiree_revenue_range: type: string description: 'Estimated revenue range for acquired organization * r_00000000 - Less than $1M * r_00001000 - $1M to $10M * r_00010000 - $10M to $50M * r_00050000 - $50M to $100M * r_00100000 - $100M to $500M * r_00500000 - $500M to $1B * r_01000000 - $1B to $10B * r_10000000 - $10B+' enum: - r_00000000 - r_00001000 - r_00010000 - r_00050000 - r_00100000 - r_00500000 - r_01000000 - r_10000000 x-enum-descriptions: - Less than $1M - $1M to $10M - $10M to $50M - $50M to $100M - $100M to $500M - $500M to $1B - $1B to $10B - $10B+ x-cb-field-enum-values: - value: r_00000000 description: Less than $1M - value: r_00001000 description: $1M to $10M - value: r_00010000 description: $10M to $50M - value: r_00050000 description: $50M to $100M - value: r_00100000 description: $100M to $500M - value: r_00500000 description: $500M to $1B - value: r_01000000 description: $1B to $10B - value: r_10000000 description: $10B+ x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes acquiree_short_description: type: string description: Text of acquired organization's description, industries, and industry groups maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains acquirer_categories: type: array description: Keyword, sector, or industry items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all acquirer_funding_stage: type: string description: 'Acquiring organization''s most recent funding status * early_stage_venture - Early Stage Venture * ipo - IPO * late_stage_venture - Late Stage Venture * m_and_a - M&A * private_equity - Private Equity * seed - Seed' enum: - seed - early_stage_venture - late_stage_venture - private_equity - m_and_a - ipo x-enum-descriptions: - Seed - Early Stage Venture - Late Stage Venture - Private Equity - M&A - IPO x-cb-field-enum-values: - value: seed description: Seed - value: early_stage_venture description: Early Stage Venture - value: late_stage_venture description: Late Stage Venture - value: private_equity description: Private Equity - value: m_and_a description: M&A - value: ipo description: IPO x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes acquirer_funding_total: type: object description: Total funding amount raised across all acquiring organization's funding rounds allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq acquirer_identifier: type: object description: Name of the acquiring organization allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts acquirer_locations: type: array description: Where the organization is headquartered items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all acquirer_num_funding_rounds: type: number description: Acquiring organization's total number of funding rounds x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq acquirer_revenue_range: type: string description: 'Estimated revenue range for acquiring organization * r_00000000 - Less than $1M * r_00001000 - $1M to $10M * r_00010000 - $10M to $50M * r_00050000 - $50M to $100M * r_00100000 - $100M to $500M * r_00500000 - $500M to $1B * r_01000000 - $1B to $10B * r_10000000 - $10B+' enum: - r_00000000 - r_00001000 - r_00010000 - r_00050000 - r_00100000 - r_00500000 - r_01000000 - r_10000000 x-enum-descriptions: - Less than $1M - $1M to $10M - $10M to $50M - $50M to $100M - $100M to $500M - $500M to $1B - $1B to $10B - $10B+ x-cb-field-enum-values: - value: r_00000000 description: Less than $1M - value: r_00001000 description: $1M to $10M - value: r_00010000 description: $10M to $50M - value: r_00050000 description: $50M to $100M - value: r_00100000 description: $100M to $500M - value: r_00500000 description: $500M to $1B - value: r_01000000 description: $1B to $10B - value: r_10000000 description: $10B+ x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes acquirer_short_description: type: string description: Text of acquiring organization's description, industries, and industry groups maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains acquisition_type: type: string description: 'Type of acquisition * acquihire - Acquihire * acquisition - Acquisition * lbo - Leveraged Buyout * management_buyout - Management Buyout * merge - Merger' enum: - acquisition - merge - lbo - acquihire - management_buyout x-enum-descriptions: - Acquisition - Merger - Leveraged Buyout - Acquihire - Management Buyout x-cb-field-enum-values: - value: acquisition description: Acquisition - value: merge description: Merger - value: lbo description: Leveraged Buyout - value: acquihire description: Acquihire - value: management_buyout description: Management Buyout x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes announced_on: type: object description: Date the acquisition was announced allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte completed_on: type: object description: Date the Acquisition was completed allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte disposition_of_acquired: type: string description: 'How is the acquired Organization structured after the acquisition * combined - Combined * division - Division * product - Product * separate_entity - Separate Entity * subsidiary - Subsidiary' enum: - subsidiary - separate_entity - combined - division - product x-enum-descriptions: - Subsidiary - Separate Entity - Combined - Division - Product x-cb-field-enum-values: - value: subsidiary description: Subsidiary - value: separate_entity description: Separate Entity - value: combined description: Combined - value: division description: Division - value: product description: Product x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes entity_def_id: type: string description: '* acquisition - Acquisition' enum: - acquisition x-enum-descriptions: - Acquisition x-cb-field-enum-values: - value: acquisition description: Acquisition x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Auto-generated name of transaction (e.g. WhatsApp acquired by Facebook) allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts permalink: type: string maxLength: 255 x-cb-field-type: permalink x-cb-searchable: false x-cb-search-operators: [] price: type: object description: Price of the acquisition allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank: type: number description: Algorithmic rank assigned to the top profiles on Crunchbase x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank_acquisition: type: number description: Algorithmic rank assigned to the top 100,000 most active Acquisitions x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq sentiment: type: string description: 'Sentiment associated with acquisition * c100_positive - Positive * c200_neutral - Neutral * c300_negative - Negative' enum: - c100_positive - c200_neutral - c300_negative x-enum-descriptions: - Positive - Neutral - Negative x-cb-field-enum-values: - value: c100_positive description: Positive - value: c200_neutral description: Neutral - value: c300_negative description: Negative x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes short_description: type: string description: Short description of the Acquisition maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains status: type: string description: 'Status of the acquisition * complete - Complete * pending - Pending' enum: - complete - pending x-enum-descriptions: - Complete - Pending x-cb-field-enum-values: - value: complete description: Complete - value: pending description: Pending x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes terms: type: string description: 'Terms of the acquisition * cash - Cash * cash_and_stock - Cash & Stock * stock - Stock' enum: - cash - stock - cash_and_stock x-enum-descriptions: - Cash - Stock - Cash & Stock x-cb-field-enum-values: - value: cash description: Cash - value: stock description: Stock - value: cash_and_stock description: Cash & Stock x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes GrowthPredictionEntity: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/GrowthPrediction' properties: $ref: '#/components/schemas/GrowthPrediction' Product_2: type: object required: - identifier properties: created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte description: type: string description: Product description maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] discontinuation_sentiment: type: string description: 'Sentiment associated with product discontinuation * c100_positive - Positive * c200_neutral - Neutral * c300_negative - Negative' enum: - c100_positive - c200_neutral - c300_negative x-enum-descriptions: - Positive - Neutral - Negative x-cb-field-enum-values: - value: c100_positive description: Positive - value: c200_neutral description: Neutral - value: c300_negative description: Negative x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes entity_def_id: type: string description: 'Product * product - Product' enum: - product x-enum-descriptions: - Product x-cb-field-enum-values: - value: product description: Product x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Name of the product allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts launch_sentiment: type: string description: 'Sentiment associated with product launch * c100_positive - Positive * c200_neutral - Neutral * c300_negative - Negative' enum: - c100_positive - c200_neutral - c300_negative x-enum-descriptions: - Positive - Neutral - Negative x-cb-field-enum-values: - value: c100_positive description: Positive - value: c200_neutral description: Neutral - value: c300_negative description: Negative x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes local_rank: type: number description: Rank relative to this organization's other products x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq micro_categories: type: array description: Micro-Industries associated with this product items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all organization: type: object description: Unique identifier for the organization associated with this product allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes IpoFieldId_4: type: string description: Ipo field ids enum: - amount_raised - created_at - delisted_on - entity_def_id - identifier - image_id - organization_identifier - permalink - rank - rank_ipo - sentiment - share_price - shares_outstanding - shares_sold - short_description - stock_exchange_symbol - stock_full_symbol - stock_symbol - updated_at - uuid - valuation - went_public_on AddressFieldId_3: type: string description: Address field ids enum: - country_code - created_at - entity_def_id - headquartered_organization_identifier - identifier - location_identifiers - name - opening_date - opening_description - opening_press_reference_link - organization - postal_code - region_code - street_1 - street_2 - updated_at - uuid LegalProceeding_2: type: object required: - identifier properties: created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte description: type: string description: Description of legal proceeding maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] entity_def_id: type: string description: 'Proceedings relating to law, regulation, or compliance * legal_proceeding - Legal Proceeding' enum: - legal_proceeding x-enum-descriptions: - Legal Proceeding x-cb-field-enum-values: - value: legal_proceeding description: Legal Proceeding x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Legal proceeding name allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts key_event_date: type: string description: Date of proceeding or when expected format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte name: type: string description: Legal proceeding name maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] organization: type: object description: Organization undergoing legal proceeding allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts press_reference_link: type: object description: News article mentioning legal proceeding allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] proceeding_type: type: string description: 'The type of proceeding * compliance - Compliance * lawsuit - Lawsuit * other - Other * regulatory - Regulatory' enum: - compliance - lawsuit - regulatory - other x-enum-descriptions: - Compliance - Lawsuit - Regulatory - Other x-cb-field-enum-values: - value: compliance description: Compliance - value: lawsuit description: Lawsuit - value: regulatory description: Regulatory - value: other description: Other x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes sentiment: type: string description: 'Sentiment associated with proceeding * c100_positive - Positive * c200_neutral - Neutral * c300_negative - Negative' enum: - c100_positive - c200_neutral - c300_negative x-enum-descriptions: - Positive - Neutral - Negative x-cb-field-enum-values: - value: c100_positive description: Positive - value: c200_neutral description: Neutral - value: c300_negative description: Negative x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes updated_at: type: string description: Date entity was updated format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string description: UUID of legal proceeding entity format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes CategoryGroupEntity_3: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/CategoryGroup_3' market_insights: type: array items: $ref: '#/components/schemas/MarketInsight_2' properties: $ref: '#/components/schemas/CategoryGroup_3' MicroCategory_2: type: object required: - identifier properties: categories: type: array description: Industries containing this Micro-Industry items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* micro_category - Micro-Industry' enum: - micro_category x-enum-descriptions: - Micro-Industry x-cb-field-enum-values: - value: micro_category description: Micro-Industry x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Descriptive name for the Micro-Industry (e.g. Agentic AI, Online Bill Payment Services, Secure Document Destruction Services) allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts last_market_insight_direction: type: string description: '* c100_growing - Growing * c200_stable - Stable * c300_declining - Declining' enum: - c100_growing - c200_stable - c300_declining x-enum-descriptions: - Growing - Stable - Declining x-cb-field-enum-values: - value: c100_growing description: Growing - value: c200_stable description: Stable - value: c300_declining description: Declining x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes name: type: string description: Descriptive name of the Micro-Industry maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes Category_3: type: object required: - identifier properties: category_groups: type: array description: Superset of Industries (e.g. Software, Mobile, Health Care) items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* category - Industry' enum: - category x-enum-descriptions: - Industry x-cb-field-enum-values: - value: category description: Industry x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Descriptive keyword for a Company (e.g. SaaS, Android, Cloud Computing, Medical Device) allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts last_market_insight_direction: type: string description: '* c100_growing - Growing * c200_stable - Stable * c300_declining - Declining' enum: - c100_growing - c200_stable - c300_declining x-enum-descriptions: - Growing - Stable - Declining x-cb-field-enum-values: - value: c100_growing description: Growing - value: c200_stable description: Stable - value: c300_declining description: Declining x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes naics_code: type: string maxLength: 255 x-cb-field-type: text_exact x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes name: type: string description: Descriptive name of the Industry maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes Ipo_4: type: object required: - identifier properties: amount_raised: type: object description: Total amount raised from the IPO allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte delisted_on: type: object description: Date when the organization delisted its stock allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* ipo - Ipo' enum: - ipo x-enum-descriptions: - Ipo x-cb-field-enum-values: - value: ipo description: Ipo x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Stock ticker symbol (e.g. AAPL, FB, TWTR) allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts image_id: type: string maxLength: 255 x-cb-field-type: image_id x-cb-searchable: false x-cb-search-operators: [] organization_identifier: type: object description: Organization went public allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts permalink: type: string maxLength: 255 x-cb-field-type: permalink x-cb-searchable: false x-cb-search-operators: [] rank: type: number description: Algorithmic rank assigned to the top profiles on Crunchbase x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank_ipo: type: number description: Algorithmic rank assigned to the top 100,000 most active IPOs x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq sentiment: type: string description: 'Sentiment associated with IPO * c100_positive - Positive * c200_neutral - Neutral * c300_negative - Negative' enum: - c100_positive - c200_neutral - c300_negative x-enum-descriptions: - Positive - Neutral - Negative x-cb-field-enum-values: - value: c100_positive description: Positive - value: c200_neutral description: Neutral - value: c300_negative description: Negative x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes share_price: type: object description: The share price for the stock at the time of IPO allOf: - $ref: '#/components/schemas/MoneyDecimal' x-cb-field-type: money_decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq shares_outstanding: type: number description: Number of shares that were outstanding at the time of IPO x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq shares_sold: type: number description: Number of shares sold at the time of IPO x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq short_description: type: string maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains stock_exchange_symbol: type: string description: 'Stock exchange where the Organization is listed (e.g. NYSE, NASDAQ) * adx - ADX - Abu Dhabi Securities Exchange * afx - AFX - Afghanistan Stock Exchange * altx - ALTX - ALTX East Africa Exchange * amex - AMEX - American Stock Exchange * ams - AMS - Euronext Amsterdam * amx - AMX - Armenia Securities Exchange * asce - ASCE - Abuja Securities and Commodities Exchange * asx - ASX - Australian Securities Exchange * ath - ATH - Athens Stock Exchange * bcba - BCBA - Buenos Aires Stock Exchange * bdp - BDP - Budapest Stock Exchange * belex - BELEX - Belgrade Stock Exchange * ber - BER - Berliner Börse * bfb - BFB - Baku Stock Exchange * bit - BIT - Italian Stock Exchange * bkk - BKK - Thailand Stock Exchange * blse - BLSE - Banja Luka Stock Exchange * bme - BME - Madrid Stock Exchange * bmv - BMV - Mexican Stock Exchange * bom - BOM - Bombay Stock Exchange * brvm - BRVM - Regional Securities Exchange SA * bse - BSE - Bulgarian Stock Exchange * bse_lb - BSE - Beirut Stock Exchange * bsse - BSSE - Bratislava Stock Exchange * bsx - BSX - Bermuda Stock Exchange * bvb - BVB - Bucharest Stock Exchange * bvc - BVC - Colombian Stock Exchange * bvfb - BVFB - Belarusian Currency and Stock Exchange * bvm - BVM - Montevideo Stock Exchange * bvmf - B3 - Brazil Stock Exchange and OTC Market * bvmt - BVMT - Tunis Stock Exchange * bx - BX - Berne Stock Exchange * cas - CAS - Casablanca Stock Exchange * cise - CISE - Channel Islands Stock Exchange * cnsx - CNSX - Canadian National Stock Exchange * col - COL - Colombo Stock Exchange * cph - CPH - Copenhagen Stock Exchange * cse - CSE - Canadian Securities Exchange * cse_cy - CSE - Cyprus Stock Exchange * csx - CSX - Cambodia Securities Exchange * cve - TSX-V - Toronto TSX Venture Exchange * dfm - DFM - Dubai Financial Market * dse - DSE - Dhaka Stock Exchange * dsx - DSX - Douala Stock Exchange * dus - DUS - Börse Düsseldorf * ebr - EBR - Euronext Brussels * egx - EGX - Egypt Stock Exchange * eli - ELI - Euronext Lisbon * epa - EPA - Euronext Paris * etr - ETR - Deutsche Börse XETRA * eurex - EUREX - Eurex Exchange * fra - FRA - Frankfurt Stock Exchange * fwb - FWB - Börse Frankfurt Stock Exchange * gha - GHA - Ghana Stock Exchange * gsx - GSX - Georgian Stock Exchange * gsx_gi - GSX - Gibraltar Stock Exchange * hel - HEL - Helsinki Stock Exchange * hkg - HKG - Hong Kong Stock Exchange * hnx - HNX - Hanoi Stock Exchange * hose - HOSE - Ho Chi Minh Stock Exchange * ice - ICE - Iceland Stock Exchange * idx - IDX - Indonesia Stock Exchange * iex - IEX - Investors Exchange * ifb - IFB - Iran Fara Bourse * ime - IME - Iran Mercantile Exchange * irenex - IRENEX - Iran Energy Exchange * ise - ISE - Irish Stock Exchange * ist - IST - Istanbul Stock Exchange * isx - ISX - Iraq Stock Exchange * jp - JP - Japan Exchange * jsc - JSC - Belarusian Currency and Stock Exchange * jse - JSE - Johannesburg Stock Exchange * jse_jam - JSE - Jamaica Stock Exchange * kase - KASE - Kazakhstan Stock Exchange * klse - KLSE - Malaysia Stock Exchange * kosdaq - KOSDAQ - Korean Securities Dealers Automated Quotations * krx - KRX - Korea Stock Exchange * kse - KSE - Kuwait Stock Exchange * lje - LJE - Ljubljana Stock Exchange * lse - LSE - London Stock Exchange * lsm - LSM - Libyan Stock Market * lsx - LSX - Lao Securities Exchange * luse - LuSE - Lusaka Securities Exchange * luxse - LuxSE - Luxembourg Stock Exchange * mal - MAL - Malta Stock Exchange * mcx - MCX - Multi Commodity Exchange of India * meff - MEFF - Mercado Spanish Financial Futures Market * mnse - MNSE - Montenegro Stock Exchange * moex - MOEX - Moscow Exchange * mse - MSE - Metropolitan Stock Exchange * mse_md - MSE - Moldova Stock Exchange * mse_mk - MSE - Macedonian Stock Exchange * msei - MSEI - Metropolitan Stock Exchange of India * msm - MSM - Muscat Securities Market * mun - MUN - Börse München * nasdaq - NASDAQ * nbo - NSE - Nairobi Securities Exchange * neeq - NEEQ - National Equities Exchange and Quotations * nepse - NEPSE - Nepal Stock Exchange * nex - NEX - NEX Exchange * ngm - NGM - Nordic Growth Market Exchange * nig - NIG - Nigerian Stock Exchange * notc - NOTC - Norwegian OTC * npex - NPEX - NPEX Stock Exchange * nse - NSE - National Stock Exchange of India * nsx - NSX - National Stock Exchange of Australia * nyse - NYSE - New York Stock Exchange * nysearca - NYSEARCA - NYSE Arca * nysemkt - NYSEAMERICAN - NYSE American * nze - NZE - New Zealand Stock Exchange * ose - OSE - Oslo Stock Exchange * otcbb - OTCBB - FINRA OTC Bulletin Board * otcpink - OTC Pink * otcqb - OTCQB * otcqx - OTCQX * pdex - PDEx - Philippine Dealing Exchange * pex - PEX - Palestine Exchange * pfts - PFTS - PFTS Ukraine Stock Exchange * pomsox - POMSoX - Port Moresby Stock Exchange * prg - PRA - Prague Stock Exchange * pse - PSE - Philippine Stock Exchange * psx - PSX - Pakistan Stock Exchange * qse - QSE - Qatar Stock Exchange * rfb - RFB - Riga Stock Exchange * rse - RSE - Rwanda Stock Exchange * rsebl - RSEBL - Royal Securities Exchange of Bhutan * sase - SASE - Sarajevo Stock Exchange * sbx - SBX - BX Swiss * sehk - SEHK - The Stock Exchange of Hong Kong * sem - SEM - Stock Exchange of Mauritius * sgbv - SGBV - Algiers Stock Exchange * sgx - SGX - Singapore Stock Exchange * six - SIX - SIX Swiss Exchange * spbex - SPBEX - Saint Petersburg Stock Exchange * spse - SPSE - South Pacific Stock Exchange * sse - SSE - Shanghai Stock Exchange * ssx - SSX - Sydney Stock Exchange * sto - STO - Stockholm Stock Exchange * stu - STU - Börse Stuttgart * swx - SWX - SIX Swiss Exchange * szse - SZSE - Shenzhen Stock Exchange * tadawul - Tadawul - Saudi Stock Exchange * tal - TSE - Tallinn Stock Exchange * tfex - TFEX - Thailand Futures Exchange * tise - TISE - The International Stock Exchange * tlv - TLV - Tel Aviv Stock Exchange * tpe - TWSE - Taiwan Stock Exchange * tse_al - TSE - Tirana Stock Exchange * tse_ir - TSE - Tehran Stock Exchange * tsec - TWO - Taiwan OTC Exchange * tsx - TSX - Toronto Stock Exchange * ttse - TTSE - Trinidad and Tobago Stock Exchange * tyo - TYO - Tokyo Stock Exchange * use - USE - Uganda Securities Exchange * ux - UX - Ukrainian Exchange * vie - VIE - Vienna Stock Exchange * vmf - VMF - Faroese Securities Market * vse - VSE - Vancouver Stock Exchange * wse - WSE - Warsaw Stock Exchange * ysx - YSX - Yangon Stock Exchange * zamace - ZAMACE - Zambian Commodity Exchange * zse - ZSE - Zimbabwe Stock Exchange * zse_hr - ZSE - Zagreb Stock Exchange' enum: - adx - afx - altx - amx - amex - ams - asce - asx - ath - bcba - bdp - belex - ber - bfb - bit - bkk - blse - bme - bmv - bom - brvm - bse - bse_lb - bsse - bsx - bvb - bvc - bvfb - bvm - bvmf - bvmt - bx - cas - cise - cnsx - col - cph - cse - cse_cy - csx - dfm - dse - dsx - dus - ebr - egx - eli - epa - etr - eurex - fra - fwb - gha - gsx - gsx_gi - hel - hkg - hnx - hose - ice - idx - iex - ifb - ime - irenex - ise - ist - isx - jp - jsc - jse - jse_jam - kase - klse - kosdaq - krx - kse - lje - lse - lsm - lsx - luse - luxse - mal - mcx - meff - mnse - moex - mse - mse_md - mse_mk - msei - msm - mun - nasdaq - nbo - nex - nepse - neeq - ngm - nig - notc - npex - nse - nsx - nyse - nysearca - nysemkt - nze - ose - otcbb - otcpink - otcqb - otcqx - pdex - pex - pfts - pomsox - prg - pse - psx - qse - rfb - rse - rsebl - sase - sbx - sehk - sem - sgbv - sgx - six - spbex - spse - sse - ssx - sto - stu - swx - szse - tal - tfex - tise - tlv - tpe - tse_al - tse_ir - tsec - tsx - cve - tyo - ttse - tadawul - use - ux - vie - vmf - vse - wse - ysx - zamace - zse - zse_hr x-enum-descriptions: - ADX - Abu Dhabi Securities Exchange - AFX - Afghanistan Stock Exchange - ALTX - ALTX East Africa Exchange - AMX - Armenia Securities Exchange - AMEX - American Stock Exchange - AMS - Euronext Amsterdam - ASCE - Abuja Securities and Commodities Exchange - ASX - Australian Securities Exchange - ATH - Athens Stock Exchange - BCBA - Buenos Aires Stock Exchange - BDP - Budapest Stock Exchange - BELEX - Belgrade Stock Exchange - BER - Berliner Börse - BFB - Baku Stock Exchange - BIT - Italian Stock Exchange - BKK - Thailand Stock Exchange - BLSE - Banja Luka Stock Exchange - BME - Madrid Stock Exchange - BMV - Mexican Stock Exchange - BOM - Bombay Stock Exchange - BRVM - Regional Securities Exchange SA - BSE - Bulgarian Stock Exchange - BSE - Beirut Stock Exchange - BSSE - Bratislava Stock Exchange - BSX - Bermuda Stock Exchange - BVB - Bucharest Stock Exchange - BVC - Colombian Stock Exchange - BVFB - Belarusian Currency and Stock Exchange - BVM - Montevideo Stock Exchange - B3 - Brazil Stock Exchange and OTC Market - BVMT - Tunis Stock Exchange - BX - Berne Stock Exchange - CAS - Casablanca Stock Exchange - CISE - Channel Islands Stock Exchange - CNSX - Canadian National Stock Exchange - COL - Colombo Stock Exchange - CPH - Copenhagen Stock Exchange - CSE - Canadian Securities Exchange - CSE - Cyprus Stock Exchange - CSX - Cambodia Securities Exchange - DFM - Dubai Financial Market - DSE - Dhaka Stock Exchange - DSX - Douala Stock Exchange - DUS - Börse Düsseldorf - EBR - Euronext Brussels - EGX - Egypt Stock Exchange - ELI - Euronext Lisbon - EPA - Euronext Paris - ETR - Deutsche Börse XETRA - EUREX - Eurex Exchange - FRA - Frankfurt Stock Exchange - FWB - Börse Frankfurt Stock Exchange - GHA - Ghana Stock Exchange - GSX - Georgian Stock Exchange - GSX - Gibraltar Stock Exchange - HEL - Helsinki Stock Exchange - HKG - Hong Kong Stock Exchange - HNX - Hanoi Stock Exchange - HOSE - Ho Chi Minh Stock Exchange - ICE - Iceland Stock Exchange - IDX - Indonesia Stock Exchange - IEX - Investors Exchange - IFB - Iran Fara Bourse - IME - Iran Mercantile Exchange - IRENEX - Iran Energy Exchange - ISE - Irish Stock Exchange - IST - Istanbul Stock Exchange - ISX - Iraq Stock Exchange - JP - Japan Exchange - JSC - Belarusian Currency and Stock Exchange - JSE - Johannesburg Stock Exchange - JSE - Jamaica Stock Exchange - KASE - Kazakhstan Stock Exchange - KLSE - Malaysia Stock Exchange - KOSDAQ - Korean Securities Dealers Automated Quotations - KRX - Korea Stock Exchange - KSE - Kuwait Stock Exchange - LJE - Ljubljana Stock Exchange - LSE - London Stock Exchange - LSM - Libyan Stock Market - LSX - Lao Securities Exchange - LuSE - Lusaka Securities Exchange - LuxSE - Luxembourg Stock Exchange - MAL - Malta Stock Exchange - MCX - Multi Commodity Exchange of India - MEFF - Mercado Spanish Financial Futures Market - MNSE - Montenegro Stock Exchange - MOEX - Moscow Exchange - MSE - Metropolitan Stock Exchange - MSE - Moldova Stock Exchange - MSE - Macedonian Stock Exchange - MSEI - Metropolitan Stock Exchange of India - MSM - Muscat Securities Market - MUN - Börse München - NASDAQ - NSE - Nairobi Securities Exchange - NEX - NEX Exchange - NEPSE - Nepal Stock Exchange - NEEQ - National Equities Exchange and Quotations - NGM - Nordic Growth Market Exchange - NIG - Nigerian Stock Exchange - NOTC - Norwegian OTC - NPEX - NPEX Stock Exchange - NSE - National Stock Exchange of India - NSX - National Stock Exchange of Australia - NYSE - New York Stock Exchange - NYSEARCA - NYSE Arca - NYSEAMERICAN - NYSE American - NZE - New Zealand Stock Exchange - OSE - Oslo Stock Exchange - OTCBB - FINRA OTC Bulletin Board - OTC Pink - OTCQB - OTCQX - PDEx - Philippine Dealing Exchange - PEX - Palestine Exchange - PFTS - PFTS Ukraine Stock Exchange - POMSoX - Port Moresby Stock Exchange - PRA - Prague Stock Exchange - PSE - Philippine Stock Exchange - PSX - Pakistan Stock Exchange - QSE - Qatar Stock Exchange - RFB - Riga Stock Exchange - RSE - Rwanda Stock Exchange - RSEBL - Royal Securities Exchange of Bhutan - SASE - Sarajevo Stock Exchange - SBX - BX Swiss - SEHK - The Stock Exchange of Hong Kong - SEM - Stock Exchange of Mauritius - SGBV - Algiers Stock Exchange - SGX - Singapore Stock Exchange - SIX - SIX Swiss Exchange - SPBEX - Saint Petersburg Stock Exchange - SPSE - South Pacific Stock Exchange - SSE - Shanghai Stock Exchange - SSX - Sydney Stock Exchange - STO - Stockholm Stock Exchange - STU - Börse Stuttgart - SWX - SIX Swiss Exchange - SZSE - Shenzhen Stock Exchange - TSE - Tallinn Stock Exchange - TFEX - Thailand Futures Exchange - TISE - The International Stock Exchange - TLV - Tel Aviv Stock Exchange - TWSE - Taiwan Stock Exchange - TSE - Tirana Stock Exchange - TSE - Tehran Stock Exchange - TWO - Taiwan OTC Exchange - TSX - Toronto Stock Exchange - TSX-V - Toronto TSX Venture Exchange - TYO - Tokyo Stock Exchange - TTSE - Trinidad and Tobago Stock Exchange - Tadawul - Saudi Stock Exchange - USE - Uganda Securities Exchange - UX - Ukrainian Exchange - VIE - Vienna Stock Exchange - VMF - Faroese Securities Market - VSE - Vancouver Stock Exchange - WSE - Warsaw Stock Exchange - YSX - Yangon Stock Exchange - ZAMACE - Zambian Commodity Exchange - ZSE - Zimbabwe Stock Exchange - ZSE - Zagreb Stock Exchange x-cb-field-enum-values: - value: adx description: ADX - Abu Dhabi Securities Exchange - value: afx description: AFX - Afghanistan Stock Exchange - value: altx description: ALTX - ALTX East Africa Exchange - value: amx description: AMX - Armenia Securities Exchange - value: amex description: AMEX - American Stock Exchange - value: ams description: AMS - Euronext Amsterdam - value: asce description: ASCE - Abuja Securities and Commodities Exchange - value: asx description: ASX - Australian Securities Exchange - value: ath description: ATH - Athens Stock Exchange - value: bcba description: BCBA - Buenos Aires Stock Exchange - value: bdp description: BDP - Budapest Stock Exchange - value: belex description: BELEX - Belgrade Stock Exchange - value: ber description: BER - Berliner Börse - value: bfb description: BFB - Baku Stock Exchange - value: bit description: BIT - Italian Stock Exchange - value: bkk description: BKK - Thailand Stock Exchange - value: blse description: BLSE - Banja Luka Stock Exchange - value: bme description: BME - Madrid Stock Exchange - value: bmv description: BMV - Mexican Stock Exchange - value: bom description: BOM - Bombay Stock Exchange - value: brvm description: BRVM - Regional Securities Exchange SA - value: bse description: BSE - Bulgarian Stock Exchange - value: bse_lb description: BSE - Beirut Stock Exchange - value: bsse description: BSSE - Bratislava Stock Exchange - value: bsx description: BSX - Bermuda Stock Exchange - value: bvb description: BVB - Bucharest Stock Exchange - value: bvc description: BVC - Colombian Stock Exchange - value: bvfb description: BVFB - Belarusian Currency and Stock Exchange - value: bvm description: BVM - Montevideo Stock Exchange - value: bvmf description: B3 - Brazil Stock Exchange and OTC Market - value: bvmt description: BVMT - Tunis Stock Exchange - value: bx description: BX - Berne Stock Exchange - value: cas description: CAS - Casablanca Stock Exchange - value: cise description: CISE - Channel Islands Stock Exchange - value: cnsx description: CNSX - Canadian National Stock Exchange - value: col description: COL - Colombo Stock Exchange - value: cph description: CPH - Copenhagen Stock Exchange - value: cse description: CSE - Canadian Securities Exchange - value: cse_cy description: CSE - Cyprus Stock Exchange - value: csx description: CSX - Cambodia Securities Exchange - value: dfm description: DFM - Dubai Financial Market - value: dse description: DSE - Dhaka Stock Exchange - value: dsx description: DSX - Douala Stock Exchange - value: dus description: DUS - Börse Düsseldorf - value: ebr description: EBR - Euronext Brussels - value: egx description: EGX - Egypt Stock Exchange - value: eli description: ELI - Euronext Lisbon - value: epa description: EPA - Euronext Paris - value: etr description: ETR - Deutsche Börse XETRA - value: eurex description: EUREX - Eurex Exchange - value: fra description: FRA - Frankfurt Stock Exchange - value: fwb description: FWB - Börse Frankfurt Stock Exchange - value: gha description: GHA - Ghana Stock Exchange - value: gsx description: GSX - Georgian Stock Exchange - value: gsx_gi description: GSX - Gibraltar Stock Exchange - value: hel description: HEL - Helsinki Stock Exchange - value: hkg description: HKG - Hong Kong Stock Exchange - value: hnx description: HNX - Hanoi Stock Exchange - value: hose description: HOSE - Ho Chi Minh Stock Exchange - value: ice description: ICE - Iceland Stock Exchange - value: idx description: IDX - Indonesia Stock Exchange - value: iex description: IEX - Investors Exchange - value: ifb description: IFB - Iran Fara Bourse - value: ime description: IME - Iran Mercantile Exchange - value: irenex description: IRENEX - Iran Energy Exchange - value: ise description: ISE - Irish Stock Exchange - value: ist description: IST - Istanbul Stock Exchange - value: isx description: ISX - Iraq Stock Exchange - value: jp description: JP - Japan Exchange - value: jsc description: JSC - Belarusian Currency and Stock Exchange - value: jse description: JSE - Johannesburg Stock Exchange - value: jse_jam description: JSE - Jamaica Stock Exchange - value: kase description: KASE - Kazakhstan Stock Exchange - value: klse description: KLSE - Malaysia Stock Exchange - value: kosdaq description: KOSDAQ - Korean Securities Dealers Automated Quotations - value: krx description: KRX - Korea Stock Exchange - value: kse description: KSE - Kuwait Stock Exchange - value: lje description: LJE - Ljubljana Stock Exchange - value: lse description: LSE - London Stock Exchange - value: lsm description: LSM - Libyan Stock Market - value: lsx description: LSX - Lao Securities Exchange - value: luse description: LuSE - Lusaka Securities Exchange - value: luxse description: LuxSE - Luxembourg Stock Exchange - value: mal description: MAL - Malta Stock Exchange - value: mcx description: MCX - Multi Commodity Exchange of India - value: meff description: MEFF - Mercado Spanish Financial Futures Market - value: mnse description: MNSE - Montenegro Stock Exchange - value: moex description: MOEX - Moscow Exchange - value: mse description: MSE - Metropolitan Stock Exchange - value: mse_md description: MSE - Moldova Stock Exchange - value: mse_mk description: MSE - Macedonian Stock Exchange - value: msei description: MSEI - Metropolitan Stock Exchange of India - value: msm description: MSM - Muscat Securities Market - value: mun description: MUN - Börse München - value: nasdaq description: NASDAQ - value: nbo description: NSE - Nairobi Securities Exchange - value: nex description: NEX - NEX Exchange - value: nepse description: NEPSE - Nepal Stock Exchange - value: neeq description: NEEQ - National Equities Exchange and Quotations - value: ngm description: NGM - Nordic Growth Market Exchange - value: nig description: NIG - Nigerian Stock Exchange - value: notc description: NOTC - Norwegian OTC - value: npex description: NPEX - NPEX Stock Exchange - value: nse description: NSE - National Stock Exchange of India - value: nsx description: NSX - National Stock Exchange of Australia - value: nyse description: NYSE - New York Stock Exchange - value: nysearca description: NYSEARCA - NYSE Arca - value: nysemkt description: NYSEAMERICAN - NYSE American - value: nze description: NZE - New Zealand Stock Exchange - value: ose description: OSE - Oslo Stock Exchange - value: otcbb description: OTCBB - FINRA OTC Bulletin Board - value: otcpink description: OTC Pink - value: otcqb description: OTCQB - value: otcqx description: OTCQX - value: pdex description: PDEx - Philippine Dealing Exchange - value: pex description: PEX - Palestine Exchange - value: pfts description: PFTS - PFTS Ukraine Stock Exchange - value: pomsox description: POMSoX - Port Moresby Stock Exchange - value: prg description: PRA - Prague Stock Exchange - value: pse description: PSE - Philippine Stock Exchange - value: psx description: PSX - Pakistan Stock Exchange - value: qse description: QSE - Qatar Stock Exchange - value: rfb description: RFB - Riga Stock Exchange - value: rse description: RSE - Rwanda Stock Exchange - value: rsebl description: RSEBL - Royal Securities Exchange of Bhutan - value: sase description: SASE - Sarajevo Stock Exchange - value: sbx description: SBX - BX Swiss - value: sehk description: SEHK - The Stock Exchange of Hong Kong - value: sem description: SEM - Stock Exchange of Mauritius - value: sgbv description: SGBV - Algiers Stock Exchange - value: sgx description: SGX - Singapore Stock Exchange - value: six description: SIX - SIX Swiss Exchange - value: spbex description: SPBEX - Saint Petersburg Stock Exchange - value: spse description: SPSE - South Pacific Stock Exchange - value: sse description: SSE - Shanghai Stock Exchange - value: ssx description: SSX - Sydney Stock Exchange - value: sto description: STO - Stockholm Stock Exchange - value: stu description: STU - Börse Stuttgart - value: swx description: SWX - SIX Swiss Exchange - value: szse description: SZSE - Shenzhen Stock Exchange - value: tal description: TSE - Tallinn Stock Exchange - value: tfex description: TFEX - Thailand Futures Exchange - value: tise description: TISE - The International Stock Exchange - value: tlv description: TLV - Tel Aviv Stock Exchange - value: tpe description: TWSE - Taiwan Stock Exchange - value: tse_al description: TSE - Tirana Stock Exchange - value: tse_ir description: TSE - Tehran Stock Exchange - value: tsec description: TWO - Taiwan OTC Exchange - value: tsx description: TSX - Toronto Stock Exchange - value: cve description: TSX-V - Toronto TSX Venture Exchange - value: tyo description: TYO - Tokyo Stock Exchange - value: ttse description: TTSE - Trinidad and Tobago Stock Exchange - value: tadawul description: Tadawul - Saudi Stock Exchange - value: use description: USE - Uganda Securities Exchange - value: ux description: UX - Ukrainian Exchange - value: vie description: VIE - Vienna Stock Exchange - value: vmf description: VMF - Faroese Securities Market - value: vse description: VSE - Vancouver Stock Exchange - value: wse description: WSE - Warsaw Stock Exchange - value: ysx description: YSX - Yangon Stock Exchange - value: zamace description: ZAMACE - Zambian Commodity Exchange - value: zse description: ZSE - Zimbabwe Stock Exchange - value: zse_hr description: ZSE - Zagreb Stock Exchange x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes stock_full_symbol: type: string maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] stock_symbol: type: string description: Stock ticker symbol (e.g. AAPL, FB, TWTR) maxLength: 255 x-cb-field-type: text_short x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - not_contains - not_eq - starts updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes valuation: type: object description: Valuation of the Organization at IPO allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq went_public_on: type: string description: Date the Organization went public format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte InvestorInsight_2: type: object required: - identifier properties: associated_investments_since: type: string description: Associated investments since format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte categories: type: array description: Investment categories items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte description: type: string description: A concise text statement highlighting the investor insight maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] diversity_investments: type: array description: Diversity investments items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all entity_def_id: type: string description: 'Investor Insight * investor_insight - Investor Insight' enum: - investor_insight x-enum-descriptions: - Investor Insight x-cb-field-enum-values: - value: investor_insight description: Investor Insight x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes exit_success_rate: type: number description: Exit success rate format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq generated_on: type: string description: Date on which this insight was generated format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte identifier: type: object description: Name of the Investor Insight allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts investment_funding_stage: type: array description: Investment funding stage items: type: string description: 'Investment funding stage * early_stage_venture - Early Stage Venture * ipo - IPO * late_stage_venture - Late Stage Venture * m_and_a - M&A * private_equity - Private Equity * seed - Seed' enum: - seed - early_stage_venture - late_stage_venture - private_equity - m_and_a - ipo x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all investment_types: type: array description: Investment types items: type: string description: 'Investment types * angel - Angel * convertible_note - Convertible Note * corporate_round - Corporate Round * debt_financing - Debt Financing * equity_crowdfunding - Equity Crowdfunding * grant - Grant * initial_coin_offering - Initial Coin Offering * non_equity_assistance - Non-equity Assistance * post_ipo_debt - Post-IPO Debt * post_ipo_equity - Post-IPO Equity * post_ipo_secondary - Post-IPO Secondary * pre_seed - Pre-Seed * private_equity - Private Equity * product_crowdfunding - Product Crowdfunding * secondary_market - Secondary Market * seed - Seed * series_a - Series A * series_b - Series B * series_c - Series C * series_d - Series D * series_e - Series E * series_f - Series F * series_g - Series G * series_h - Series H * series_i - Series I * series_j - Series J * series_unknown - Venture - Series Unknown * undisclosed - Undisclosed' enum: - pre_seed - seed - series_a - series_b - series_c - series_d - series_e - series_f - series_g - series_h - series_i - series_j - series_unknown - angel - private_equity - debt_financing - convertible_note - grant - corporate_round - equity_crowdfunding - product_crowdfunding - secondary_market - post_ipo_equity - post_ipo_debt - post_ipo_secondary - non_equity_assistance - initial_coin_offering - undisclosed x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all lead_investor_rate: type: number description: Lead investor rate format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq locations: type: array description: Investment locations items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all median_investment_size: type: object description: Median investment size allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq organization: type: object description: Unique identifier for the organization associated with this investor insight allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts stages: type: array description: Investment stages items: type: string description: 'Investment stages * convertible_note - Convertible Note * crowdfunding - Crowdfunding * debt - Debt * early_stage_venture - Early Stage Venture * grant - Grant * initial_coin_offering - Initial Coin Offering * late_stage_venture - Late Stage Venture * non_equity_assistance - Non Equity Assistance * post_ipo - Post-Ipo * private_equity - Private Equity * secondary_market - Secondary Market * seed - Seed * venture - Venture' enum: - seed - early_stage_venture - late_stage_venture - venture - private_equity - crowdfunding - debt - grant - non_equity_assistance - convertible_note - secondary_market - post_ipo - initial_coin_offering x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes ResearchInsight_2: type: object required: - identifier properties: created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte description: type: string description: A concise text statement highlighting the company's recent research and development maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] entity_def_id: type: string description: 'Research and Development Insight * research_insight - Research and Development Insight' enum: - research_insight x-enum-descriptions: - Research and Development Insight x-cb-field-enum-values: - value: research_insight description: Research and Development Insight x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes generated_on: type: string description: Date on which this insight was generated format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte identifier: type: object description: Name of the Research and Development Insight allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts organization: type: object description: Unique identifier for the organization associated with this research insight allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes IpoPredictionFieldId: type: string description: IpoPrediction field ids enum: - created_at - entity_def_id - example_funding_round - example_ipo - generated_on - growth_insight - identifier - key_employee_change - key_leadership_hire - media_sentiment - organization - probability_score - probability_score_timeseries - probability_tier - unicorn_status - updated_at - uuid FundingPredictionEntity: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/FundingPrediction' properties: $ref: '#/components/schemas/FundingPrediction' Award_2: type: object required: - identifier properties: created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte description: type: string description: Award description maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] entity_def_id: type: string description: 'Award * award - Award' enum: - award x-enum-descriptions: - Award x-cb-field-enum-values: - value: award description: Award x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Award name allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts key_event_date: type: string description: Date award presented or announced format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte name: type: string description: Award name maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] organization: type: object description: Organization that received the award allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts press_reference_link: type: object description: News article mentioning award allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] sentiment: type: string description: 'Sentiment associated with award * c100_positive - Positive * c200_neutral - Neutral * c300_negative - Negative' enum: - c100_positive - c200_neutral - c300_negative x-enum-descriptions: - Positive - Neutral - Negative x-cb-field-enum-values: - value: c100_positive description: Positive - value: c200_neutral description: Neutral - value: c300_negative description: Negative x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes updated_at: type: string description: Date entity was updated format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string description: Award entity UUID format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes Address_3: type: object required: - identifier properties: country_code: type: string description: Country Code maxLength: 255 x-cb-field-type: text_exact x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* address - Address' enum: - address x-enum-descriptions: - Address x-cb-field-enum-values: - value: address description: Address x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes headquartered_organization_identifier: type: object description: Identifier of the organization that's headquartered on this address allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts identifier: type: object description: Descriptive name of the Address (e.g. Headquarters, London Office) allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts location_identifiers: type: array description: What city the address is located in (e.g. San Francisco, London, Kiev). items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all name: type: string description: Descriptive name of the Address (e.g. Headquarters, London Office) maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] opening_date: type: string description: Date this location opened format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte opening_description: type: string description: Summary of context regarding opening of this address maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] opening_press_reference_link: type: object description: News article url mentioning the address opening allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] organization: type: object description: Organization with an office or headquarters at this address allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts postal_code: type: string description: The postal code of the address maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] region_code: type: string description: Region Code maxLength: 255 x-cb-field-type: text_exact x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes street_1: type: string description: The street address of the location maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] street_2: type: string description: The street address of the location maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes GrowthPredictionFieldId: type: string description: GrowthPrediction field ids enum: - awards - created_at - entity_def_id - example_funding_round - generated_on - growth_insight - identifier - key_employee_changes - key_leadership_hires - layoffs - legal_proceedings - new_offices - organization - partnership_announcements - probability_score - probability_tier - product_launches - runway_speculation - similar_company_acquired - similar_company_went_public - unicorn_status - updated_at - uuid CategoryEntity_3: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/Category_3' market_insights: type: array items: $ref: '#/components/schemas/MarketInsight_2' properties: $ref: '#/components/schemas/Category_3' AcquisitionPredictionFieldId: type: string description: AcquisitionPrediction field ids enum: - created_at - entity_def_id - example_acquisition - generated_on - growth_insight - identifier - key_employee_change - key_leadership_hire - organization - partnership_announcement - probability_score - probability_score_timeseries - probability_tier - runway_speculation - updated_at - uuid GrowthInsight_2: type: object required: - identifier properties: created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte customers: type: string description: 'Fluctuations in the number of customers or users * c100_worsening - Customer Decline * c200_improving - Customer Growth' enum: - c100_worsening - c200_improving x-enum-descriptions: - Customer Decline - Customer Growth x-cb-field-enum-values: - value: c100_worsening description: Customer Decline - value: c200_improving description: Customer Growth x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes description: type: string description: A concise text statement highlighting the company's growth trajectory maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] engagement: type: string description: 'Changes in product engagement levels, including increases or decreases in website traffic, app downloads, and user activity * c100_worsening - Product Usage Decline * c200_improving - Product Usage Growth' enum: - c100_worsening - c200_improving x-enum-descriptions: - Product Usage Decline - Product Usage Growth x-cb-field-enum-values: - value: c100_worsening description: Product Usage Decline - value: c200_improving description: Product Usage Growth x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes entity_def_id: type: string description: 'Growth Insight * growth_insight - Growth Insight' enum: - growth_insight x-enum-descriptions: - Growth Insight x-cb-field-enum-values: - value: growth_insight description: Growth Insight x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes finance: type: string description: 'Changes in key financial metrics including revenue, sales, earnings, profit margins, dividends, return on investment, stock performance, and commercial contracts * c100_worsening - Financial Decline * c200_improving - Financial Growth' enum: - c100_worsening - c200_improving x-enum-descriptions: - Financial Decline - Financial Growth x-cb-field-enum-values: - value: c100_worsening description: Financial Decline - value: c200_improving description: Financial Growth x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes funding_raised: type: string description: 'Activities related to financial investments, including receiving funding or making strategic investments into other organizations * c100_worsening - Has Not Recently Raised Funding * c200_improving - Recently Raised Funding' enum: - c100_worsening - c200_improving x-enum-descriptions: - Has Not Recently Raised Funding - Recently Raised Funding x-cb-field-enum-values: - value: c100_worsening description: Has Not Recently Raised Funding - value: c200_improving description: Recently Raised Funding x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes generated_on: type: string description: Date on which this insight was generated format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte growth_confidence: type: string description: 'Assessment of the reliability and accuracy of the provided data * c100_unknown - Unknown * c200_low - Low * c300_medium - Medium * c400_high - High' enum: - c100_unknown - c200_low - c300_medium - c400_high x-enum-descriptions: - Unknown - Low - Medium - High x-cb-field-enum-values: - value: c100_unknown description: Unknown - value: c200_low description: Low - value: c300_medium description: Medium - value: c400_high description: High x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes growth_direction: type: string description: 'Direction of the company''s growth trajectory * c100_uncertain - Uncertain * c200_declining - Not Growing * c300_stable - Stable * c400_growing - Growing' enum: - c100_uncertain - c200_declining - c300_stable - c400_growing x-enum-descriptions: - Uncertain - Not Growing - Stable - Growing x-cb-field-enum-values: - value: c100_uncertain description: Uncertain - value: c200_declining description: Not Growing - value: c300_stable description: Stable - value: c400_growing description: Growing x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes headcount: type: string description: 'Variations in employee numbers, including hiring sprees, layoffs, workforce expansions, and reductions * c100_worsening - Headcount Reduction * c200_improving - Headcount Growth' enum: - c100_worsening - c200_improving x-enum-descriptions: - Headcount Reduction - Headcount Growth x-cb-field-enum-values: - value: c100_worsening description: Headcount Reduction - value: c200_improving description: Headcount Growth x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Name of the Growth Insight allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts market_share: type: string description: 'Changes in the company''s market share, including growth through new market entries and decline due to market exits * c100_worsening - Market Share Decline * c200_improving - Market Share Expansion' enum: - c100_worsening - c200_improving x-enum-descriptions: - Market Share Decline - Market Share Expansion x-cb-field-enum-values: - value: c100_worsening description: Market Share Decline - value: c200_improving description: Market Share Expansion x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes mergers_acquisitions: type: string description: 'Business consolidations involving mergers, acquisitions, or divestitures * c100_worsening - No Merger or Acquisition * c200_improving - Merger or Acquisition' enum: - c100_worsening - c200_improving x-enum-descriptions: - No Merger or Acquisition - Merger or Acquisition x-cb-field-enum-values: - value: c100_worsening description: No Merger or Acquisition - value: c200_improving description: Merger or Acquisition x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes operations: type: string description: 'Modifications in operational footprints, including acquisitions or reductions of facilities, and regional expansions or contractions * c100_worsening - Operations Contraction * c200_improving - Operations Expansion' enum: - c100_worsening - c200_improving x-enum-descriptions: - Operations Contraction - Operations Expansion x-cb-field-enum-values: - value: c100_worsening description: Operations Contraction - value: c200_improving description: Operations Expansion x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes organization: type: object description: Unique identifier for the organization associated with this growth insight allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts outbound_investment: type: string description: 'Records the company''s financial investments into external entities or projects * c100_worsening - No Strategic Investment * c200_improving - Strategic Investment' enum: - c100_worsening - c200_improving x-enum-descriptions: - No Strategic Investment - Strategic Investment x-cb-field-enum-values: - value: c100_worsening description: No Strategic Investment - value: c200_improving description: Strategic Investment x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes press_references: type: array description: A list of the press references used to construct this growth insight items: type: object properties: entity_def_id: type: string enum: - press_reference x-enum-descriptions: - press_reference x-cb-field-enum-values: [] x-cb-field-type: enum x-cb-searchable: false x-cb-search-operators: [] posted_on: type: string format: date x-cb-field-type: date x-cb-searchable: false x-cb-search-operators: [] publisher: type: string maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] source_url: type: string maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] thumbnail_url: type: string maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: false x-cb-search-operators: [] value: type: string maxLength: 255 x-cb-field-type: text_short x-cb-searchable: false x-cb-search-operators: [] x-cb-field-type: properties_multi x-cb-searchable: false x-cb-search-operators: [] updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes RemainPrivatePredictionEntity: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/RemainPrivatePrediction' properties: $ref: '#/components/schemas/RemainPrivatePrediction' FundingPredictionFieldId: type: string description: FundingPrediction field ids enum: - created_at - entity_def_id - example_funding_round - generated_on - growth_insight - identifier - key_employee_change - key_leadership_hire - organization - partnership_announcement - probability_score - probability_score_timeseries - probability_tier - product_launch - runway_speculation - unicorn_status - updated_at - uuid AcquisitionPredictionEntity: type: object properties: cards: type: object properties: fields: $ref: '#/components/schemas/AcquisitionPrediction' properties: $ref: '#/components/schemas/AcquisitionPrediction' ProductSimilarity_2: type: object required: - identifier properties: created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: 'Product Similarity * product_similarity - Product Similarity' enum: - product_similarity x-enum-descriptions: - Product Similarity x-cb-field-enum-values: - value: product_similarity description: Product Similarity x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Product Similarity allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts source: type: object allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts target: type: object allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts target_organization: type: object allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes MarketInsightReason_2: type: object required: - identifier properties: created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: 'Market Insight Reason * market_insight_reason - Market Insight Reason' enum: - market_insight_reason x-enum-descriptions: - Market Insight Reason x-cb-field-enum-values: - value: market_insight_reason description: Market Insight Reason x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Market Insight Reason allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts market_insight: type: object description: Market Insight allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts market_insight_generated_on: type: string format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte market_insight_subject: type: object description: Industry Collection Type allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts metric_basis: type: string description: '* acquisition_activity - Acquisition Activity * activity - Activity * average_value - Average Value * cluster_size - Cluster Size * company_count - Company Count * coverage_rate - Coverage Rate * employment - Employment * ipo_activity - IPO Activity * median_value - Median Value * total_value - Total Value * viewer_count - Viewer Count' enum: - activity - total_value - median_value - average_value - company_count - coverage_rate - cluster_size - ipo_activity - acquisition_activity - viewer_count - employment x-enum-descriptions: - Activity - Total Value - Median Value - Average Value - Company Count - Coverage Rate - Cluster Size - IPO Activity - Acquisition Activity - Viewer Count - Employment x-cb-field-enum-values: - value: activity description: Activity - value: total_value description: Total Value - value: median_value description: Median Value - value: average_value description: Average Value - value: company_count description: Company Count - value: coverage_rate description: Coverage Rate - value: cluster_size description: Cluster Size - value: ipo_activity description: IPO Activity - value: acquisition_activity description: Acquisition Activity - value: viewer_count description: Viewer Count - value: employment description: Employment x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes percent_change: type: number format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq reason_kind: type: string description: '* exits - Exits * funding - Funding * labor_market - Labor Market * profile_views - Profile Views' enum: - funding - exits - profile_views - labor_market x-enum-descriptions: - Funding - Exits - Profile Views - Labor Market x-cb-field-enum-values: - value: funding description: Funding - value: exits description: Exits - value: profile_views description: Profile Views - value: labor_market description: Labor Market x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes timeframe: type: string description: '* last_12_months - Last 12 Months * last_180_days - Last 180 Days * last_2_years - Last 2 Years * last_30_days - Last 30 Days * last_3_years - Last 3 Years * last_90_days - Last 90 Days * month_over_month - Month Over Month * since_last_clustering_cycle - Since Last Clustering Cycle * week_over_week - Week Over Week * year_over_year - Year Over Year' enum: - since_last_clustering_cycle - last_12_months - year_over_year - last_30_days - week_over_week - month_over_month - last_90_days - last_180_days - last_2_years - last_3_years x-enum-descriptions: - Since Last Clustering Cycle - Last 12 Months - Year Over Year - Last 30 Days - Week Over Week - Month Over Month - Last 90 Days - Last 180 Days - Last 2 Years - Last 3 Years x-cb-field-enum-values: - value: since_last_clustering_cycle description: Since Last Clustering Cycle - value: last_12_months description: Last 12 Months - value: year_over_year description: Year Over Year - value: last_30_days description: Last 30 Days - value: week_over_week description: Week Over Week - value: month_over_month description: Month Over Month - value: last_90_days description: Last 90 Days - value: last_180_days description: Last 180 Days - value: last_2_years description: Last 2 Years - value: last_3_years description: Last 3 Years x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes CategoryGroupFieldId_3: type: string description: CategoryGroup field ids enum: - categories - created_at - entity_def_id - identifier - last_market_insight_direction - name - updated_at - uuid ClosurePredictionFieldId: type: string description: ClosurePrediction field ids enum: - addresses - awards - created_at - entity_def_id - generated_on - growth_insights - identifier - key_employee_changes - layoffs - legal_proceedings - media_sentiment - organization - partnership_announcements - probability_score - probability_score_timeseries - probability_tier - product_launches - updated_at - uuid FundingPrediction: type: object required: - identifier properties: created_at: type: string description: Time of Creation format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: 'Entity Def Type * funding_prediction - Funding Prediction' enum: - funding_prediction x-enum-descriptions: - Funding Prediction x-cb-field-enum-values: - value: funding_prediction description: Funding Prediction x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes example_funding_round: type: object description: An example of a similar company in the same industry that had a Funding Round in the last 6 months allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts generated_on: type: string description: Date on which this Funding Prediction was generated format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte growth_insight: type: object description: The Growth Insight linked to this Funding Prediction. allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts identifier: type: object description: Funding Prediction Title allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts key_employee_change: type: object description: There has been a change to the executive team's composition (hire, departure, or promotion) allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts key_leadership_hire: type: object description: A new C-level Officer (CXO) was hired in the last 12 months allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts organization: type: object description: Unique identifier for the organization associated with this funding prediction allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts partnership_announcement: type: object description: A new strategic partnership occurred in the last 12 months allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts probability_score: type: number description: The predicted probability that this Organization will receive funding format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq probability_score_timeseries: type: object properties: months_00_to_05: type: number format: double x-cb-field-type: decimal x-cb-searchable: false x-cb-search-operators: [] months_06_to_11: type: number format: double x-cb-field-type: decimal x-cb-searchable: false x-cb-search-operators: [] months_12_to_24: type: number format: double x-cb-field-type: decimal x-cb-searchable: false x-cb-search-operators: [] months_24_plus: type: number format: double x-cb-field-type: decimal x-cb-searchable: false x-cb-search-operators: [] x-cb-field-type: properties x-cb-searchable: false x-cb-search-operators: [] probability_tier: type: string description: 'The predicted probability of this organization raising funds is divided into distinct tiers that quantify the likelihood of this event. * p100_positive_high - Very Likely * p200_positive_low - Probable * p300_neutral - Uncertain * p400_negative_low - Doubtful * p500_negative_high - Very Unlikely' enum: - p100_positive_high - p200_positive_low - p300_neutral - p400_negative_low - p500_negative_high x-enum-descriptions: - Very Likely - Probable - Uncertain - Doubtful - Very Unlikely x-cb-field-enum-values: - value: p100_positive_high description: Very Likely - value: p200_positive_low description: Probable - value: p300_neutral description: Uncertain - value: p400_negative_low description: Doubtful - value: p500_negative_high description: Very Unlikely x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes product_launch: type: object description: A new product or service was launched in the last 12 months allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts runway_speculation: type: object description: Approaching 18-24+ months since the last funding round, the need for capital may be more probable. allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts unicorn_status: type: string description: 'Achieved unicorn status in the last 12 months * c100_evidence_absent - Has Not Achieved Unicorn Status * c200_evidence_present - Has Achieved Unicorn Status' enum: - c100_evidence_absent - c200_evidence_present x-enum-descriptions: - Has Not Achieved Unicorn Status - Has Achieved Unicorn Status x-cb-field-enum-values: - value: c100_evidence_absent description: Has Not Achieved Unicorn Status - value: c200_evidence_present description: Has Achieved Unicorn Status x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes updated_at: type: string description: Time of Update format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string description: UUID format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes FundingRound_3: type: object required: - identifier properties: announced_on: type: string description: Date that the Funding Round was publicly announced format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte closed_on: type: object description: Date that the Funding Round was closed allOf: - $ref: '#/components/schemas/DateWithPrecision' x-cb-field-type: date_precision x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* funding_round - Funding Round' enum: - funding_round x-enum-descriptions: - Funding Round x-cb-field-enum-values: - value: funding_round description: Funding Round x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes funded_organization_categories: type: array description: Industries of the organization that got funded items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all funded_organization_description: type: string description: Description of the organization that got funded maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains funded_organization_diversity_spotlights: type: array description: Types of diversity represented in an organization, specifically of those who are founding members, currently the CEO, or have check-writing abilities in an investment firm. This feature is in beta and may change with future updates. items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all funded_organization_funding_stage: type: string description: 'Organization''s most recent funding status * early_stage_venture - Early Stage Venture * ipo - IPO * late_stage_venture - Late Stage Venture * m_and_a - M&A * private_equity - Private Equity * seed - Seed' enum: - seed - early_stage_venture - late_stage_venture - private_equity - m_and_a - ipo x-enum-descriptions: - Seed - Early Stage Venture - Late Stage Venture - Private Equity - M&A - IPO x-cb-field-enum-values: - value: seed description: Seed - value: early_stage_venture description: Early Stage Venture - value: late_stage_venture description: Late Stage Venture - value: private_equity description: Private Equity - value: m_and_a description: M&A - value: ipo description: IPO x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes funded_organization_funding_total: type: object description: Total funding amount raised across all Funding Rounds allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq funded_organization_identifier: type: object description: Name of the organization that got funded allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts funded_organization_location: type: array description: Location of the organization that got funded items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all funded_organization_revenue_range: type: string description: 'Revenue range of the organization that got funded * r_00000000 - Less than $1M * r_00001000 - $1M to $10M * r_00010000 - $10M to $50M * r_00050000 - $50M to $100M * r_00100000 - $100M to $500M * r_00500000 - $500M to $1B * r_01000000 - $1B to $10B * r_10000000 - $10B+' enum: - r_00000000 - r_00001000 - r_00010000 - r_00050000 - r_00100000 - r_00500000 - r_01000000 - r_10000000 x-enum-descriptions: - Less than $1M - $1M to $10M - $10M to $50M - $50M to $100M - $100M to $500M - $500M to $1B - $1B to $10B - $10B+ x-cb-field-enum-values: - value: r_00000000 description: Less than $1M - value: r_00001000 description: $1M to $10M - value: r_00010000 description: $10M to $50M - value: r_00050000 description: $50M to $100M - value: r_00100000 description: $100M to $500M - value: r_00500000 description: $500M to $1B - value: r_01000000 description: $1B to $10B - value: r_10000000 description: $10B+ x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Auto-generated name of transaction (e.g. Angel - Uber) allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts image_id: type: string maxLength: 255 x-cb-field-type: image_id x-cb-searchable: false x-cb-search-operators: [] investment_stage: type: string description: 'The funding stage of a funding round * early_stage_venture - Early Stage Venture * late_stage_venture - Late Stage Venture * private_equity - Private Equity * seed - Seed' enum: - seed - early_stage_venture - late_stage_venture - private_equity x-enum-descriptions: - Seed - Early Stage Venture - Late Stage Venture - Private Equity x-cb-field-enum-values: - value: seed description: Seed - value: early_stage_venture description: Early Stage Venture - value: late_stage_venture description: Late Stage Venture - value: private_equity description: Private Equity x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes investment_type: type: string description: 'Type of Funding Round (e.g. Seed, Series A, Private Equity, Debt Financing) * angel - Angel * convertible_note - Convertible Note * corporate_round - Corporate Round * debt_financing - Debt Financing * equity_crowdfunding - Equity Crowdfunding * grant - Grant * initial_coin_offering - Initial Coin Offering * non_equity_assistance - Non-equity Assistance * post_ipo_debt - Post-IPO Debt * post_ipo_equity - Post-IPO Equity * post_ipo_secondary - Post-IPO Secondary * pre_seed - Pre-Seed * private_equity - Private Equity * product_crowdfunding - Product Crowdfunding * secondary_market - Secondary Market * seed - Seed * series_a - Series A * series_b - Series B * series_c - Series C * series_d - Series D * series_e - Series E * series_f - Series F * series_g - Series G * series_h - Series H * series_i - Series I * series_j - Series J * series_unknown - Venture - Series Unknown * undisclosed - Funding Round' enum: - pre_seed - seed - series_a - series_b - series_c - series_d - series_e - series_f - series_g - series_h - series_i - series_j - series_unknown - angel - private_equity - debt_financing - convertible_note - grant - corporate_round - equity_crowdfunding - product_crowdfunding - secondary_market - post_ipo_equity - post_ipo_debt - post_ipo_secondary - non_equity_assistance - initial_coin_offering - undisclosed x-enum-descriptions: - Pre-Seed - Seed - Series A - Series B - Series C - Series D - Series E - Series F - Series G - Series H - Series I - Series J - Venture - Series Unknown - Angel - Private Equity - Debt Financing - Convertible Note - Grant - Corporate Round - Equity Crowdfunding - Product Crowdfunding - Secondary Market - Post-IPO Equity - Post-IPO Debt - Post-IPO Secondary - Non-equity Assistance - Initial Coin Offering - Funding Round x-cb-field-enum-values: - value: pre_seed description: Pre-Seed - value: seed description: Seed - value: series_a description: Series A - value: series_b description: Series B - value: series_c description: Series C - value: series_d description: Series D - value: series_e description: Series E - value: series_f description: Series F - value: series_g description: Series G - value: series_h description: Series H - value: series_i description: Series I - value: series_j description: Series J - value: series_unknown description: Venture - Series Unknown - value: angel description: Angel - value: private_equity description: Private Equity - value: debt_financing description: Debt Financing - value: convertible_note description: Convertible Note - value: grant description: Grant - value: corporate_round description: Corporate Round - value: equity_crowdfunding description: Equity Crowdfunding - value: product_crowdfunding description: Product Crowdfunding - value: secondary_market description: Secondary Market - value: post_ipo_equity description: Post-IPO Equity - value: post_ipo_debt description: Post-IPO Debt - value: post_ipo_secondary description: Post-IPO Secondary - value: non_equity_assistance description: Non-equity Assistance - value: initial_coin_offering description: Initial Coin Offering - value: undisclosed description: Funding Round x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes investor_identifiers: type: array description: Names of all investors who invested in the funding round items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all is_equity: type: boolean description: This indicates whether the Funding Round is financed only through equity. x-cb-field-type: boolean x-cb-searchable: true x-cb-search-operators: - blank - eq lead_investor_identifiers: type: array description: Name of the investor who led the investment in the funding round items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all money_raised: type: object description: Amount of money raised in Funding Round allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq name: type: string maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] num_investors: type: number description: Total number of Investors in a Funding Round x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq num_partners: type: number description: Total number of Partner Investors in a Funding Round x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq permalink: type: string maxLength: 255 x-cb-field-type: permalink x-cb-searchable: false x-cb-search-operators: [] post_money_valuation: type: object description: Valuation of a Company after a Funding Round allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq post_money_valuation_source: type: string description: 'Source of the Post-Money Valuation for a Funding Round * c100_confirmed - Confirmed * c200_estimated - Estimated' enum: - c100_confirmed - c200_estimated x-enum-descriptions: - Confirmed - Estimated x-cb-field-enum-values: - value: c100_confirmed description: Confirmed - value: c200_estimated description: Estimated x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes pre_money_valuation: type: object description: Valuation of a Company prior to a Funding Round allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank: type: number description: Algorithmic rank assigned to the top profiles on Crunchbase x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq rank_funding_round: type: number description: Algorithmic rank assigned to the top 100,000 most active Funding Rounds x-cb-field-type: integer x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq sentiment: type: string description: 'Sentiment of news articles associated with a Funding Round * c100_positive - Positive * c200_neutral - Neutral * c300_negative - Negative' enum: - c100_positive - c200_neutral - c300_negative x-enum-descriptions: - Positive - Neutral - Negative x-cb-field-enum-values: - value: c100_positive description: Positive - value: c200_neutral description: Neutral - value: c300_negative description: Negative x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes short_description: type: string description: Short description of the Funding Round maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains target_money_raised: type: object description: Amount of money the funded Organization would like to raised in the Funding Round allOf: - $ref: '#/components/schemas/Money' x-cb-field-type: money x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes ClosurePrediction: type: object required: - identifier properties: addresses: type: array items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all awards: type: array items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* closure_prediction - Closure Prediction' enum: - closure_prediction x-enum-descriptions: - Closure Prediction x-cb-field-enum-values: - value: closure_prediction description: Closure Prediction x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes generated_on: type: string format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte growth_insights: type: array items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all identifier: type: object description: Closure Prediction identifier allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts key_employee_changes: type: array items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all layoffs: type: array items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all legal_proceedings: type: array items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all media_sentiment: type: string description: '* c100_evidence_absent - No Increased Negative Media Coverage * c200_evidence_present - Increased Negative Media Coverage' enum: - c100_evidence_absent - c200_evidence_present x-enum-descriptions: - No Increased Negative Media Coverage - Increased Negative Media Coverage x-cb-field-enum-values: - value: c100_evidence_absent description: No Increased Negative Media Coverage - value: c200_evidence_present description: Increased Negative Media Coverage x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes organization: type: object allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts partnership_announcements: type: array items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all probability_score: type: number format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq probability_score_timeseries: type: object properties: months_00_to_05: type: number format: double x-cb-field-type: decimal x-cb-searchable: false x-cb-search-operators: [] months_06_to_11: type: number format: double x-cb-field-type: decimal x-cb-searchable: false x-cb-search-operators: [] months_12_to_24: type: number format: double x-cb-field-type: decimal x-cb-searchable: false x-cb-search-operators: [] months_24_plus: type: number format: double x-cb-field-type: decimal x-cb-searchable: false x-cb-search-operators: [] x-cb-field-type: properties x-cb-searchable: false x-cb-search-operators: [] probability_tier: type: string description: 'The predicted probability of this organization closing is divided into distinct tiers that quantify the likelihood of this event. * p100_positive_high - Very Likely * p200_positive_low - Probable * p300_neutral - Uncertain * p400_negative_low - Doubtful * p500_negative_high - Very Unlikely' enum: - p100_positive_high - p200_positive_low - p300_neutral - p400_negative_low - p500_negative_high x-enum-descriptions: - Very Likely - Probable - Uncertain - Doubtful - Very Unlikely x-cb-field-enum-values: - value: p100_positive_high description: Very Likely - value: p200_positive_low description: Probable - value: p300_neutral description: Uncertain - value: p400_negative_low description: Doubtful - value: p500_negative_high description: Very Unlikely x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes product_launches: type: array items: $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes AcquisitionFieldId_3: type: string description: Acquisition field ids enum: - acquiree_categories - acquiree_funding_total - acquiree_identifier - acquiree_last_funding_type - acquiree_locations - acquiree_num_funding_rounds - acquiree_revenue_range - acquiree_short_description - acquirer_categories - acquirer_funding_stage - acquirer_funding_total - acquirer_identifier - acquirer_locations - acquirer_num_funding_rounds - acquirer_revenue_range - acquirer_short_description - acquisition_type - announced_on - completed_on - created_at - disposition_of_acquired - entity_def_id - identifier - permalink - price - rank - rank_acquisition - sentiment - short_description - status - terms - updated_at - uuid IpoPrediction: type: object required: - identifier properties: created_at: type: string description: Time of Creation format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: 'Entity Def Type * ipo_prediction - IPO Prediction' enum: - ipo_prediction x-enum-descriptions: - IPO Prediction x-cb-field-enum-values: - value: ipo_prediction description: IPO Prediction x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes example_funding_round: type: object description: An example of a similar company in the same industry that had a Funding Round in the last 6 months allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts example_ipo: type: object description: An example of a similar company in the same industry that had an IPO in the last 6 months allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts generated_on: type: string description: Date on which this IPO Prediction was generated format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte growth_insight: type: object description: The Growth Insight linked to this IPO Prediction. allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts identifier: type: object description: IPO Prediction Title allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts key_employee_change: type: object description: There has been a change to the executive team's composition (hire, departure, or promotion) allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts key_leadership_hire: type: object description: A new C-level Officer (CXO) was hired in the last 12 months allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts media_sentiment: type: string description: 'A sudden increase in media coverage with positive sentiment in the last 12 months * c100_evidence_absent - No Increased Positive Media Coverage * c200_evidence_present - Increased Positive Media Coverage' enum: - c100_evidence_absent - c200_evidence_present x-enum-descriptions: - No Increased Positive Media Coverage - Increased Positive Media Coverage x-cb-field-enum-values: - value: c100_evidence_absent description: No Increased Positive Media Coverage - value: c200_evidence_present description: Increased Positive Media Coverage x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes organization: type: object description: Unique identifier for the organization associated with this IPO prediction allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts probability_score: type: number description: The predicted probability that this Organization will IPO format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq probability_score_timeseries: type: object properties: months_00_to_05: type: number format: double x-cb-field-type: decimal x-cb-searchable: false x-cb-search-operators: [] months_06_to_11: type: number format: double x-cb-field-type: decimal x-cb-searchable: false x-cb-search-operators: [] months_12_to_24: type: number format: double x-cb-field-type: decimal x-cb-searchable: false x-cb-search-operators: [] months_24_plus: type: number format: double x-cb-field-type: decimal x-cb-searchable: false x-cb-search-operators: [] x-cb-field-type: properties x-cb-searchable: false x-cb-search-operators: [] probability_tier: type: string description: 'The predicted probability of an IPO for this organization is divided into distinct tiers that quantify the likelihood of this event. * p100_positive_high - Very Likely * p200_positive_low - Probable * p300_neutral - Uncertain * p400_negative_low - Doubtful * p500_negative_high - Very Unlikely' enum: - p100_positive_high - p200_positive_low - p300_neutral - p400_negative_low - p500_negative_high x-enum-descriptions: - Very Likely - Probable - Uncertain - Doubtful - Very Unlikely x-cb-field-enum-values: - value: p100_positive_high description: Very Likely - value: p200_positive_low description: Probable - value: p300_neutral description: Uncertain - value: p400_negative_low description: Doubtful - value: p500_negative_high description: Very Unlikely x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes unicorn_status: type: string description: 'Achieved unicorn status in the last 12 months * c100_evidence_absent - Has Not Achieved Unicorn Status * c200_evidence_present - Has Achieved Unicorn Status' enum: - c100_evidence_absent - c200_evidence_present x-enum-descriptions: - Has Not Achieved Unicorn Status - Has Achieved Unicorn Status x-cb-field-enum-values: - value: c100_evidence_absent description: Has Not Achieved Unicorn Status - value: c200_evidence_present description: Has Achieved Unicorn Status x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes updated_at: type: string description: Time of Update format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string description: UUID format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes PartnershipAnnouncement_2: type: object required: - identifier properties: created_at: type: string description: Time of Creation format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte description: type: string description: Brief context summary maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] entity_def_id: type: string description: 'Entity Def Type * partnership_announcement - Partnership Announcement' enum: - partnership_announcement x-enum-descriptions: - Partnership Announcement x-cb-field-enum-values: - value: partnership_announcement description: Partnership Announcement x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes identifier: type: object description: Partnership announcement identifier allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts key_event_date: type: string description: Date when the news article was posted format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte organization: type: object description: Organization that had a partnership announcement mentioned allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts press_reference_link: type: object description: Title of the news article allOf: - $ref: '#/components/schemas/Link' x-cb-field-type: link x-cb-searchable: false x-cb-search-operators: [] sentiment: type: string description: 'Sentiment of the news article(s) that mention this partnership announcement * c100_positive - Positive * c200_neutral - Neutral * c300_negative - Negative' enum: - c100_positive - c200_neutral - c300_negative x-enum-descriptions: - Positive - Neutral - Negative x-cb-field-enum-values: - value: c100_positive description: Positive - value: c200_neutral description: Neutral - value: c300_negative description: Negative x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes updated_at: type: string description: Time of Update format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string description: UUID format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes MarketInsight_2: type: object required: - identifier properties: created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte direction: type: string description: '* c100_growing - Growing * c200_stable - Stable * c300_declining - Declining' enum: - c100_growing - c200_stable - c300_declining x-enum-descriptions: - Growing - Stable - Declining x-cb-field-enum-values: - value: c100_growing description: Growing - value: c200_stable description: Stable - value: c300_declining description: Declining x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes entity_def_id: type: string description: 'Market Insight * market_insight - Market Insight' enum: - market_insight x-enum-descriptions: - Market Insight x-cb-field-enum-values: - value: market_insight description: Market Insight x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes generated_on: type: string format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte identifier: type: object description: Market Insight allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts subject: type: object description: Industry Collection Type allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes AcquisitionPrediction: type: object required: - identifier properties: created_at: type: string description: Time of Creation format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: 'Entity Def Type * acquisition_prediction - Acquisition Prediction' enum: - acquisition_prediction x-enum-descriptions: - Acquisition Prediction x-cb-field-enum-values: - value: acquisition_prediction description: Acquisition Prediction x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes example_acquisition: type: object description: An example of a similar company in the same industry that was acquired in the last 6 months allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts generated_on: type: string description: Date on which this Acquisition Prediction was generated format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte growth_insight: type: object description: The Growth Insight linked to this Acquisition Prediction. allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts identifier: type: object description: Acquisition Prediction Title allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts key_employee_change: type: object description: There has been a change to the executive team's composition (hire, departure, or promotion) allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts key_leadership_hire: type: object description: A new C-level Officer (CXO) was hired in the last 12 months allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts organization: type: object description: Unique identifier for the organization associated with this acquisition prediction allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts partnership_announcement: type: object description: A new strategic partnership occurred in the last 12 months allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts probability_score: type: number description: The predicted probability that this Organization will be acquired format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq probability_score_timeseries: type: object properties: months_00_to_05: type: number format: double x-cb-field-type: decimal x-cb-searchable: false x-cb-search-operators: [] months_06_to_11: type: number format: double x-cb-field-type: decimal x-cb-searchable: false x-cb-search-operators: [] months_12_to_24: type: number format: double x-cb-field-type: decimal x-cb-searchable: false x-cb-search-operators: [] months_24_plus: type: number format: double x-cb-field-type: decimal x-cb-searchable: false x-cb-search-operators: [] x-cb-field-type: properties x-cb-searchable: false x-cb-search-operators: [] probability_tier: type: string description: 'The predicted probability of this organization getting acquired is divided into distinct tiers that quantify the likelihood of this event. * p100_positive_high - Very Likely * p200_positive_low - Probable * p300_neutral - Uncertain * p400_negative_low - Doubtful * p500_negative_high - Very Unlikely' enum: - p100_positive_high - p200_positive_low - p300_neutral - p400_negative_low - p500_negative_high x-enum-descriptions: - Very Likely - Probable - Uncertain - Doubtful - Very Unlikely x-cb-field-enum-values: - value: p100_positive_high description: Very Likely - value: p200_positive_low description: Probable - value: p300_neutral description: Uncertain - value: p400_negative_low description: Doubtful - value: p500_negative_high description: Very Unlikely x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes runway_speculation: type: object description: Approaching 18-24+ months since the last funding round, the need for capital may be more probable. allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts updated_at: type: string description: Time of Update format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string description: UUID format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes RemainPrivatePrediction: type: object required: - identifier properties: created_at: type: string description: Time of Creation format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: 'Entity Def Type * remain_private_prediction - No Exit Prediction' enum: - remain_private_prediction x-enum-descriptions: - No Exit Prediction x-cb-field-enum-values: - value: remain_private_prediction description: No Exit Prediction x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes example_funding_round: type: object description: An example of a similar company in the same industry that had a Funding Round in the last 6 months allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts example_ipo: type: object description: An example of a similar company in the same industry that had an IPO in the last 6 months allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts generated_on: type: string description: Date on which this No Exit Prediction was generated format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte growth_insight: type: object description: The Growth Insight linked to this No Exit Prediction. allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts identifier: type: object description: No Exit Prediction Title allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts key_employee_change: type: object description: There has been a change to the executive team's composition (hire, departure, or promotion) allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts key_leadership_hire: type: object description: A new C-level Officer (CXO) was hired in the last 12 months allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts media_sentiment: type: string description: 'A sudden increase in media coverage with positive sentiment in the last 12 months * c100_evidence_absent - No Increased Positive Media Coverage * c200_evidence_present - Increased Positive Media Coverage' enum: - c100_evidence_absent - c200_evidence_present x-enum-descriptions: - No Increased Positive Media Coverage - Increased Positive Media Coverage x-cb-field-enum-values: - value: c100_evidence_absent description: No Increased Positive Media Coverage - value: c200_evidence_present description: Increased Positive Media Coverage x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes organization: type: object description: Unique identifier for the organization associated with this No Exit prediction allOf: - $ref: '#/components/schemas/EntityIdentifier_5' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts probability_score: type: number description: The predicted probability that this Organization will remain private format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq probability_tier: type: string description: 'The predicted probability of remaining private for this organization is divided into distinct tiers that quantify the likelihood of this event. * p100_positive_high - Very Likely * p200_positive_low - Probable * p300_neutral - Uncertain * p400_negative_low - Doubtful * p500_negative_high - Very Unlikely' enum: - p100_positive_high - p200_positive_low - p300_neutral - p400_negative_low - p500_negative_high x-enum-descriptions: - Very Likely - Probable - Uncertain - Doubtful - Very Unlikely x-cb-field-enum-values: - value: p100_positive_high description: Very Likely - value: p200_positive_low description: Probable - value: p300_neutral description: Uncertain - value: p400_negative_low description: Doubtful - value: p500_negative_high description: Very Unlikely x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes unicorn_status: type: string description: 'Achieved unicorn status in the last 12 months * c100_evidence_absent - Has Not Achieved Unicorn Status * c200_evidence_present - Has Achieved Unicorn Status' enum: - c100_evidence_absent - c200_evidence_present x-enum-descriptions: - Has Not Achieved Unicorn Status - Has Achieved Unicorn Status x-cb-field-enum-values: - value: c100_evidence_absent description: Has Not Achieved Unicorn Status - value: c200_evidence_present description: Has Achieved Unicorn Status x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes updated_at: type: string description: Time of Update format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string description: UUID format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes EntityIdentifier_6: type: object description: Every entity in the system has a unique identifier that contains all necessary properties to represent it. required: - entity_def_id - uuid properties: entity_def_id: type: string enum: - acquisition - acquisition_prediction - address - category - category_group - closure_prediction - degree - diversity_spotlight - event - event_appearance - fund - funding_prediction - funding_round - growth_prediction - investment - ipo - ipo_prediction - job - layoff_prediction - location - remain_private_prediction - organization - ownership - person - press_reference image_id: type: string maxLength: 255 permalink: type: string maxLength: 255 uuid: type: string description: Universally Unique Identifier format: uuid value: type: string maxLength: 255 OrganizationEntity_6: type: object properties: cards: type: object properties: acquiree_acquisitions: type: array items: $ref: '#/components/schemas/Acquisition' acquirer_acquisitions: type: array items: $ref: '#/components/schemas/Acquisition' acquisition_predictions: type: array items: $ref: '#/components/schemas/AcquisitionPrediction_2' addresses: type: array items: $ref: '#/components/schemas/Address' child_organizations: type: array items: $ref: '#/components/schemas/Organization' child_ownerships: type: array items: $ref: '#/components/schemas/Ownership' closure_predictions: type: array items: $ref: '#/components/schemas/ClosurePrediction_2' event_appearances: type: array items: $ref: '#/components/schemas/EventAppearance' fields: $ref: '#/components/schemas/Organization' founders: type: array items: $ref: '#/components/schemas/Person' funding_predictions: type: array items: $ref: '#/components/schemas/FundingPrediction_2' growth_predictions: type: array items: $ref: '#/components/schemas/GrowthPrediction_2' headquarters_address: type: array items: $ref: '#/components/schemas/Address' investors: type: array items: $ref: '#/components/schemas/Principal' ipo_predictions: type: array items: $ref: '#/components/schemas/IpoPrediction_2' ipos: type: array items: $ref: '#/components/schemas/Ipo' jobs: type: array items: $ref: '#/components/schemas/Job' layoff_predictions: type: array items: $ref: '#/components/schemas/LayoffPrediction_2' parent_organization: type: array items: $ref: '#/components/schemas/Organization' parent_ownership: type: array items: $ref: '#/components/schemas/Ownership' participated_funding_rounds: type: array items: $ref: '#/components/schemas/FundingRound' participated_funds: type: array items: $ref: '#/components/schemas/Fund' participated_investments: type: array items: $ref: '#/components/schemas/Investment' press_references: type: array items: $ref: '#/components/schemas/PressReference' raised_funding_rounds: type: array items: $ref: '#/components/schemas/FundingRound' raised_funds: type: array items: $ref: '#/components/schemas/Fund' raised_investments: type: array items: $ref: '#/components/schemas/Investment' remain_private_prediction: type: array items: $ref: '#/components/schemas/RemainPrivatePrediction_2' properties: $ref: '#/components/schemas/Organization' LayoffPrediction_2: type: object required: - identifier properties: awards: type: array description: Awards & Recognition items: $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* layoff_prediction - Layoff Prediction' enum: - layoff_prediction x-enum-descriptions: - Layoff Prediction x-cb-field-enum-values: - value: layoff_prediction description: Layoff Prediction x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes example_funding_round: type: object description: Similar Funding Event allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts generated_on: type: string format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte growth_insights: type: array description: Growth Insights items: $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all identifier: type: object description: Layoff prediction identifier allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts key_employee_changes: type: array description: There has been a change to the executive team's composition (hire, departure, or promotion) items: $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all key_leadership_hires: type: array description: Leadership Hires items: $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all layoffs: type: array description: Layoffs items: $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all legal_proceedings: type: array description: Legal Proceedings items: $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all new_offices: type: array description: New Offices items: $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all organization: type: object allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts partnership_announcements: type: array description: Partnership Announcements items: $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all probability_score: type: number format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq probability_tier: type: string description: 'The predicted probability of this organization experiencing a layoff is divided into distinct tiers that quantify the likelihood of this event. * p100_positive_high - Very Likely * p200_positive_low - Probable * p300_neutral - Uncertain * p400_negative_low - Doubtful * p500_negative_high - Very Unlikely' enum: - p100_positive_high - p200_positive_low - p300_neutral - p400_negative_low - p500_negative_high x-enum-descriptions: - Very Likely - Probable - Uncertain - Doubtful - Very Unlikely x-cb-field-enum-values: - value: p100_positive_high description: Very Likely - value: p200_positive_low description: Probable - value: p300_neutral description: Uncertain - value: p400_negative_low description: Doubtful - value: p500_negative_high description: Very Unlikely x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes product_launches: type: array description: Product Launches items: $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all runway_speculation: type: object description: Runway Speculation allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes GrowthPrediction_2: type: object required: - identifier properties: awards: type: array description: Awards items: $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all created_at: type: string description: Time of Creation format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: 'Growth Prediction * growth_prediction - Growth Prediction' enum: - growth_prediction x-enum-descriptions: - Growth Prediction x-cb-field-enum-values: - value: growth_prediction description: Growth Prediction x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes example_funding_round: type: object description: An example of a similar company in the same industry that had a Funding Round in the last 6 months allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts generated_on: type: string description: Date on which this Growth Prediction was generated format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte growth_insight: type: object description: The Growth Insight linked to this Growth Prediction. allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts identifier: type: object description: Growth Prediction Title allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts key_employee_changes: type: array description: There has been a change to the executive team's composition (hire, departure, or promotion) items: $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all key_leadership_hires: type: array description: A new C-level Officer (CXO) was hired in the last 12 months items: $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all layoffs: type: array description: Layoffs items: $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all legal_proceedings: type: array description: Proceedings relating to law, regulation, or compliance items: $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all new_offices: type: array description: New Offices items: $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all organization: type: object description: Unique identifier for the organization associated with this growth prediction allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts partnership_announcements: type: array description: A new strategic partnership occurred in the last 12 months items: $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all probability_score: type: number description: The predicted probability that this organization will exhibit growth format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq probability_tier: type: string description: 'The predicted probability of this organization growing, divided into distinct tiers that quantify the likelihood. * p100_positive_high - Very Likely * p200_positive_low - Probable * p300_neutral - Uncertain * p400_negative_low - Doubtful * p500_negative_high - Very Unlikely' enum: - p100_positive_high - p200_positive_low - p300_neutral - p400_negative_low - p500_negative_high x-enum-descriptions: - Very Likely - Probable - Uncertain - Doubtful - Very Unlikely x-cb-field-enum-values: - value: p100_positive_high description: Very Likely - value: p200_positive_low description: Probable - value: p300_neutral description: Uncertain - value: p400_negative_low description: Doubtful - value: p500_negative_high description: Very Unlikely x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes product_launches: type: array description: A new product or service was launched in the last 12 months items: $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all runway_speculation: type: object description: Approaching 18-24+ months since the last funding round, the need for capital may be more probable. allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts similar_company_acquired: type: object description: Similar Company Acquired allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts similar_company_went_public: type: object description: Similar Company Went Public allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts unicorn_status: type: string description: 'Achieved unicorn status in the last 12 months * c100_evidence_absent - Has Not Achieved Unicorn Status * c200_evidence_present - Has Achieved Unicorn Status' enum: - c100_evidence_absent - c200_evidence_present x-enum-descriptions: - Has Not Achieved Unicorn Status - Has Achieved Unicorn Status x-cb-field-enum-values: - value: c100_evidence_absent description: Has Not Achieved Unicorn Status - value: c200_evidence_present description: Has Achieved Unicorn Status x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes updated_at: type: string description: Time of Update format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string description: UUID format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes Location_3: type: object required: - identifier properties: country_code: type: string description: Short alphabetic or numeric geographical codes that represent countries (e.g. TWN, USA, ZAF) maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] country_code_ext: type: string maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] created_at: type: string description: Created At format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* location - Location' enum: - location x-enum-descriptions: - Location x-cb-field-enum-values: - value: location description: Location x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes facet_ids: type: array description: Type of location (e.g. City, Continent, Regional Area) items: type: string x-cb-field-type: enum_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all groups: type: array description: Regional areas this location belongs to (e.g. San Francisco Bay Area, Silicon Valley) items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all identifier: type: object description: Short location name (e.g. Japan, San Francisco, Europe) allOf: - $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts location_type: type: string description: 'Type of location (e.g. City, Continent, Regional Area) * city - City * continent - Continent * country - Country * group - Regional Area * region - Region' enum: - city - region - country - continent - group x-enum-descriptions: - City - Region - Country - Continent - Regional Area x-cb-field-enum-values: - value: city description: City - value: region description: Region - value: country description: Country - value: continent description: Continent - value: group description: Regional Area x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes locations: type: array description: Full location name (e.g. Denver, Colorado, United States, North America) items: $ref: '#/components/schemas/LocationIdentifier' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all name: type: string maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] permalink: type: string maxLength: 255 x-cb-field-type: permalink x-cb-searchable: false x-cb-search-operators: [] permalink_aliases: type: array description: These are the alternative aliases to the primary permalink of the Organization items: type: string maxLength: 255 x-cb-field-type: text_exact_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all region_code: type: string description: Region code used to define location maxLength: 8192 x-cb-field-type: text_blob x-cb-searchable: false x-cb-search-operators: [] short_description: type: string description: Description maxLength: 8192 x-cb-field-type: text_long x-cb-searchable: true x-cb-search-operators: - blank - contains - not_contains updated_at: type: string description: Updated At format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes FundingPrediction_2: type: object required: - identifier properties: created_at: type: string description: Time of Creation format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: 'Entity Def Type * funding_prediction - Funding Prediction' enum: - funding_prediction x-enum-descriptions: - Funding Prediction x-cb-field-enum-values: - value: funding_prediction description: Funding Prediction x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes example_funding_round: type: object description: An example of a similar company in the same industry that had a Funding Round in the last 6 months allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts generated_on: type: string description: Date on which this Funding Prediction was generated format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte growth_insight: type: object description: The Growth Insight linked to this Funding Prediction. allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts identifier: type: object description: Funding Prediction Title allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts key_employee_change: type: object description: There has been a change to the executive team's composition (hire, departure, or promotion) allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts key_leadership_hire: type: object description: A new C-level Officer (CXO) was hired in the last 12 months allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts organization: type: object description: Unique identifier for the organization associated with this funding prediction allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts partnership_announcement: type: object description: A new strategic partnership occurred in the last 12 months allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts probability_score: type: number description: The predicted probability that this Organization will receive funding format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq probability_score_timeseries: type: object properties: months_00_to_05: type: number format: double x-cb-field-type: decimal x-cb-searchable: false x-cb-search-operators: [] months_06_to_11: type: number format: double x-cb-field-type: decimal x-cb-searchable: false x-cb-search-operators: [] months_12_to_24: type: number format: double x-cb-field-type: decimal x-cb-searchable: false x-cb-search-operators: [] months_24_plus: type: number format: double x-cb-field-type: decimal x-cb-searchable: false x-cb-search-operators: [] x-cb-field-type: properties x-cb-searchable: false x-cb-search-operators: [] probability_tier: type: string description: 'The predicted probability of this organization raising funds is divided into distinct tiers that quantify the likelihood of this event. * p100_positive_high - Very Likely * p200_positive_low - Probable * p300_neutral - Uncertain * p400_negative_low - Doubtful * p500_negative_high - Very Unlikely' enum: - p100_positive_high - p200_positive_low - p300_neutral - p400_negative_low - p500_negative_high x-enum-descriptions: - Very Likely - Probable - Uncertain - Doubtful - Very Unlikely x-cb-field-enum-values: - value: p100_positive_high description: Very Likely - value: p200_positive_low description: Probable - value: p300_neutral description: Uncertain - value: p400_negative_low description: Doubtful - value: p500_negative_high description: Very Unlikely x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes product_launch: type: object description: A new product or service was launched in the last 12 months allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts runway_speculation: type: object description: Approaching 18-24+ months since the last funding round, the need for capital may be more probable. allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts unicorn_status: type: string description: 'Achieved unicorn status in the last 12 months * c100_evidence_absent - Has Not Achieved Unicorn Status * c200_evidence_present - Has Achieved Unicorn Status' enum: - c100_evidence_absent - c200_evidence_present x-enum-descriptions: - Has Not Achieved Unicorn Status - Has Achieved Unicorn Status x-cb-field-enum-values: - value: c100_evidence_absent description: Has Not Achieved Unicorn Status - value: c200_evidence_present description: Has Achieved Unicorn Status x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes updated_at: type: string description: Time of Update format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string description: UUID format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes ClosurePrediction_2: type: object required: - identifier properties: addresses: type: array items: $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all awards: type: array items: $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all created_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: '* closure_prediction - Closure Prediction' enum: - closure_prediction x-enum-descriptions: - Closure Prediction x-cb-field-enum-values: - value: closure_prediction description: Closure Prediction x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes generated_on: type: string format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte growth_insights: type: array items: $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all identifier: type: object description: Closure Prediction identifier allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts key_employee_changes: type: array items: $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all layoffs: type: array items: $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all legal_proceedings: type: array items: $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all media_sentiment: type: string description: '* c100_evidence_absent - No Increased Negative Media Coverage * c200_evidence_present - Increased Negative Media Coverage' enum: - c100_evidence_absent - c200_evidence_present x-enum-descriptions: - No Increased Negative Media Coverage - Increased Negative Media Coverage x-cb-field-enum-values: - value: c100_evidence_absent description: No Increased Negative Media Coverage - value: c200_evidence_present description: Increased Negative Media Coverage x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes organization: type: object allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts partnership_announcements: type: array items: $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all probability_score: type: number format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq probability_score_timeseries: type: object properties: months_00_to_05: type: number format: double x-cb-field-type: decimal x-cb-searchable: false x-cb-search-operators: [] months_06_to_11: type: number format: double x-cb-field-type: decimal x-cb-searchable: false x-cb-search-operators: [] months_12_to_24: type: number format: double x-cb-field-type: decimal x-cb-searchable: false x-cb-search-operators: [] months_24_plus: type: number format: double x-cb-field-type: decimal x-cb-searchable: false x-cb-search-operators: [] x-cb-field-type: properties x-cb-searchable: false x-cb-search-operators: [] probability_tier: type: string description: 'The predicted probability of this organization closing is divided into distinct tiers that quantify the likelihood of this event. * p100_positive_high - Very Likely * p200_positive_low - Probable * p300_neutral - Uncertain * p400_negative_low - Doubtful * p500_negative_high - Very Unlikely' enum: - p100_positive_high - p200_positive_low - p300_neutral - p400_negative_low - p500_negative_high x-enum-descriptions: - Very Likely - Probable - Uncertain - Doubtful - Very Unlikely x-cb-field-enum-values: - value: p100_positive_high description: Very Likely - value: p200_positive_low description: Probable - value: p300_neutral description: Uncertain - value: p400_negative_low description: Doubtful - value: p500_negative_high description: Very Unlikely x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes product_launches: type: array items: $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier_multi x-cb-searchable: true x-cb-search-operators: - blank - includes - includes_all - not_includes - not_includes_all updated_at: type: string format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes IpoPrediction_2: type: object required: - identifier properties: created_at: type: string description: Time of Creation format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: 'Entity Def Type * ipo_prediction - IPO Prediction' enum: - ipo_prediction x-enum-descriptions: - IPO Prediction x-cb-field-enum-values: - value: ipo_prediction description: IPO Prediction x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes example_funding_round: type: object description: An example of a similar company in the same industry that had a Funding Round in the last 6 months allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts example_ipo: type: object description: An example of a similar company in the same industry that had an IPO in the last 6 months allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts generated_on: type: string description: Date on which this IPO Prediction was generated format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte growth_insight: type: object description: The Growth Insight linked to this IPO Prediction. allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts identifier: type: object description: IPO Prediction Title allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts key_employee_change: type: object description: There has been a change to the executive team's composition (hire, departure, or promotion) allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts key_leadership_hire: type: object description: A new C-level Officer (CXO) was hired in the last 12 months allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts media_sentiment: type: string description: 'A sudden increase in media coverage with positive sentiment in the last 12 months * c100_evidence_absent - No Increased Positive Media Coverage * c200_evidence_present - Increased Positive Media Coverage' enum: - c100_evidence_absent - c200_evidence_present x-enum-descriptions: - No Increased Positive Media Coverage - Increased Positive Media Coverage x-cb-field-enum-values: - value: c100_evidence_absent description: No Increased Positive Media Coverage - value: c200_evidence_present description: Increased Positive Media Coverage x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes organization: type: object description: Unique identifier for the organization associated with this IPO prediction allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts probability_score: type: number description: The predicted probability that this Organization will IPO format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq probability_score_timeseries: type: object properties: months_00_to_05: type: number format: double x-cb-field-type: decimal x-cb-searchable: false x-cb-search-operators: [] months_06_to_11: type: number format: double x-cb-field-type: decimal x-cb-searchable: false x-cb-search-operators: [] months_12_to_24: type: number format: double x-cb-field-type: decimal x-cb-searchable: false x-cb-search-operators: [] months_24_plus: type: number format: double x-cb-field-type: decimal x-cb-searchable: false x-cb-search-operators: [] x-cb-field-type: properties x-cb-searchable: false x-cb-search-operators: [] probability_tier: type: string description: 'The predicted probability of an IPO for this organization is divided into distinct tiers that quantify the likelihood of this event. * p100_positive_high - Very Likely * p200_positive_low - Probable * p300_neutral - Uncertain * p400_negative_low - Doubtful * p500_negative_high - Very Unlikely' enum: - p100_positive_high - p200_positive_low - p300_neutral - p400_negative_low - p500_negative_high x-enum-descriptions: - Very Likely - Probable - Uncertain - Doubtful - Very Unlikely x-cb-field-enum-values: - value: p100_positive_high description: Very Likely - value: p200_positive_low description: Probable - value: p300_neutral description: Uncertain - value: p400_negative_low description: Doubtful - value: p500_negative_high description: Very Unlikely x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes unicorn_status: type: string description: 'Achieved unicorn status in the last 12 months * c100_evidence_absent - Has Not Achieved Unicorn Status * c200_evidence_present - Has Achieved Unicorn Status' enum: - c100_evidence_absent - c200_evidence_present x-enum-descriptions: - Has Not Achieved Unicorn Status - Has Achieved Unicorn Status x-cb-field-enum-values: - value: c100_evidence_absent description: Has Not Achieved Unicorn Status - value: c200_evidence_present description: Has Achieved Unicorn Status x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes updated_at: type: string description: Time of Update format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string description: UUID format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes AcquisitionPrediction_2: type: object required: - identifier properties: created_at: type: string description: Time of Creation format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: 'Entity Def Type * acquisition_prediction - Acquisition Prediction' enum: - acquisition_prediction x-enum-descriptions: - Acquisition Prediction x-cb-field-enum-values: - value: acquisition_prediction description: Acquisition Prediction x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes example_acquisition: type: object description: An example of a similar company in the same industry that was acquired in the last 6 months allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts generated_on: type: string description: Date on which this Acquisition Prediction was generated format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte growth_insight: type: object description: The Growth Insight linked to this Acquisition Prediction. allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts identifier: type: object description: Acquisition Prediction Title allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts key_employee_change: type: object description: There has been a change to the executive team's composition (hire, departure, or promotion) allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts key_leadership_hire: type: object description: A new C-level Officer (CXO) was hired in the last 12 months allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts organization: type: object description: Unique identifier for the organization associated with this acquisition prediction allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts partnership_announcement: type: object description: A new strategic partnership occurred in the last 12 months allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts probability_score: type: number description: The predicted probability that this Organization will be acquired format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq probability_score_timeseries: type: object properties: months_00_to_05: type: number format: double x-cb-field-type: decimal x-cb-searchable: false x-cb-search-operators: [] months_06_to_11: type: number format: double x-cb-field-type: decimal x-cb-searchable: false x-cb-search-operators: [] months_12_to_24: type: number format: double x-cb-field-type: decimal x-cb-searchable: false x-cb-search-operators: [] months_24_plus: type: number format: double x-cb-field-type: decimal x-cb-searchable: false x-cb-search-operators: [] x-cb-field-type: properties x-cb-searchable: false x-cb-search-operators: [] probability_tier: type: string description: 'The predicted probability of this organization getting acquired is divided into distinct tiers that quantify the likelihood of this event. * p100_positive_high - Very Likely * p200_positive_low - Probable * p300_neutral - Uncertain * p400_negative_low - Doubtful * p500_negative_high - Very Unlikely' enum: - p100_positive_high - p200_positive_low - p300_neutral - p400_negative_low - p500_negative_high x-enum-descriptions: - Very Likely - Probable - Uncertain - Doubtful - Very Unlikely x-cb-field-enum-values: - value: p100_positive_high description: Very Likely - value: p200_positive_low description: Probable - value: p300_neutral description: Uncertain - value: p400_negative_low description: Doubtful - value: p500_negative_high description: Very Unlikely x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes runway_speculation: type: object description: Approaching 18-24+ months since the last funding round, the need for capital may be more probable. allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts updated_at: type: string description: Time of Update format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string description: UUID format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes RemainPrivatePrediction_2: type: object required: - identifier properties: created_at: type: string description: Time of Creation format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte entity_def_id: type: string description: 'Entity Def Type * remain_private_prediction - No Exit Prediction' enum: - remain_private_prediction x-enum-descriptions: - No Exit Prediction x-cb-field-enum-values: - value: remain_private_prediction description: No Exit Prediction x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes example_funding_round: type: object description: An example of a similar company in the same industry that had a Funding Round in the last 6 months allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts example_ipo: type: object description: An example of a similar company in the same industry that had an IPO in the last 6 months allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts generated_on: type: string description: Date on which this No Exit Prediction was generated format: date x-cb-field-type: date x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte growth_insight: type: object description: The Growth Insight linked to this No Exit Prediction. allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts identifier: type: object description: No Exit Prediction Title allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts key_employee_change: type: object description: There has been a change to the executive team's composition (hire, departure, or promotion) allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts key_leadership_hire: type: object description: A new C-level Officer (CXO) was hired in the last 12 months allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts media_sentiment: type: string description: 'A sudden increase in media coverage with positive sentiment in the last 12 months * c100_evidence_absent - No Increased Positive Media Coverage * c200_evidence_present - Increased Positive Media Coverage' enum: - c100_evidence_absent - c200_evidence_present x-enum-descriptions: - No Increased Positive Media Coverage - Increased Positive Media Coverage x-cb-field-enum-values: - value: c100_evidence_absent description: No Increased Positive Media Coverage - value: c200_evidence_present description: Increased Positive Media Coverage x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes organization: type: object description: Unique identifier for the organization associated with this No Exit prediction allOf: - $ref: '#/components/schemas/EntityIdentifier_6' x-cb-field-type: identifier x-cb-searchable: true x-cb-search-operators: - blank - contains - eq - includes - not_contains - not_eq - not_includes - starts probability_score: type: number description: The predicted probability that this Organization will remain private format: double x-cb-field-type: decimal x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gt - gte - lt - lte - not_eq probability_tier: type: string description: 'The predicted probability of remaining private for this organization is divided into distinct tiers that quantify the likelihood of this event. * p100_positive_high - Very Likely * p200_positive_low - Probable * p300_neutral - Uncertain * p400_negative_low - Doubtful * p500_negative_high - Very Unlikely' enum: - p100_positive_high - p200_positive_low - p300_neutral - p400_negative_low - p500_negative_high x-enum-descriptions: - Very Likely - Probable - Uncertain - Doubtful - Very Unlikely x-cb-field-enum-values: - value: p100_positive_high description: Very Likely - value: p200_positive_low description: Probable - value: p300_neutral description: Uncertain - value: p400_negative_low description: Doubtful - value: p500_negative_high description: Very Unlikely x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes unicorn_status: type: string description: 'Achieved unicorn status in the last 12 months * c100_evidence_absent - Has Not Achieved Unicorn Status * c200_evidence_present - Has Achieved Unicorn Status' enum: - c100_evidence_absent - c200_evidence_present x-enum-descriptions: - Has Not Achieved Unicorn Status - Has Achieved Unicorn Status x-cb-field-enum-values: - value: c100_evidence_absent description: Has Not Achieved Unicorn Status - value: c200_evidence_present description: Has Achieved Unicorn Status x-cb-field-type: enum x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes updated_at: type: string description: Time of Update format: date-time x-cb-field-type: datetime x-cb-searchable: true x-cb-search-operators: - between - blank - eq - gte - lte uuid: type: string description: UUID format: uuid x-cb-field-type: uuid x-cb-searchable: true x-cb-search-operators: - blank - eq - includes - not_eq - not_includes responses: EntityLookupDegreeResponse: description: Single Degree result content: application/json: schema: $ref: '#/components/schemas/DegreeEntity' EntityLookupLocationResponse: description: Single Location result content: application/json: schema: $ref: '#/components/schemas/LocationEntity' OwnershipCardLookupResponse: description: Results are identifiers matching the search query content: application/json: schema: $ref: '#/components/schemas/OwnershipEntity' EntityLookupInvestmentResponse: description: Single Investment result content: application/json: schema: $ref: '#/components/schemas/InvestmentEntity' DegreeCardLookupResponse: description: Results are identifiers matching the search query content: application/json: schema: $ref: '#/components/schemas/DegreeEntity' EntityLookupJobResponse: description: Single Job result content: application/json: schema: $ref: '#/components/schemas/JobEntity' EntityLookupAcquisitionResponse: description: Single Acquisition result content: application/json: schema: $ref: '#/components/schemas/AcquisitionEntity' AcquisitionCardLookupResponse: description: Results are identifiers matching the search query content: application/json: schema: $ref: '#/components/schemas/AcquisitionEntity' EntityLookupFundResponse: description: Single Fund result content: application/json: schema: $ref: '#/components/schemas/FundEntity' AddressCardLookupResponse: description: Results are identifiers matching the search query content: application/json: schema: $ref: '#/components/schemas/AddressEntity' EventAppearanceCardLookupResponse: description: Results are identifiers matching the search query content: application/json: schema: $ref: '#/components/schemas/EventAppearanceEntity' EntityLookupOwnershipResponse: description: Single Ownership result content: application/json: schema: $ref: '#/components/schemas/OwnershipEntity' PersonCardLookupResponse: description: Results are identifiers matching the search query content: application/json: schema: $ref: '#/components/schemas/PersonEntity' EntityLookupPressReferenceResponse: description: Single PressReference result content: application/json: schema: $ref: '#/components/schemas/PressReferenceEntity' EntityLookupEventAppearanceResponse: description: Single EventAppearance result content: application/json: schema: $ref: '#/components/schemas/EventAppearanceEntity' GenericInternalServerError: description: Request Failed content: application/json: schema: $ref: '#/components/schemas/Errors' FundCardLookupResponse: description: Results are identifiers matching the search query content: application/json: schema: $ref: '#/components/schemas/FundEntity' IpoCardLookupResponse: description: Results are identifiers matching the search query content: application/json: schema: $ref: '#/components/schemas/IpoEntity' EntityLookupIpoResponse: description: Single Ipo result content: application/json: schema: $ref: '#/components/schemas/IpoEntity' InvestmentCardLookupResponse: description: Results are identifiers matching the search query content: application/json: schema: $ref: '#/components/schemas/InvestmentEntity' EntityLookupAddressResponse: description: Single Address result content: application/json: schema: $ref: '#/components/schemas/AddressEntity' EntityLookupCategoryGroupResponse: description: Single CategoryGroup result content: application/json: schema: $ref: '#/components/schemas/CategoryGroupEntity' FundingRoundCardLookupResponse: description: Results are identifiers matching the search query content: application/json: schema: $ref: '#/components/schemas/FundingRoundEntity' OrganizationCardLookupResponse: description: Results are identifiers matching the search query content: application/json: schema: $ref: '#/components/schemas/OrganizationEntity' EntityLookupPersonResponse: description: Single Person result content: application/json: schema: $ref: '#/components/schemas/PersonEntity' EntityLookupDiversitySpotlightResponse: description: Single DiversitySpotlight result content: application/json: schema: $ref: '#/components/schemas/DiversitySpotlightEntity' EntityLookupCategoryResponse: description: Single Category result content: application/json: schema: $ref: '#/components/schemas/CategoryEntity' GenericBadRequestError: description: Bad Request content: application/json: schema: $ref: '#/components/schemas/Errors' EntityLookupFundingRoundResponse: description: Single FundingRound result content: application/json: schema: $ref: '#/components/schemas/FundingRoundEntity' GenericNotFoundError: description: Not Found content: application/json: schema: $ref: '#/components/schemas/Errors' JobCardLookupResponse: description: Results are identifiers matching the search query content: application/json: schema: $ref: '#/components/schemas/JobEntity' EntityLookupOrganizationResponse: description: Single Organization result content: application/json: schema: $ref: '#/components/schemas/OrganizationEntity' EntityLookupPrincipalResponse: description: Single Principal result content: application/json: schema: $ref: '#/components/schemas/PrincipalEntity' EntityLookupEventResponse: description: Single Event result content: application/json: schema: $ref: '#/components/schemas/EventEntity' EventCardLookupResponse: description: Results are identifiers matching the search query content: application/json: schema: $ref: '#/components/schemas/EventEntity' EntityLookupProductResponse: description: Single Product result content: application/json: schema: $ref: '#/components/schemas/ProductEntity' EntityLookupProductSimilarityResponse: description: Single ProductSimilarity result content: application/json: schema: $ref: '#/components/schemas/ProductSimilarityEntity' EntityLookupLayoffResponse: description: Single Layoff result content: application/json: schema: $ref: '#/components/schemas/LayoffEntity' EntityLookupLegalProceedingResponse: description: Single LegalProceeding result content: application/json: schema: $ref: '#/components/schemas/LegalProceedingEntity' EntityLookupGrowthInsightResponse: description: Single GrowthInsight result content: application/json: schema: $ref: '#/components/schemas/GrowthInsightEntity' EntityLookupResearchInsightResponse: description: Single ResearchInsight result content: application/json: schema: $ref: '#/components/schemas/ResearchInsightEntity' MarketInsightCardLookupResponse: description: Results are identifiers matching the search query content: application/json: schema: $ref: '#/components/schemas/MarketInsightEntity' MicroCategoryCardLookupResponse: description: Results are identifiers matching the search query content: application/json: schema: $ref: '#/components/schemas/MicroCategoryEntity' CategoryCardLookupResponse: description: Results are identifiers matching the search query content: application/json: schema: $ref: '#/components/schemas/CategoryEntity_2' EntityLookupMarketInsightResponse: description: Single MarketInsight result content: application/json: schema: $ref: '#/components/schemas/MarketInsightEntity' EntityLookupProductLaunchResponse: description: Single ProductLaunch result content: application/json: schema: $ref: '#/components/schemas/ProductLaunchEntity' EntityLookupInvestorInsightResponse: description: Single InvestorInsight result content: application/json: schema: $ref: '#/components/schemas/InvestorInsightEntity' EntityLookupMarketInsightReasonResponse: description: Single MarketInsightReason result content: application/json: schema: $ref: '#/components/schemas/MarketInsightReasonEntity' EntityLookupPartnershipAnnouncementResponse: description: Single PartnershipAnnouncement result content: application/json: schema: $ref: '#/components/schemas/PartnershipAnnouncementEntity' EntityLookupMicroCategoryResponse: description: Single MicroCategory result content: application/json: schema: $ref: '#/components/schemas/MicroCategoryEntity' EntityLookupInvestorMatchResponse: description: Single InvestorMatch result content: application/json: schema: $ref: '#/components/schemas/InvestorMatchEntity' EntityLookupOrgSimilarityResponse: description: Single OrgSimilarity result content: application/json: schema: $ref: '#/components/schemas/OrgSimilarityEntity' EntityLookupKeyEmployeeChangeResponse: description: Single KeyEmployeeChange result content: application/json: schema: $ref: '#/components/schemas/KeyEmployeeChangeEntity' CategoryGroupCardLookupResponse: description: Results are identifiers matching the search query content: application/json: schema: $ref: '#/components/schemas/CategoryGroupEntity_2' EntityLookupCurrentValuationEstimateResponse: description: Single CurrentValuationEstimate result content: application/json: schema: $ref: '#/components/schemas/CurrentValuationEstimateEntity' EntityLookupAwardResponse: description: Single Award result content: application/json: schema: $ref: '#/components/schemas/AwardEntity' EntityLookupGrowthPredictionResponse: description: Single GrowthPrediction result content: application/json: schema: $ref: '#/components/schemas/GrowthPredictionEntity' EntityLookupFundingPredictionResponse: description: Single FundingPrediction result content: application/json: schema: $ref: '#/components/schemas/FundingPredictionEntity' EntityLookupClosurePredictionResponse: description: Single ClosurePrediction result content: application/json: schema: $ref: '#/components/schemas/ClosurePredictionEntity' EntityLookupAcquisitionPredictionResponse: description: Single AcquisitionPrediction result content: application/json: schema: $ref: '#/components/schemas/AcquisitionPredictionEntity' EntityLookupRemainPrivatePredictionResponse: description: Single RemainPrivatePrediction result content: application/json: schema: $ref: '#/components/schemas/RemainPrivatePredictionEntity' CategoryCardLookupResponse_2: description: Results are identifiers matching the search query content: application/json: schema: $ref: '#/components/schemas/CategoryEntity_3' EntityLookupLayoffPredictionResponse: description: Single LayoffPrediction result content: application/json: schema: $ref: '#/components/schemas/LayoffPredictionEntity' EntityLookupIpoPredictionResponse: description: Single IpoPrediction result content: application/json: schema: $ref: '#/components/schemas/IpoPredictionEntity' CategoryGroupCardLookupResponse_2: description: Results are identifiers matching the search query content: application/json: schema: $ref: '#/components/schemas/CategoryGroupEntity_3' parameters: order: name: order in: query description: Field name with order direction (asc/desc) schema: title: order type: string after_id: name: after_id in: query description: Lookup uuid of the last item in the previous page (not required for first page). Used to iterate a card's results starting at the beginning of the ordered set and moving forward. Suitable for implementing "next page" functionality. May not be provided simultaneously with before_id. schema: title: after_id type: string format: uuid entity_id: name: entity_id in: path description: UUID or permalink of desired entity required: true schema: title: entity_id type: string limit: name: limit in: query description: Number of rows to return. Default is 100, min is 1, max is 100. schema: title: limit type: integer card_field_ids: name: card_field_ids in: query description: Card fields to include on the specified card - array of field_id strings in JSON encoded as string schema: title: card_field_ids type: string before_id: name: before_id in: query description: Lookup uuid of the first item in the previous page (not required for first page). Used to iterate a card's results starting at the end of the ordered set and moving backward. Suitable for implementing "previous page" functionality. May not be provided simultaneously with after_id. schema: title: before_id type: string format: uuid securitySchemes: ApiKeyAuthHeader: type: apiKey name: X-cb-user-key in: header externalDocs: description: API Reference doc url: https://data.crunchbase.com/docs x-refined-from: - crunchbase-data-advanced-financials-openapi.yml - crunchbase-data-core-financials-openapi.yml - crunchbase-data-firmographic-openapi.yml - crunchbase-data-insights-openapi.yml - crunchbase-data-predictions-insights-openapi.yml - crunchbase-data-predictions-openapi.yml