Equinix Company Profiles API

Company Profiles Beta

Operations 13

POST /fabric/v4/companyProfiles Create Company Profile #
GET /fabric/v4/companyProfiles/{companyProfileId} Get Company Profile by UUID #
DELETE /fabric/v4/companyProfiles/{companyProfileId} Delete Company Profile #
POST /fabric/v4/companyProfiles/search Search Company Profiles #
GET /fabric/v4/companyProfiles/{companyProfileId}/serviceProfiles Get Service Profiles #
PUT /fabric/v4/companyProfiles/{companyProfileId}/serviceProfiles/{serviceProfileId} Attach Service Profile #
DELETE /fabric/v4/companyProfiles/{companyProfileId}/serviceProfiles/{serviceProfileId} Detach Service Profile #
GET /fabric/v4/companyProfiles/{companyProfileId}/tags Get Tags #
PUT /fabric/v4/companyProfiles/{companyProfileId}/tags/{tagId} Attach Tag #
DELETE /fabric/v4/companyProfiles/{companyProfileId}/tags/{tagId} Detach Tag #
GET /fabric/v4/companyProfiles/{companyProfileId}/privateServices Get Private Services #
PUT /fabric/v4/companyProfiles/{companyProfileId}/privateServices/{privateServiceId} Attach Private Service #
DELETE /fabric/v4/companyProfiles/{companyProfileId}/privateServices/{privateServiceId} Detach Private Service #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/equinix-company-profiles-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

equinix-company-profiles-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Equinix Fabric API v4 Company Profiles API
  description: 'Equinix Fabric is an advanced software-defined interconnection solution that enables you to directly, securely and dynamically connect to distributed infrastructure and digital ecosystems on platform Equinix via a single port, Customers can use Fabric to connect to: </br> 1. Cloud Service Providers - Clouds, network and other service providers.  </br> 2. Enterprises - Other Equinix customers, vendors and partners.  </br> 3. Myself - Another customer instance deployed at Equinix. </br> </br> <b>Integrations (SDKs, Tools) links:</b> </br> <a href="https://github.com/equinix/equinix-sdk-java">Fabric Java SDK</a> </br> <a href="https://github.com/equinix/equinix-sdk-go">Fabric Go SDK</a> </br> <a href="https://github.com/equinix/equinix-sdk-python">Fabric Python SDK</a> </br> <a href="https://registry.terraform.io/providers/equinix/equinix/latest/docs">Equinix Terraform Provider</a> </br> <a href="https://registry.terraform.io/modules/equinix/fabric/equinix/latest">Fabric Terraform Modules</a> </br> <a href="https://www.pulumi.com/registry/packages/equinix/">Equinix Pulumi Provider</a> </br>'
  termsOfService: https://www.equinix.com/about/legal/terms
  contact:
    name: Equinix API Support
    url: https://docs.equinix.com/api-support.htm
  license:
    name: Equinix Inc
    url: https://developer.equinix.com/agreement
  version: '4.28'
servers:
- url: https://api.equinix.com
  description: Equinix Inc
security:
- BearerAuth: []
tags:
- name: Company Profiles
  description: Company Profiles <font color="red"> <sup color='red'>Beta</sup></font>
paths:
  /fabric/v4/companyProfiles:
    post:
      tags:
      - Company Profiles
      summary: Create Company Profile
      description: Create a new company profile <font color="red"> <sup color='red'>Beta</sup></font>
      operationId: createCompanyProfile
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CompanyProfileRequest'
        required: true
      responses:
        '201':
          description: Company profile created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CompanyProfileResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
  /fabric/v4/companyProfiles/{companyProfileId}:
    get:
      tags:
      - Company Profiles
      summary: Get Company Profile by UUID
      description: Get company profile details by UUID <font color="red"> <sup color='red'>Beta</sup></font>
      operationId: getCompanyProfile
      parameters:
      - name: companyProfileId
        in: path
        description: Company Profile UUID
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CompanyProfileResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
    delete:
      tags:
      - Company Profiles
      summary: Delete Company Profile
      description: Delete company profile by UUID <font color="red"> <sup color='red'>Beta</sup></font>
      operationId: deleteCompanyProfile
      parameters:
      - name: companyProfileId
        in: path
        description: Company Profile UUID
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CompanyProfileResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
  /fabric/v4/companyProfiles/search:
    post:
      tags:
      - Company Profiles
      summary: Search Company Profiles
      description: Search company profiles based on filter criteria <font color="red"> <sup color='red'>Beta</sup></font>
      operationId: searchCompanyProfile
      parameters:
      - name: viewPoint
        in: query
        description: Viewpoint for the request, either 'aSide' or 'zSide'
        required: false
        schema:
          type: string
          default: aSide
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CompanyProfileSearchRequest'
        required: true
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CompanyProfileSearchResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
  /fabric/v4/companyProfiles/{companyProfileId}/serviceProfiles:
    get:
      tags:
      - Company Profiles
      summary: Get Service Profiles
      description: Get all service profiles attached to a company profile <font color="red"> <sup color='red'>Beta</sup></font>
      operationId: getCompanyProfileServiceProfiles
      parameters:
      - name: companyProfileId
        in: path
        description: Company Profile UUID
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServiceProfileListResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
  /fabric/v4/companyProfiles/{companyProfileId}/serviceProfiles/{serviceProfileId}:
    put:
      tags:
      - Company Profiles
      summary: Attach Service Profile
      description: Attach a service profile to a company profile <font color="red"> <sup color='red'>Beta</sup></font>
      operationId: attachServiceProfileToProfile
      parameters:
      - name: companyProfileId
        in: path
        description: Company Profile UUID
        required: true
        schema:
          type: string
      - name: serviceProfileId
        in: path
        description: Service Profile UUID
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AttachServiceProfileResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
    delete:
      tags:
      - Company Profiles
      summary: Detach Service Profile
      description: Detach a service profile from a company profile <font color="red"> <sup color='red'>Beta</sup></font>
      operationId: detachServiceProfileFromProfile
      parameters:
      - name: companyProfileId
        in: path
        description: Company Profile UUID
        required: true
        schema:
          type: string
      - name: serviceProfileId
        in: path
        description: Service Profile UUID
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AttachServiceProfileResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
  /fabric/v4/companyProfiles/{companyProfileId}/tags:
    get:
      tags:
      - Company Profiles
      summary: Get Tags
      description: Get all tags attached to a company profile <font color="red"> <sup color='red'>Beta</sup></font>
      operationId: getTags
      parameters:
      - name: companyProfileId
        in: path
        description: Company Profile UUID
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TagListResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
  /fabric/v4/companyProfiles/{companyProfileId}/tags/{tagId}:
    put:
      tags:
      - Company Profiles
      summary: Attach Tag
      description: Attach a tag to a company profile <font color="red"> <sup color='red'>Beta</sup></font>
      operationId: attachTagToProfile
      parameters:
      - name: companyProfileId
        in: path
        description: Company Profile UUID
        required: true
        schema:
          type: string
      - name: tagId
        in: path
        description: Tag UUID
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AttachTagResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
    delete:
      tags:
      - Company Profiles
      summary: Detach Tag
      description: Detach a tag from a company profile <font color="red"> <sup color='red'>Beta</sup></font>
      operationId: detachTagFromProfile
      parameters:
      - name: companyProfileId
        in: path
        description: Company Profile UUID
        required: true
        schema:
          type: string
      - name: tagId
        in: path
        description: Tag UUID
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AttachTagResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
  /fabric/v4/companyProfiles/{companyProfileId}/privateServices:
    get:
      tags:
      - Company Profiles
      summary: Get Private Services
      description: Get all private services attached to a company profile <font color="red"> <sup color='red'>Beta</sup></font>
      operationId: getCompanyProfilePrivateServices
      parameters:
      - name: companyProfileId
        in: path
        description: Company Profile UUID
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PrivateServiceListResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
  /fabric/v4/companyProfiles/{companyProfileId}/privateServices/{privateServiceId}:
    put:
      tags:
      - Company Profiles
      summary: Attach Private Service
      description: Attach a private service to a company profile <font color="red"> <sup color='red'>Beta</sup></font>
      operationId: attachPrivateServiceToProfile
      parameters:
      - name: companyProfileId
        in: path
        description: Company Profile UUID
        required: true
        schema:
          type: string
      - name: privateServiceId
        in: path
        description: Private Service UUID
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AttachPrivateServiceResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
    delete:
      tags:
      - Company Profiles
      summary: Detach Private Service
      description: Detach a private service from a company profile <font color="red"> <sup color='red'>Beta</sup></font>
      operationId: detachPrivateServiceFromProfile
      parameters:
      - name: companyProfileId
        in: path
        description: Company Profile UUID
        required: true
        schema:
          type: string
      - name: privateServiceId
        in: path
        description: Private Service UUID
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AttachPrivateServiceResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorList'
components:
  schemas:
    CompanyProfileRequest:
      required:
      - description
      - name
      - summary
      - type
      type: object
      properties:
        type:
          type: string
          example: COMPANY_PROFILE
        name:
          maxLength: 50
          minLength: 1
          type: string
          example: Equinix
        summary:
          maxLength: 125
          minLength: 1
          type: string
          example: Global interconnection and data center company
        description:
          maxLength: 450
          minLength: 1
          type: string
          example: Equinix, Inc. connects the world's leading businesses to their customers, employees and partners inside the most interconnected data centers.
        notifications:
          type: array
          example:
          - type: CONTACT
            emails:
            - example@example.com
          - type: NOTIFICATION
            emails:
            - example@example.com
          items:
            $ref: '#/components/schemas/Notification'
        webUrl:
          type: string
          example: https://www.equinix.com
        contactUrl:
          type: string
          example: https://www.equinix.com/contact-us
    CompanyProfileSortDirection:
      type: string
      description: Sorting direction
      default: ASC
      enum:
      - DESC
      - ASC
    TagResponse:
      type: object
      properties:
        href:
          type: string
          format: uri
          example: https://api.equinix.com/fabric/v4/tags/18a127ad-9d0c-46e2-a66d-8ed85d1858b0
        uuid:
          type: string
          format: uuid
          example: 18a127ad-9d0c-46e2-a66d-8ed85d1858b0
        type:
          type: string
          example: RESOURCE_TAG
        name:
          type: string
          example: environment
        displayName:
          type: string
          example: Environment
        weight:
          type: integer
          example: 10000
      description: Equinix Fabric Tag Response Object
    AttachServiceProfileResponse:
      required:
      - type
      - uuid
      type: object
      properties:
        href:
          type: string
          description: URL to the attached service profile
          example: https://api.equinix.com/fabric/v4/serviceProfiles/423af68b-42f0-4f2e-9c5c-2fbd44b4b387
        type:
          type: string
          description: Type of the service or attachment
          example: SERVICE_PROFILE
        uuid:
          type: string
          description: Unique identifier for the service profile
          example: 423af68b-42f0-4f2e-9c5c-2fbd44b4b387
        attachmentStatus:
          type: string
          description: Status of the attachment operation
          example: ATTACHED
    CompanyProfileChange:
      type: object
      properties:
        uuid:
          type: string
        type:
          type: string
        status:
          type: string
        createdDateTime:
          type: string
          format: date-time
        updatedDateTime:
          type: string
          format: date-time
        data:
          $ref: '#/components/schemas/CompanyProfileChangeItem'
    CompanyProfileResponse_account:
      type: object
      properties:
        rootOrgId:
          type: string
    PriceError_additionalInfo:
      type: object
      properties:
        property:
          type: string
        reason:
          type: string
    CompanyProfileResponse:
      type: object
      properties:
        href:
          type: string
          example: https://api.equinix.com/fabric/v4/companyProfiles/123e4567-e89b-12d3-a456-426614174000
        uuid:
          type: string
          example: 123e4567-e89b-12d3-a456-426614174000
        type:
          type: string
          example: COMPANY_PROFILE
        name:
          maxLength: 50
          minLength: 1
          type: string
          example: Equinix
        summary:
          maxLength: 125
          minLength: 1
          type: string
          example: Global interconnection and data center company
        description:
          maxLength: 450
          minLength: 1
          type: string
          example: Equinix, Inc. connects the world's leading businesses to their customers, employees and partners inside the most interconnected data centers.
        state:
          $ref: '#/components/schemas/CompanyProfileState'
        account:
          $ref: '#/components/schemas/CompanyProfileResponse_account'
        metros:
          type: array
          example:
          - href: https://api.equinix.com/fabric/v4/metros/SV
            code: SV
            name: Silicon Valley
          items:
            $ref: '#/components/schemas/CompanyMetro'
        logo:
          $ref: '#/components/schemas/CompanyLogo'
        tags:
          type: array
          example:
          - href: https://api.equinix.com/fabric/v4/tags/260af68b-42f0-4f2e-9c5c-2fbd44b4b387
            uuid: 260af68b-42f0-4f2e-9c5c-2fbd44b4b387
          items:
            $ref: '#/components/schemas/TagResponse'
        serviceProfiles:
          type: array
          example:
          - href: https://api.equinix.com/fabric/v4/serviceProfiles/423af68b-42f0-4f2e-9c5c-2fbd44b4b387
            uuid: 423af68b-42f0-4f2e-9c5c-2fbd44b4b387
          items:
            $ref: '#/components/schemas/CompanyServiceProfile'
        privateServices:
          type: array
          example:
          - href: https://api.equinix.com/fabric/v4/privateServices/460af68b-42f0-4f2e-9c5c-2fbd44b4b387
            uuid: 460af68b-42f0-4f2e-9c5c-2fbd44b4b387
          - href: https://api.equinix.com/fabric/v4/privateServices/8a5685a6-063d-41ac-9279-d32431e8d8f6
            uuid: 8a5685a6-063d-41ac-9279-d32431e8d8f6
          items:
            $ref: '#/components/schemas/PrivateService'
        notifications:
          type: array
          example:
          - type: CONTACT
            emails:
            - example@example.com
          - type: NOTIFICATION
            emails:
            - example@example.com
          items:
            $ref: '#/components/schemas/Notification'
        webUrl:
          type: string
          example: https://www.equinix.com
        contactUrl:
          type: string
          example: https://www.equinix.com/contact-us
        change:
          $ref: '#/components/schemas/CompanyProfileChange'
        changeLog:
          $ref: '#/components/schemas/Changelog'
    CompanyProfileSearchFieldName:
      type: string
      description: Searchable field names in company profile
      example: /tags/name
    CompanyProfileChangeItem:
      type: object
    Error:
      required:
      - errorCode
      - errorMessage
      type: object
      properties:
        errorCode:
          pattern: ^EQ-\d{7}$
          type: string
        errorMessage:
          type: string
        correlationId:
          type: string
        details:
          type: string
        help:
          type: string
        additionalInfo:
          type: array
          items:
            $ref: '#/components/schemas/PriceError_additionalInfo'
      description: Error Response with details
    PrivateServiceListResponse:
      type: object
      properties:
        data:
          type: array
          description: List of private services
          example:
          - href: https://api.equinix.com/fabric/v4/privateServices/460af68b-42f0-4f2e-9c5c-2fbd44b4b387
            uuid: 460af68b-42f0-4f2e-9c5c-2fbd44b4b387
          items:
            $ref: '#/components/schemas/PrivateService'
    CompanyProfileSearchRequest:
      type: object
      properties:
        filter:
          $ref: '#/components/schemas/CompanyProfileSearchFilter'
        pagination:
          $ref: '#/components/schemas/Pagination'
        sort:
          $ref: '#/components/schemas/Sort'
    CompanyServiceProfile:
      type: object
      properties:
        href:
          type: string
        uuid:
          type: string
    ErrorList:
      type: array
      description: List of Error Message
      items:
        $ref: '#/components/schemas/Error'
    Changelog:
      type: object
      properties:
        createdBy:
          type: string
          description: Created by User Key
          example: johnsmith
        createdByFullName:
          type: string
          description: Created by User Full Name
          example: John Smith
        createdByEmail:
          type: string
          description: Created by User Email Address
          example: john.smith@example.com
        createdDateTime:
          type: string
          description: Created by Date and Time
          format: date-time
          example: 2020-11-06 07:00:00+00:00
        updatedBy:
          type: string
          description: Updated by User Key
          example: johnsmith
        updatedByFullName:
          type: string
          description: Updated by User Full Name
          example: John Smith
        updatedByEmail:
          type: string
          description: Updated by User Email Address
          example: john.smith@example.com
        updatedDateTime:
          type: string
          description: Updated by Date and Time
          format: date-time
          example: 2020-11-06 07:00:00+00:00
        deletedBy:
          type: string
          description: Deleted by User Key
          example: johnsmith
        deletedByFullName:
          type: string
          description: Deleted by User Full Name
          example: John Smith
        deletedByEmail:
          type: string
          description: Deleted by User Email Address
          example: john.smith@example.com
        deletedDateTime:
          type: string
          description: Deleted by Date and Time
          format: date-time
          example: 2020-11-06 07:00:00+00:00
      description: Change log
    PrivateService:
      type: object
      properties:
        href:
          type: string
        uuid:
          type: string
    CompanyLogo:
      type: object
      properties:
        href:
          type: string
        uuid:
          type: string
        extensionType:
          type: string
    Pagination:
      required:
      - limit
      - total
      type: object
      properties:
        offset:
          minimum: 0
          type: integer
          description: Index of the first item returned in the response. The default is 0.
          default: 0
        limit:
          minimum: 0
          type: integer
          description: Maximum number of search results returned per page. Number must be between 1 and 100, and the default is 20.
          default: 20
        total:
          minimum: 0
          type: integer
          description: Total number of elements returned.
        next:
          type: string
          description: URL relative to the next item in the response.
        previous:
          type: string
          description: URL relative to the previous item in the response.
      description: Pagination response information
    CompanyMetro:
      type: object
      properties:
        href:
          type: string
        metroCode:
          type: string
    CompanyProfileSearchResponse:
      required:
      - data
      - pagination
      type: object
      properties:
        pagination:
          $ref: '#/components/schemas/Pagination'
        data:
          type: array
          items:
            $ref: '#/components/schemas/CompanyProfileResponse'
    OperatorEnum:
      type: string
      description: Comparison operators for filtering
      example: '='
    CompanyProfileSearchFilter:
      type: object
      properties:
        and:
          type: array
          items:
            $ref: '#/components/schemas/CompanyProfileSearchFilter'
        or:
          type: array
          items:
            $ref: '#/components/schemas/CompanyProfileSearchFilter'
        property:
          $ref: '#/components/schemas/CompanyProfileSearchFieldName'
        operator:
          $ref: '#/components/schemas/OperatorEnum'
        values:
          type: array
          description: Values to compare against
          example:
          - PENDING
          - PROVISIONED
          items:
            type: string
    Notification:
      type: object
    CompanyProfileState:
      type: object
    Sort:
      type: object
      properties:
        property:
          type: string
          description: Property to sort by((currently supports tags with filter syntax)
          example: /tags/@name=equinix.fabric.spotlight.category.featured
        direction:
          $ref: '#/components/schemas/CompanyProfileSortDirection'
    ServiceProfileListResponse:
      type: object
      properties:
        data:
          type: array
          description: List of service profiles
          example:
          - href: https://api.equinix.com/fabric/v4/serviceProfiles/423af68b-42f0-4f2e-9c5c-2fbd44b4b387
            uuid: 423af68b-42f0-4f2e-9c5c-2fbd44b4b387
          items:
            $ref: '#/components/schemas/CompanyServiceProfile'
    AttachTagResponse:
      required:
      - type
      - uuid
      type: object
      properties:
        href:
          type: string
          description: URL to the attached tag
          example: https://api.equinix.com/fabric/v4/tags/260af68b-42f0-4f2e-9c5c-2fbd44b4b387
        type:
          type: string
          description: Type of the tag or attachment
          example: TAG
        uuid:
          type: string
          description: Unique identifier for the tag
          example: 260af68b-42f0-4f2e-9c5c-2fbd44b4b387
        attachmentStatus:
          type: string
          description: Status of the attachment operation
          example: ATTACHED
    TagListResponse:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/TagResponse'
        pagination:
          $ref: '#/components/schemas/Pagination'
      description: Equinix Fabric Tag List Response Object
    AttachPrivateServiceResponse:
      required:
      - type
      - uuid
      type: object
      properties:
        href:
          type: string
          description: URL to the attached private service
          example: https://api.equinix.com/fabric/v4/privateServices/460af68b-42f0-4f2e-9c5c-2fbd44b4b387
        type:
          type: string
          description: Type of the private service or attachment
          example: PRIVATE_SERVICE
        uuid:
          type: string
          description: Unique identifier for the private service
          example: 460a

# --- truncated at 32 KB (32 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/equinix/refs/heads/main/openapi/equinix-company-profiles-api-openapi.yml