TVU Networks Object API

TVU object and tangible model — the REST and GraphQL surface over TVU objects, tangibles, relationships and tags that gives every TVU resource (pack, receiver, grid, SDI port, shared memory) an addressable identity. Contract assembled from the 14 per-endpoint OpenAPI 3.0.1 exports TVU publishes on its own API documentation site.

Operations 14

PUT /api/objectd/v1/attr update object attributes #
GET /api/objectd/v1/attr get objects' attribute #
GET /api/objectd/v1/attr/object Get objects with the attribute set to a specific value. #
GET /api/objectd/v1/attr/publicslug/true Get objects with the publicslug attribute set to true. #
POST /api/objectd/v1/attrv2 get objects' single attribute #
GET /api/objectd/v1/o/{objectId} object #
GET /api/objectd/v1/object get object #
POST /api/objectd/v1/query notifyGroupsEvents #
GET /api/objectd/v1/t/{resourceType}/{tangibleId} tangible #
GET /api/objectd/v1/t/{resourceType}/{tangibleId}/{subType}/{id} tangible 2 #
POST /api/objectd/v1/tag create object tag #
PUT /api/objectd/v1/tag update object tag #
DELETE /api/objectd/v1/tag delete object tag #
GET /api/objectd/v1/tag get object tag #

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/object-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 email required.

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

OpenAPI Specification

tvu-networks-object-api-openapi.yml Raw ↑
openapi: 3.0.1
info:
  title: TVU Networks — Object API
  description: Object API operations of the TVU Networks public HTTP API, assembled verbatim from the
    per-endpoint OpenAPI 3.0.1 exports TVU publishes on its own Apifox documentation site (https://docs.tvunetworks.cn/).
    Each operation body is the provider's own export; only grouping, servers[] and operationId backfill
    were added by API Evangelist.
  version: 1.0.0
  contact:
    name: TVU Networks
    url: https://www.tvunetworks.com/tvu-developer/
servers:
- url: https://api.tvunetworks.com
  description: Prod Env default server
- url: https://mma.tvunetworks.com
  description: Apifox server "MMA"
paths:
  /api/objectd/v1/attr:
    put:
      summary: update object attributes
      deprecated: false
      description: ''
      operationId: /api/objectd/v1/attr
      tags:
      - Object API/RESTful
      parameters:
      - name: SID
        in: cookie
        description: ''
        required: false
        example: '{{SID}}'
        schema:
          type: string
          default: '{{SID}}'
      - name: object01
        in: cookie
        description: ''
        required: false
        example: 01daily1
        schema:
          type: string
          default: 01daily1
      - name: SID
        in: header
        description: ''
        example: 92575d36dcb631ac94745e6b157de17a5a13d65b31e44869f06854ab928dd80235d4daae8696b4a92a7be5f802c45a219648701fc9ca59f44e9c0f022d5d38a7
        schema:
          type: string
          default: 92575d36dcb631ac94745e6b157de17a5a13d65b31e44869f06854ab928dd80235d4daae8696b4a92a7be5f802c45a219648701fc9ca59f44e9c0f022d5d38a7
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                actions:
                  type: array
                  items:
                    type: object
                    properties:
                      objectId:
                        type: string
                        description: The objectId to update. The parameters `objectId` and `objectIdList`
                          must include at least one of them. | | objectIdList | yes | []string | The objectIds
                          to update. The parameters `objectId` and `objectIdList` must include at least
                          one of them.|
                      objectIdList:
                        type: array
                        items:
                          type: string
                        description: The objectId List to update. The parameters `objectId` and `objectIdList`
                          must include at least one of them. | | objectIdList | yes | []string | The objectIds
                          to update. The parameters `objectId` and `objectIdList` must include at least
                          one of them.|
                      attrName:
                        type: string
                        description: 'Properties to be updated are currently supported:

                          `tag` Update the tag list.

                          `admin.users` Update the user list for admin permissions.

                          `admin.groups` Update the group list for admin permissions.

                          `owner.users` Update the user list for owner permissions.

                          `owner.groups` Update the group list for owner permissions.

                          `feature.{featureName}.users` Update the user list for feature permissions,
                          where featureName is the name of the corresponding feature.

                          `feature.{featureName}.groups`  Update the group list for feature permissions,
                          where featureName is the name of the corresponding feature.

                          `attributes.{attributesName}`  Update attributes, where attributesName is the
                          name of the corresponding attribute.'
                      operator:
                        type: string
                        description: 'Currently, three types of update operations are supported:  `add`
                          means to add a new element, `remove` means  to delete a specific element, `update`
                          means to overwrite all values. `remove_all` means to delete all element.'
                      attrValue:
                        type: array
                        items:
                          type: string
                        description: The attribute values to be changed.
                    required:
                    - objectId
                    - attrName
                    - operator
                    - attrValue
                    - objectIdList
                    x-apifox-orders:
                    - objectId
                    - objectIdList
                    - attrName
                    - operator
                    - attrValue
                  description: Update the task list
              required:
              - actions
              x-apifox-orders:
              - actions
            example:
              actions:
              - objectId: '1'
                attrName: feature.takelive.groups
                operator: remove_all
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  errorInfo:
                    type: string
                required:
                - errorCode
                - errorInfo
                x-apifox-orders:
                - errorCode
                - errorInfo
              example:
                errorCode: '0x0'
                errorInfo: Succ
          headers: {}
          x-apifox-name: Success
      security:
      - bearer: []
        x-apifox:
          schemeGroups:
          - id: 0TWm6z0znVGySCUfQa4dZ
            schemeIds:
            - bearer
          required: true
          use:
            id: 0TWm6z0znVGySCUfQa4dZ
          scopes:
            0TWm6z0znVGySCUfQa4dZ:
              bearer: []
      x-apifox-folder: Object API/RESTful
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/4126232/apis/api-321782315-run
      x-source-doc: https://docs.tvunetworks.cn/api-321782315.md
    get:
      summary: get objects' attribute
      deprecated: false
      description: ''
      operationId: /api/objectd/v1/attr
      tags:
      - Object API/RESTful
      parameters:
      - name: SID
        in: cookie
        description: ''
        required: false
        example: '{{SID}}'
        schema:
          type: string
          default: '{{SID}}'
      - name: object01
        in: cookie
        description: ''
        required: false
        example: 01daily1
        schema:
          type: string
          default: 01daily1
      - name: objectIds
        in: query
        description: Object ID list.
        required: true
        schema:
          type: array
          items:
            type: string
      - name: attrName
        in: query
        description: 'Get attribute values, currently supported:

          `attributes.{attributesName}`  get attributes, where attributesName is the name of the corresponding
          attribute.

          `attributes.{attributesName1}.{attributesName2}.{attributesName3}....` get more attributes'
        required: true
        schema:
          type: string
      - name: SID
        in: header
        description: ''
        example: 92575d36dcb631ac94745e6b157de17a5a13d65b31e44869f06854ab928dd80235d4daae8696b4a92a7be5f802c45a219648701fc9ca59f44e9c0f022d5d38a7
        schema:
          type: string
          default: 92575d36dcb631ac94745e6b157de17a5a13d65b31e44869f06854ab928dd80235d4daae8696b4a92a7be5f802c45a219648701fc9ca59f44e9c0f022d5d38a7
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  errorInfo:
                    type: string
                  result:
                    type: array
                    items:
                      type: object
                      properties:
                        objectId:
                          type: string
                          description: the ID of the Object
                        attrName:
                          type: string
                          description: The attrName of the search. If there are multiple attributes obtained,
                            only return the first attribute (this is done for compatibility, as it may
                            be deleted at any time in the future)
                        attrValue:
                          type: array
                          items:
                            type: string
                          description: the value of the attrName. If there are multiple attributes obtained,
                            only return the first attribute (this is done for compatibility, as it may
                            be deleted at any time in the future)
                        attrList:
                          type: array
                          items:
                            type: object
                            properties:
                              attrName:
                                type: string
                              attrValue:
                                type: string
                            x-apifox-orders:
                            - attrName
                            - attrValue
                          description: Multi-attribute list
                      required:
                      - objectId
                      - attrList
                      x-apifox-orders:
                      - objectId
                      - attrName
                      - attrValue
                      - attrList
                    description: the result of the search
                required:
                - errorCode
                - errorInfo
                - result
                x-apifox-orders:
                - errorCode
                - errorInfo
                - result
              example:
                errorCode: '0x0'
                errorInfo: Succ
          headers: {}
          x-apifox-name: Success
      security:
      - bearer: []
        x-apifox:
          schemeGroups:
          - id: MIMjJB3ScwoFqBgWMdgcm
            schemeIds:
            - bearer
          required: true
          use:
            id: MIMjJB3ScwoFqBgWMdgcm
          scopes:
            MIMjJB3ScwoFqBgWMdgcm:
              bearer: []
      x-apifox-folder: Object API/RESTful
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/4126232/apis/api-321782318-run
      x-source-doc: https://docs.tvunetworks.cn/api-321782318.md
  /api/objectd/v1/attr/object:
    get:
      summary: Get objects with the attribute set to a specific value.
      deprecated: false
      description: Get object where the attribute equals a specific value.
      tags:
      - Object API/RESTful
      parameters:
      - name: sharerecording
        in: query
        description: ''
        required: false
        example: '"true"'
        schema:
          type: string
      - name: publicslug
        in: query
        description: ''
        required: false
        example: '"true"'
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  errorInfo:
                    type: string
                  result:
                    type: array
                    items:
                      type: string
                    description: the result of the search
                  01K0BCJYQHTYCWATY4H3VBCZ3K:
                    type: string
                required:
                - errorCode
                - errorInfo
                - result
                - 01K0BCJYQHTYCWATY4H3VBCZ3K
                x-apifox-orders:
                - errorCode
                - errorInfo
                - result
                - 01K0BCJYQHTYCWATY4H3VBCZ3K
              example:
                errorCode: '0x0'
                errorInfo: Succ
                result:
                - 1031xxxxxxxx0951552
          headers: {}
          x-apifox-name: Success
      security: []
      x-apifox-folder: Object API/RESTful
      x-apifox-status: developing
      x-run-in-apifox: https://app.apifox.com/web/project/4126232/apis/api-465089519-run
      operationId: Get_objects_with_the_attribute_set_to_a_specific_value_465089519
      x-source-doc: https://docs.tvunetworks.cn/api-465089519.md
  /api/objectd/v1/attr/publicslug/true:
    get:
      summary: Get objects with the publicslug attribute set to true.
      deprecated: false
      description: Get objects with the publicslug attribute set to true.
      operationId: /api/objectd/v1/attrv2
      tags:
      - Object API/RESTful
      parameters:
      - name: SID
        in: cookie
        description: ''
        required: false
        example: '{{SID}}'
        schema:
          type: string
          default: '{{SID}}'
      - name: object01
        in: cookie
        description: ''
        required: false
        example: 01daily1
        schema:
          type: string
          default: 01daily1
      - name: SID
        in: header
        description: ''
        example: 92575d36dcb631ac94745e6b157de17a5a13d65b31e44869f06854ab928dd80235d4daae8696b4a92a7be5f802c45a219648701fc9ca59f44e9c0f022d5d38a7
        schema:
          type: string
          default: 92575d36dcb631ac94745e6b157de17a5a13d65b31e44869f06854ab928dd80235d4daae8696b4a92a7be5f802c45a219648701fc9ca59f44e9c0f022d5d38a7
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  errorInfo:
                    type: string
                  result:
                    type: array
                    items:
                      type: string
                    description: the result of the search
                required:
                - errorCode
                - errorInfo
                - result
                x-apifox-orders:
                - errorCode
                - errorInfo
                - result
              example:
                errorCode: '0x0'
                errorInfo: Succ
          headers: {}
          x-apifox-name: Success
      security:
      - bearer: []
        x-apifox:
          schemeGroups:
          - id: wjW8R6Ce6AVHcdyVwV1t8
            schemeIds:
            - bearer
          required: true
          use:
            id: wjW8R6Ce6AVHcdyVwV1t8
          scopes:
            wjW8R6Ce6AVHcdyVwV1t8:
              bearer: []
      x-apifox-folder: Object API/RESTful
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/4126232/apis/api-321782321-run
      x-source-doc: https://docs.tvunetworks.cn/api-321782321.md
  /api/objectd/v1/attrv2:
    post:
      summary: get objects' single attribute
      deprecated: false
      description: get objects' single attribute value.
      operationId: /api/objectd/v1/attrv2
      tags:
      - Object API/RESTful
      parameters:
      - name: SID
        in: cookie
        description: ''
        required: false
        example: '{{SID}}'
        schema:
          type: string
          default: '{{SID}}'
      - name: object01
        in: cookie
        description: ''
        required: false
        example: 01daily1
        schema:
          type: string
          default: 01daily1
      - name: SID
        in: header
        description: ''
        example: 92575d36dcb631ac94745e6b157de17a5a13d65b31e44869f06854ab928dd80235d4daae8696b4a92a7be5f802c45a219648701fc9ca59f44e9c0f022d5d38a7
        schema:
          type: string
          default: 92575d36dcb631ac94745e6b157de17a5a13d65b31e44869f06854ab928dd80235d4daae8696b4a92a7be5f802c45a219648701fc9ca59f44e9c0f022d5d38a7
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                objectIds:
                  type: array
                  items:
                    type: string
                attrName:
                  type: string
              required:
              - objectIds
              - attrName
              x-apifox-orders:
              - objectIds
              - attrName
            example:
              objectIds:
              - testobjectid
              attrName: publicslug
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  errorInfo:
                    type: string
                  result:
                    type: array
                    items:
                      type: object
                      properties:
                        objectId:
                          type: string
                          description: the ID of the Object
                        attrValue:
                          type: array
                          items:
                            type: string
                          description: 'the value of the attrName. '
                      required:
                      - objectId
                      x-apifox-orders:
                      - objectId
                      - attrValue
                    description: the result of the search
                required:
                - errorCode
                - errorInfo
                - result
                x-apifox-orders:
                - errorCode
                - errorInfo
                - result
              example:
                errorCode: '0x0'
                errorInfo: Succ
          headers: {}
          x-apifox-name: Success
      security:
      - bearer: []
        x-apifox:
          schemeGroups:
          - id: xCEQT7j-SDDUtrlggl0bN
            schemeIds:
            - bearer
          required: true
          use:
            id: xCEQT7j-SDDUtrlggl0bN
          scopes:
            xCEQT7j-SDDUtrlggl0bN:
              bearer: []
      x-apifox-folder: Object API/RESTful
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/4126232/apis/api-321782319-run
      x-source-doc: https://docs.tvunetworks.cn/api-321782319.md
  /api/objectd/v1/o/{objectId}:
    get:
      summary: object
      deprecated: false
      description: Retrieve all attributes of an object using its objectID.
      operationId: /api/objectd/v1/o/{objectId}
      tags:
      - Object API/RESTful/res.tvu.ai
      parameters:
      - name: SID
        in: cookie
        description: ''
        required: false
        example: '{{SID}}'
        schema:
          type: string
          default: '{{SID}}'
      - name: object01
        in: cookie
        description: ''
        required: false
        example: 01daily1
        schema:
          type: string
          default: 01daily1
      - name: objectId
        in: path
        description: Search for object ID.
        required: true
        example: '1031567587869343744'
        schema:
          type: string
      - name: SID
        in: header
        description: ''
        example: 92575d36dcb631ac94745e6b157de17a5a13d65b31e44869f06854ab928dd80235d4daae8696b4a92a7be5f802c45a219648701fc9ca59f44e9c0f022d5d38a7
        schema:
          type: string
          default: 92575d36dcb631ac94745e6b157de17a5a13d65b31e44869f06854ab928dd80235d4daae8696b4a92a7be5f802c45a219648701fc9ca59f44e9c0f022d5d38a7
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                    description: Error Code
                  errorInfo:
                    type: string
                    description: Error Info
                  data:
                    type: object
                    properties:
                      admin:
                        type: object
                        properties: {}
                        description: Admin information.
                        x-apifox-orders: []
                      createTimestamp:
                        type: integer
                        description: Create Time Stamp.
                      deleteFlag:
                        type: integer
                        description: Delete Flag.
                      description:
                        type: string
                        description: Description
                      dmaEmbargo:
                        type: boolean
                      features:
                        type: array
                        items:
                          type: object
                          properties:
                            feature:
                              type: string
                            groups:
                              type: array
                              items:
                                type: string
                            users:
                              type: array
                              items:
                                type: string
                          required:
                          - feature
                          - groups
                          - users
                          x-apifox-orders:
                          - feature
                          - groups
                          - users
                        description: Feature information.
                      objectId:
                        type: string
                        description: Object Id.
                      objectName:
                        type: string
                        description: Object Name.
                      objectType:
                        type: integer
                        description: Object Type.
                      origin:
                        type: string
                      owner:
                        type: object
                        properties:
                          groups:
                            type: array
                            items:
                              type: string
                          users:
                            type: array
                            items:
                              type: string
                        required:
                        - groups
                        - users
                        description: Owner information.
                        x-apifox-orders:
                        - groups
                        - users
                      updateTimestamp:
                        type: integer
                        description: Update Timestamp.
                    required:
                    - admin
                    - createTimestamp
                    - deleteFlag
                    - description
                    - dmaEmbargo
                    - features
                    - objectId
                    - objectName
                    - objectType
                    - origin
                    - owner
                    - updateTimestamp
                    x-apifox-orders:
                    - admin
                    - createTimestamp
                    - deleteFlag
                    - description
                    - dmaEmbargo
                    - features
                    - objectId
                    - objectName
                    - objectType
                    - origin
                    - owner
                    - updateTimestamp
                required:
                - errorCode
                - errorInfo
                - data
                x-apifox-orders:
                - errorCode
                - errorInfo
                - data
              example:
                errorCode: '0x0'
                errorInfo: ''
                data:
                  admin: {}
                  createTimestamp: 1716788770513
                  deleteFlag: 0
                  description: ''
                  dmaEmbargo: false
                  features:
                  - feature: owner
                    groups:
                    - f16e0c01d4744120b90f66a0830c6e89
                    users:
                    - 657b96d5bd74468e8872c2fc75fa3ec6
                  - feature: livepreview
                    groups:
                    - f16e0c01d4744120b90f66a0830c6e89
                    users:
                    - 657b96d5bd74468e8872c2fc75fa3ec6
                  - feature: rec
                    groups:
                    - f16e0c01d4744120b90f66a0830c6e89
                    users:
                    - 657b96d5bd74468e8872c2fc75fa3ec6
                  - feature: takelive
                    groups:
                    - f16e0c01d4744120b90f66a0830c6e89
                    users:
                    - 657b96d5bd74468e8872c2fc75fa3ec6
                  objectId: '1031567587869343744'
                  objectName: 60-1_MRO輪島
                  objectType: 1
                  origin: ''
                  owner:
                    groups:
                    - f16e0c01d4744120b90f66a0830c6e89
                    users:
                    - 657b96d5bd74468e8872c2fc75fa3ec6
                  updateTimestamp: 1716788770513
          headers: {}
          x-apifox-name: Success
      security:
      - bearer: []
        x-apifox:
          schemeGroups:
          - id: XS2drDxN5BGY1qGm_ZV-Z
            schemeIds:
            - bearer
          required: true
          use:
            id: XS2drDxN5BGY1qGm_ZV-Z
          scopes:
            XS2drDxN5BGY1qGm_ZV-Z:
              bearer: []
      x-apifox-folder: Object API/RESTful/res.tvu.ai
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/4126232/apis/api-321782322-run
      x-source-doc: https://docs.tvunetworks.cn/api-321782322.md
  /api/objectd/v1/object:
    get:
      summary: get object
      deprecated: false
      description: get object by id.
      tags:
      - Object API/RESTful
      parameters:
      - name: SID
        in: cookie
        description: ''
        required: false
        example: '{{SID}}'
        schema:
          type: string
          default: '{{SID}}'
      - name: object01
        in: cookie
        description: ''
        required: false
        example: 01daily1
        schema:
          type: string
          default: 01daily1
      - name: objectIds
        in: query
        description: The ID list of the object.
        required: false
        schema:
          type: array
          items:
            type: string
      - name: userid
        in: header
        description: ''
        required: true
        example: 95cd9476f8d74ad0a4b2be0d78b0ccb1
        schema:
          type: string
      - name: email
        in: header
        description: ''
        required: true
        example: aidenhuang@tvunetworks.com
        schema:
          type: string
      - name: Authorization
        in: header
        description: ''
        required: true
        example: 6913920FB3EE4E3EAD6A788423D0DF16
        schema:
          type: string
      - name: tagvalue
        in: header
        description: ''
        required: true
        example: stage
        schema:
          type: string
      - name: SID
        in: header
        description: ''
        example: 92575d36dcb631ac94745e6b157de17a5a13d65b31e44869f06854ab928dd80235d4daae8696b4a92a7be5f802c45a219648701fc9ca59f44e9c0f022d5d38a7
        schema:
          type: string
          default: 92575d36dcb631ac94745e6b157de17a5a13d65b31e44869f06854ab928dd80235d4daae8696b4a92a7be5f802c45a219648701fc9ca59f44e9c0f022d5d38a7
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  errorCode:
                    type: string
                  errorInfo:
                    type: string
                  result:
                    type: array
                    items:
                      type: object
                      properties:
                        owner:
                          type: object
                          properties:
                            groups:
                              type: array
                              items:
                                type: string
                            users:
                              type: array
                              items:
                                type: string
                          required:
                          - groups
                          - users
                          x-apifox-orders:
                          - groups
                          - users
                        features:
                          type: array
                          items:
                            type: object
                            properties:
                              feature:
                                type: string
                              groups:
                                type: array
                                items:
                                  type: string
                            required:
                            - feature
                            - groups
                            x-apifox-orders:
                            - feature
                            - groups
                        origin:
                          type: string
                        objectName:
                          type: string
                        admin:
                          type: object
                          properties:
                            groups:
                              type: array
                              items:
                                type: string
                            users:
                              type: array
                              items:
                                type: string
                          required:
                          - groups
                          - users
                          x-apifox-orders:
                          - groups
                          - users
                        description:
                          type: string
                        attributes:
                          type: array
                          items:
                            type: object
                            properties:
                              attrValue:
                                type: array
                                items:
                                  type: string
                              attrName:
                                type: string
                            x-apifox-orders:
                            - attrValue
                            - attrName
                        location:
                          type: array
                          items:
                            type: string
                        objectId:
                          type: string
                        updateTimestamp:
                          type: integer
                        createTimestamp:
                          type: integer
                        objectType:
                          type: integer
                      x-apifox-orders:
                      - owner
                      - features
                      - origin
                      - objectName
                      - admin
                      - description
                      - attributes
                      - location
                      - objectId
                      - updateTimestamp
                      - createTimestamp
                      - objectType
       

# --- truncated at 32 KB (74 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/tvu-networks/refs/heads/main/openapi/tvu-networks-object-api-openapi.yml