> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wandb.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# 객체 생성



## OpenAPI

````yaml /ko/weave/reference/service-api/openapi.json post /obj/create
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers: []
security: []
paths:
  /obj/create:
    post:
      tags:
        - Objects
      summary: 객체 생성
      operationId: obj_create_obj_create_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ObjCreateReq'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ObjCreateRes'
          description: 성공적인 응답
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: 검증 오류
      security:
        - HTTPBasic: []
        - HTTPBearer: []
components:
  schemas:
    ObjCreateReq:
      additionalProperties: false
      properties:
        obj:
          $ref: '#/components/schemas/ObjSchemaForInsert'
      required:
        - obj
      title: ObjCreateReq
      type: object
    ObjCreateRes:
      properties:
        digest:
          title: Digest
          type: string
        object_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Object Id
      required:
        - digest
      title: ObjCreateRes
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    ObjSchemaForInsert:
      properties:
        builtin_object_class:
          anyOf:
            - type: string
            - type: 'null'
          title: Builtin Object Class
        expected_digest:
          anyOf:
            - type: string
            - type: 'null'
          description: >-
            서버 측 검증을 위한 클라이언트 계산 다이제스트입니다. 제공되면 서버는 이 값이 서버에서 계산한 다이제스트와 일치하는지
            확인합니다.
          title: Expected Digest
        object_id:
          title: Object Id
          type: string
        project_id:
          title: Project Id
          type: string
        set_base_object_class:
          anyOf:
            - type: string
            - type: 'null'
          deprecated: true
          title: Set Base Object Class
        val:
          title: Val
        wb_user_id:
          anyOf:
            - type: string
            - type: 'null'
          description: 직접 설정하지 마세요. 서버가 이 필드를 자동으로 채웁니다.
          title: Wb User Id
      required:
        - project_id
        - object_id
        - val
      title: ObjSchemaForInsert
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
  securitySchemes:
    HTTPBasic:
      scheme: basic
      type: http
    HTTPBearer:
      scheme: bearer
      type: http

````