🎉 vox.ai 디스코드 커뮤니티가 새로 열렸어요! 참여하기 →
namespace, schema type, 선택적 version으로 public JSON Schema 1건을 조회합니다. 설명·제목·예시를 제거한 가벼운 응답이 필요하면 detail=minimal을 사용합니다.
curl --request GET \
--url https://client-api.tryvox.co/v3/schemas/{namespace}/{schema_type} \
--header 'Authorization: Bearer <token>'{
"id": "<string>",
"namespace": "<string>",
"schema_type": "<string>",
"version": "<string>",
"name": "<string>",
"source": "db",
"is_active": true,
"category": "<string>",
"description": "<string>",
"schema": {},
"created_at": 123,
"updated_at": 123
}Documentation Index
Fetch the complete documentation index at: https://docs.tryvox.co/llms.txt
Use this file to discover all available pages before exploring further.
조직 API 키를 Authorization: Bearer <token> 형식으로 보냅니다.
스키마 namespace입니다. 주로 agent-schema, flow-schema, tool-schema를 사용합니다.
namespace 안의 schema type입니다. 예: flow-data, agent-data-create, send_sms.
스키마 버전입니다. 예: v1. 생략하면 최신 버전을 사용합니다.
응답 상세 수준입니다. standard는 전체 JSON Schema를 반환하고, minimal은 description/title/examples를 제거해 더 가볍게 반환합니다.
minimal, standard 성공 응답
public schema registry 정의 1건입니다.
schema 정의 ID입니다. 같은 schema에 대해 응답 간 안정적으로 유지됩니다.
스키마 namespace입니다. 주로 agent-schema, flow-schema, tool-schema를 사용합니다.
namespace 안의 schema type입니다. 예: agent-data-create, flow-data, send_sms.
스키마 버전입니다. v1처럼 v{n} 형식입니다.
사람이 읽을 수 있는 스키마 이름입니다.
schema source label입니다. 주로 진단용이며, 클라이언트는 namespace, schema_type, version을 기준으로 사용합니다.
db, code, override 이 schema가 활성 상태인지 여부입니다. 코드 기반 schema는 항상 활성 상태입니다.
선택적 schema category입니다. 예: agent-authoring, built_in.
선택적 schema 설명입니다.
JSON Schema 본문입니다. 상세 조회와 include_schema=true 목록 응답에 포함됩니다.
리소스 생성 시각입니다. unix milliseconds 형식입니다.
리소스 마지막 수정 시각입니다. unix milliseconds 형식입니다.
Was this page helpful?
curl --request GET \
--url https://client-api.tryvox.co/v3/schemas/{namespace}/{schema_type} \
--header 'Authorization: Bearer <token>'{
"id": "<string>",
"namespace": "<string>",
"schema_type": "<string>",
"version": "<string>",
"name": "<string>",
"source": "db",
"is_active": true,
"category": "<string>",
"description": "<string>",
"schema": {},
"created_at": 123,
"updated_at": 123
}