# ServiceInstance

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    ServiceInstance:
      required:
        - host
        - instanceId
        - isEphemeral
        - isExpired
        - isSecure
        - metadata
        - port
        - schema
        - serviceId
        - ttlAt
        - uri
        - weight
      type: object
      properties:
        metadata:
          type: object
          additionalProperties:
            type: string
          x-apifox-orders: []
        isEphemeral:
          type: boolean
        weight:
          type: integer
          format: int32
        isExpired:
          type: boolean
        ttlAt:
          type: integer
          format: int64
        schema:
          type: string
        host:
          type: string
        port:
          type: integer
          format: int32
        uri:
          type: string
          format: uri
        isSecure:
          type: boolean
        instanceId:
          type: string
        serviceId:
          type: string
      x-apifox-orders:
        - metadata
        - isEphemeral
        - weight
        - isExpired
        - ttlAt
        - schema
        - host
        - port
        - uri
        - isSecure
        - instanceId
        - serviceId
      x-apifox-folder: ''
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
servers:
  - url: http://dev-cn.your-api-server.com
    description: 开发环境
security:
  - bearer: []

```
