> ## 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 /feedback/payload_schema
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers: []
security: []
paths:
  /feedback/payload_schema:
    post:
      tags:
        - Feedback
      summary: 피드백 페이로드 스키마
      description: 샘플 행에서 피드백 페이로드 스키마(경로 및 유형)를 검색합니다.
      operationId: feedback_payload_schema_feedback_payload_schema_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/FeedbackPayloadSchemaReq'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FeedbackPayloadSchemaRes'
          description: 성공 응답
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: 검증 오류
      security:
        - HTTPBasic: []
        - HTTPBearer: []
components:
  schemas:
    FeedbackPayloadSchemaReq:
      additionalProperties: false
      description: 피드백 페이로드 스키마 탐색 요청입니다.
      properties:
        end:
          anyOf:
            - format: date-time
              type: string
            - type: 'null'
          description: 종료 시간(미포함, UTC, ISO 8601)입니다. 생략하면 현재 시간이 기본값으로 사용됩니다.
          title: End
        feedback_type:
          anyOf:
            - type: string
            - type: 'null'
          description: feedback_type으로 필터링합니다.
          title: Feedback Type
        project_id:
          title: Project Id
          type: string
        sample_limit:
          default: 2000
          description: >-
            페이로드 스키마를 탐색할 때 샘플링할 최대 고유 trigger_ref 수입니다. 각 고유
            trigger_ref(monitor/source)는 일반적으로 고정된 페이로드 구조를 가지므로, 보통 ref당 페이로드
            하나만 샘플링해도 전체 스키마를 확인하기에 충분합니다. 2,000이면 쿼리 속도를 유지하면서 사실상 대부분의 실제
            프로젝트를 포괄할 수 있고, 5,000의 하드 상한은 과도한 스캔을 방지합니다.
          maximum: 5000
          minimum: 1
          title: Sample Limit
          type: integer
        start:
          description: 시작 시간(포함, UTC, ISO 8601)입니다.
          format: date-time
          title: Start
          type: string
        trigger_ref:
          anyOf:
            - type: string
            - type: 'null'
          description: trigger_ref로 필터링합니다(all-versions의 경우 정확히 일치 또는 접두사 일치).
          title: Trigger Ref
      required:
        - project_id
        - start
      title: FeedbackPayloadSchemaReq
      type: object
    FeedbackPayloadSchemaRes:
      description: 탐색된 피드백 페이로드 경로와 유형을 포함한 응답입니다.
      properties:
        paths:
          description: 추론된 값 유형이 포함된 탐색된 리프 경로입니다.
          items:
            $ref: '#/components/schemas/FeedbackPayloadPath'
          title: Paths
          type: array
      title: FeedbackPayloadSchemaRes
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    FeedbackPayloadPath:
      additionalProperties: false
      description: 추론된 유형과 함께 피드백 페이로드에서 발견된 경로입니다.
      properties:
        json_path:
          description: 'payload 내의 점 경로입니다(예: ''output.score'').'
          title: Json Path
          type: string
        value_type:
          default: numeric
          description: 경로에 있는 값의 추론된 유형입니다.
          enum:
            - numeric
            - boolean
            - categorical
          title: Value Type
          type: string
      required:
        - json_path
      title: FeedbackPayloadPath
      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

````