prefactor_http.models.agent_instance module
prefactor_http.models.agent_instance module
Section titled “prefactor_http.models.agent_instance module”AgentInstance data models.
class prefactor_http.models.agent_instance.ActionProfile(, create_data: Literal[‘unknown’, ‘allowed’, ‘disallowed’] = ‘unknown’, read_data: Literal[‘unknown’, ‘allowed’, ‘disallowed’] = ‘unknown’, update_data: Literal[‘unknown’, ‘allowed’, ‘disallowed’] = ‘unknown’, destroy_data: Literal[‘unknown’, ‘allowed’, ‘disallowed’] = ‘unknown’, financial_transactions: Literal[‘unknown’, ‘allowed’, ‘disallowed’] = ‘unknown’, external_communication: Literal[‘unknown’, ‘allowed’, ‘disallowed’] = ‘unknown’)
Section titled “class prefactor_http.models.agent_instance.ActionProfile(, create_data: Literal[‘unknown’, ‘allowed’, ‘disallowed’] = ‘unknown’, read_data: Literal[‘unknown’, ‘allowed’, ‘disallowed’] = ‘unknown’, update_data: Literal[‘unknown’, ‘allowed’, ‘disallowed’] = ‘unknown’, destroy_data: Literal[‘unknown’, ‘allowed’, ‘disallowed’] = ‘unknown’, financial_transactions: Literal[‘unknown’, ‘allowed’, ‘disallowed’] = ‘unknown’, external_communication: Literal[‘unknown’, ‘allowed’, ‘disallowed’] = ‘unknown’)”Bases: BaseModel
Action profile defining what actions a span type performs.
create_data
Section titled “create_data”Whether this span creates data
- Type: Literal[‘unknown’, ‘allowed’, ‘disallowed’]
read_data
Section titled “read_data”Whether this span reads data
- Type: Literal[‘unknown’, ‘allowed’, ‘disallowed’]
update_data
Section titled “update_data”Whether this span updates data
- Type: Literal[‘unknown’, ‘allowed’, ‘disallowed’]
destroy_data
Section titled “destroy_data”Whether this span destroys data
- Type: Literal[‘unknown’, ‘allowed’, ‘disallowed’]
financial_transactions
Section titled “financial_transactions”Whether this span performs financial transactions
- Type: Literal[‘unknown’, ‘allowed’, ‘disallowed’]
external_communication
Section titled “external_communication”Whether this span sends external communications
- Type: Literal[‘unknown’, ‘allowed’, ‘disallowed’]
create_data : Literal[‘unknown’, ‘allowed’, ‘disallowed’]
Section titled “create_data : Literal[‘unknown’, ‘allowed’, ‘disallowed’]”destroy_data : Literal[‘unknown’, ‘allowed’, ‘disallowed’]
Section titled “destroy_data : Literal[‘unknown’, ‘allowed’, ‘disallowed’]”external_communication : Literal[‘unknown’, ‘allowed’, ‘disallowed’]
Section titled “external_communication : Literal[‘unknown’, ‘allowed’, ‘disallowed’]”financial_transactions : Literal[‘unknown’, ‘allowed’, ‘disallowed’]
Section titled “financial_transactions : Literal[‘unknown’, ‘allowed’, ‘disallowed’]”model_config = {}
Section titled “model_config = {}”Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
read_data : Literal[‘unknown’, ‘allowed’, ‘disallowed’]
Section titled “read_data : Literal[‘unknown’, ‘allowed’, ‘disallowed’]”update_data : Literal[‘unknown’, ‘allowed’, ‘disallowed’]
Section titled “update_data : Literal[‘unknown’, ‘allowed’, ‘disallowed’]”class prefactor_http.models.agent_instance.AgentInstance(, type: Literal[‘agent_instance’], id: str, account_id: str, agent_id: str, agent_version_id: str, environment_id: str, status: Literal[‘pending’, ‘active’, ‘complete’, ‘failed’, ‘cancelled’], inserted_at: datetime, updated_at: datetime, started_at: datetime | None = None, finished_at: datetime | None = None, span_counts: AgentInstanceSpanCounts | None = None)
Section titled “class prefactor_http.models.agent_instance.AgentInstance(, type: Literal[‘agent_instance’], id: str, account_id: str, agent_id: str, agent_version_id: str, environment_id: str, status: Literal[‘pending’, ‘active’, ‘complete’, ‘failed’, ‘cancelled’], inserted_at: datetime, updated_at: datetime, started_at: datetime | None = None, finished_at: datetime | None = None, span_counts: AgentInstanceSpanCounts | None = None)”Bases: BaseModel
Agent instance model.
Resource type (always “agent_instance”)
- Type: Literal[‘agent_instance’]
Instance ID
- Type: str
account_id
Section titled “account_id”Account ID
- Type: str
agent_id
Section titled “agent_id”Agent ID
- Type: str
agent_version_id
Section titled “agent_version_id”Agent version ID
- Type: str
environment_id
Section titled “environment_id”Environment ID
- Type: str
status
Section titled “status”Instance status
- Type: AgentStatus
inserted_at
Section titled “inserted_at”When the instance was created
- Type: datetime
updated_at
Section titled “updated_at”When the instance was last updated
- Type: datetime
started_at
Section titled “started_at”When the instance started (null if not started)
- Type: datetime | None
finished_at
Section titled “finished_at”When the instance finished (null if not finished)
- Type: datetime | None
span_counts
Section titled “span_counts”Span counts for this instance
- Type: AgentInstanceSpanCounts | None
account_id : str
Section titled “account_id : str”agent_id : str
Section titled “agent_id : str”agent_version_id : str
Section titled “agent_version_id : str”environment_id : str
Section titled “environment_id : str”finished_at : datetime | None
Section titled “finished_at : datetime | None”id : str
Section titled “id : str”inserted_at : datetime
Section titled “inserted_at : datetime”model_config = {}
Section titled “model_config = {}”Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
span_counts : AgentInstanceSpanCounts | None
Section titled “span_counts : AgentInstanceSpanCounts | None”started_at : datetime | None
Section titled “started_at : datetime | None”status : AgentStatus
Section titled “status : AgentStatus”type : Literal[‘agent_instance’]
Section titled “type : Literal[‘agent_instance’]”updated_at : datetime
Section titled “updated_at : datetime”class prefactor_http.models.agent_instance.AgentInstanceSpanCounts(, total: int, pending: int, active: int, complete: int, failed: int, cancelled: int, finished: int)
Section titled “class prefactor_http.models.agent_instance.AgentInstanceSpanCounts(, total: int, pending: int, active: int, complete: int, failed: int, cancelled: int, finished: int)”Bases: BaseModel
Span counts for an agent instance.
Total number of spans
- Type: int
pending
Section titled “pending”Number of pending spans
- Type: int
active
Section titled “active”Number of active spans
- Type: int
complete
Section titled “complete”Number of completed spans
- Type: int
failed
Section titled “failed”Number of failed spans
- Type: int
cancelled
Section titled “cancelled”Number of cancelled spans
- Type: int
finished
Section titled “finished”Number of finished spans (complete + failed + cancelled)
- Type: int
active : int
Section titled “active : int”cancelled : int
Section titled “cancelled : int”complete : int
Section titled “complete : int”failed : int
Section titled “failed : int”finished : int
Section titled “finished : int”model_config = {}
Section titled “model_config = {}”Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
pending : int
Section titled “pending : int”total : int
Section titled “total : int”class prefactor_http.models.agent_instance.AgentSchemaVersionForRegister(, external_identifier: str | None = None, span_schemas: dict[str, dict] | None = None, span_result_schemas: dict[str, dict] | None = None, span_type_schemas: list[SpanTypeSchemaForCreate] | None = None)
Section titled “class prefactor_http.models.agent_instance.AgentSchemaVersionForRegister(, external_identifier: str | None = None, span_schemas: dict[str, dict] | None = None, span_result_schemas: dict[str, dict] | None = None, span_type_schemas: list[SpanTypeSchemaForCreate] | None = None)”Bases: BaseModel
Schema version information for registration.
external_identifier
Section titled “external_identifier”External identifier for the schema version
- Type: str | None
span_schemas
Section titled “span_schemas”Map of span type names to JSON schemas
- Type: dict[str, dict] | None
span_result_schemas
Section titled “span_result_schemas”Map of span type names to result JSON schemas
- Type: dict[str, dict] | None
span_type_schemas
Section titled “span_type_schemas”List of span type schema details
- Type: list[SpanTypeSchemaForCreate] | None
external_identifier : str | None
Section titled “external_identifier : str | None”model_config = {}
Section titled “model_config = {}”Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
span_result_schemas : dict[str, dict] | None
Section titled “span_result_schemas : dict[str, dict] | None”span_schemas : dict[str, dict] | None
Section titled “span_schemas : dict[str, dict] | None”span_type_schemas : list[SpanTypeSchemaForCreate] | None
Section titled “span_type_schemas : list[SpanTypeSchemaForCreate] | None”class prefactor_http.models.agent_instance.AgentVersionForRegister(, name: str | None = None, external_identifier: str | None = None, description: str | None = None)
Section titled “class prefactor_http.models.agent_instance.AgentVersionForRegister(, name: str | None = None, external_identifier: str | None = None, description: str | None = None)”Bases: BaseModel
Agent version information for registration.
Name of the agent version
- Type: str | None
external_identifier
Section titled “external_identifier”External identifier for the version (e.g., “v1.0.0”)
- Type: str | None
description
Section titled “description”Optional description of the version
- Type: str | None
description : str | None
Section titled “description : str | None”external_identifier : str | None
Section titled “external_identifier : str | None”model_config = {}
Section titled “model_config = {}”Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
name : str | None
Section titled “name : str | None”class prefactor_http.models.agent_instance.DataCategories(, personal_identifiers: Literal[‘unknown’, ‘included’, ‘excluded’] = ‘unknown’, contact_information: Literal[‘unknown’, ‘included’, ‘excluded’] = ‘unknown’, financial_information: Literal[‘unknown’, ‘included’, ‘excluded’] = ‘unknown’, health_and_medical: Literal[‘unknown’, ‘included’, ‘excluded’] = ‘unknown’, criminal_justice: Literal[‘unknown’, ‘included’, ‘excluded’] = ‘unknown’, authentication_and_secrets: Literal[‘unknown’, ‘included’, ‘excluded’] = ‘unknown’, organisational_confidential: Literal[‘unknown’, ‘included’, ‘excluded’] = ‘unknown’, minors_data: Literal[‘unknown’, ‘included’, ‘excluded’] = ‘unknown’, location_and_tracking: Literal[‘unknown’, ‘included’, ‘excluded’] = ‘unknown’, behavioural_and_inferred: Literal[‘unknown’, ‘included’, ‘excluded’] = ‘unknown’, gdpr_racial_or_ethnic_origin: Literal[‘unknown’, ‘included’, ‘excluded’] = ‘unknown’, gdpr_political_opinions: Literal[‘unknown’, ‘included’, ‘excluded’] = ‘unknown’, gdpr_religious_or_philosophical_beliefs: Literal[‘unknown’, ‘included’, ‘excluded’] = ‘unknown’, gdpr_trade_union_membership: Literal[‘unknown’, ‘included’, ‘excluded’] = ‘unknown’, gdpr_genetic_data: Literal[‘unknown’, ‘included’, ‘excluded’] = ‘unknown’, gdpr_biometric_for_identification: Literal[‘unknown’, ‘included’, ‘excluded’] = ‘unknown’, gdpr_sex_life_or_sexual_orientation: Literal[‘unknown’, ‘included’, ‘excluded’] = ‘unknown’, classification: Literal[‘unknown’, ‘public’, ‘internal’, ‘confidential’, ‘restricted’, ‘secret’] = ‘unknown’)
Section titled “class prefactor_http.models.agent_instance.DataCategories(, personal_identifiers: Literal[‘unknown’, ‘included’, ‘excluded’] = ‘unknown’, contact_information: Literal[‘unknown’, ‘included’, ‘excluded’] = ‘unknown’, financial_information: Literal[‘unknown’, ‘included’, ‘excluded’] = ‘unknown’, health_and_medical: Literal[‘unknown’, ‘included’, ‘excluded’] = ‘unknown’, criminal_justice: Literal[‘unknown’, ‘included’, ‘excluded’] = ‘unknown’, authentication_and_secrets: Literal[‘unknown’, ‘included’, ‘excluded’] = ‘unknown’, organisational_confidential: Literal[‘unknown’, ‘included’, ‘excluded’] = ‘unknown’, minors_data: Literal[‘unknown’, ‘included’, ‘excluded’] = ‘unknown’, location_and_tracking: Literal[‘unknown’, ‘included’, ‘excluded’] = ‘unknown’, behavioural_and_inferred: Literal[‘unknown’, ‘included’, ‘excluded’] = ‘unknown’, gdpr_racial_or_ethnic_origin: Literal[‘unknown’, ‘included’, ‘excluded’] = ‘unknown’, gdpr_political_opinions: Literal[‘unknown’, ‘included’, ‘excluded’] = ‘unknown’, gdpr_religious_or_philosophical_beliefs: Literal[‘unknown’, ‘included’, ‘excluded’] = ‘unknown’, gdpr_trade_union_membership: Literal[‘unknown’, ‘included’, ‘excluded’] = ‘unknown’, gdpr_genetic_data: Literal[‘unknown’, ‘included’, ‘excluded’] = ‘unknown’, gdpr_biometric_for_identification: Literal[‘unknown’, ‘included’, ‘excluded’] = ‘unknown’, gdpr_sex_life_or_sexual_orientation: Literal[‘unknown’, ‘included’, ‘excluded’] = ‘unknown’, classification: Literal[‘unknown’, ‘public’, ‘internal’, ‘confidential’, ‘restricted’, ‘secret’] = ‘unknown’)”Bases: BaseModel
Data categories present in span data.
personal_identifiers
Section titled “personal_identifiers”Personal identifiers present
- Type: Literal[‘unknown’, ‘included’, ‘excluded’]
contact_information
Section titled “contact_information”Contact information present
- Type: Literal[‘unknown’, ‘included’, ‘excluded’]
financial_information
Section titled “financial_information”Financial information present
- Type: Literal[‘unknown’, ‘included’, ‘excluded’]
health_and_medical
Section titled “health_and_medical”Health and medical data present
- Type: Literal[‘unknown’, ‘included’, ‘excluded’]
criminal_justice
Section titled “criminal_justice”Criminal justice data present
- Type: Literal[‘unknown’, ‘included’, ‘excluded’]
authentication_and_secrets
Section titled “authentication_and_secrets”Authentication and secrets present
- Type: Literal[‘unknown’, ‘included’, ‘excluded’]
organisational_confidential
Section titled “organisational_confidential”Organisational confidential data present
- Type: Literal[‘unknown’, ‘included’, ‘excluded’]
minors_data
Section titled “minors_data”Minors data present
- Type: Literal[‘unknown’, ‘included’, ‘excluded’]
location_and_tracking
Section titled “location_and_tracking”Location and tracking data present
- Type: Literal[‘unknown’, ‘included’, ‘excluded’]
behavioural_and_inferred
Section titled “behavioural_and_inferred”Behavioural and inferred data present
- Type: Literal[‘unknown’, ‘included’, ‘excluded’]
gdpr_racial_or_ethnic_origin
Section titled “gdpr_racial_or_ethnic_origin”GDPR: racial or ethnic origin
- Type: Literal[‘unknown’, ‘included’, ‘excluded’]
gdpr_political_opinions
Section titled “gdpr_political_opinions”GDPR: political opinions
- Type: Literal[‘unknown’, ‘included’, ‘excluded’]
gdpr_religious_or_philosophical_beliefs
Section titled “gdpr_religious_or_philosophical_beliefs”GDPR: religious or philosophical beliefs
- Type: Literal[‘unknown’, ‘included’, ‘excluded’]
gdpr_trade_union_membership
Section titled “gdpr_trade_union_membership”GDPR: trade union membership
- Type: Literal[‘unknown’, ‘included’, ‘excluded’]
gdpr_genetic_data
Section titled “gdpr_genetic_data”GDPR: genetic data
- Type: Literal[‘unknown’, ‘included’, ‘excluded’]
gdpr_biometric_for_identification
Section titled “gdpr_biometric_for_identification”GDPR: biometric data for identification
- Type: Literal[‘unknown’, ‘included’, ‘excluded’]
gdpr_sex_life_or_sexual_orientation
Section titled “gdpr_sex_life_or_sexual_orientation”GDPR: sex life or sexual orientation
- Type: Literal[‘unknown’, ‘included’, ‘excluded’]
classification
Section titled “classification”Classification level (unknown, public, internal, confidential, restricted, secret)
- Type: Literal[‘unknown’, ‘public’, ‘internal’, ‘confidential’, ‘restricted’, ‘secret’]
authentication_and_secrets : Literal[‘unknown’, ‘included’, ‘excluded’]
Section titled “authentication_and_secrets : Literal[‘unknown’, ‘included’, ‘excluded’]”behavioural_and_inferred : Literal[‘unknown’, ‘included’, ‘excluded’]
Section titled “behavioural_and_inferred : Literal[‘unknown’, ‘included’, ‘excluded’]”classification : Literal[‘unknown’, ‘public’, ‘internal’, ‘confidential’, ‘restricted’, ‘secret’]
Section titled “classification : Literal[‘unknown’, ‘public’, ‘internal’, ‘confidential’, ‘restricted’, ‘secret’]”contact_information : Literal[‘unknown’, ‘included’, ‘excluded’]
Section titled “contact_information : Literal[‘unknown’, ‘included’, ‘excluded’]”criminal_justice : Literal[‘unknown’, ‘included’, ‘excluded’]
Section titled “criminal_justice : Literal[‘unknown’, ‘included’, ‘excluded’]”financial_information : Literal[‘unknown’, ‘included’, ‘excluded’]
Section titled “financial_information : Literal[‘unknown’, ‘included’, ‘excluded’]”gdpr_biometric_for_identification : Literal[‘unknown’, ‘included’, ‘excluded’]
Section titled “gdpr_biometric_for_identification : Literal[‘unknown’, ‘included’, ‘excluded’]”gdpr_genetic_data : Literal[‘unknown’, ‘included’, ‘excluded’]
Section titled “gdpr_genetic_data : Literal[‘unknown’, ‘included’, ‘excluded’]”gdpr_political_opinions : Literal[‘unknown’, ‘included’, ‘excluded’]
Section titled “gdpr_political_opinions : Literal[‘unknown’, ‘included’, ‘excluded’]”gdpr_racial_or_ethnic_origin : Literal[‘unknown’, ‘included’, ‘excluded’]
Section titled “gdpr_racial_or_ethnic_origin : Literal[‘unknown’, ‘included’, ‘excluded’]”gdpr_religious_or_philosophical_beliefs : Literal[‘unknown’, ‘included’, ‘excluded’]
Section titled “gdpr_religious_or_philosophical_beliefs : Literal[‘unknown’, ‘included’, ‘excluded’]”gdpr_sex_life_or_sexual_orientation : Literal[‘unknown’, ‘included’, ‘excluded’]
Section titled “gdpr_sex_life_or_sexual_orientation : Literal[‘unknown’, ‘included’, ‘excluded’]”gdpr_trade_union_membership : Literal[‘unknown’, ‘included’, ‘excluded’]
Section titled “gdpr_trade_union_membership : Literal[‘unknown’, ‘included’, ‘excluded’]”health_and_medical : Literal[‘unknown’, ‘included’, ‘excluded’]
Section titled “health_and_medical : Literal[‘unknown’, ‘included’, ‘excluded’]”location_and_tracking : Literal[‘unknown’, ‘included’, ‘excluded’]
Section titled “location_and_tracking : Literal[‘unknown’, ‘included’, ‘excluded’]”minors_data : Literal[‘unknown’, ‘included’, ‘excluded’]
Section titled “minors_data : Literal[‘unknown’, ‘included’, ‘excluded’]”model_config = {}
Section titled “model_config = {}”Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
organisational_confidential : Literal[‘unknown’, ‘included’, ‘excluded’]
Section titled “organisational_confidential : Literal[‘unknown’, ‘included’, ‘excluded’]”personal_identifiers : Literal[‘unknown’, ‘included’, ‘excluded’]
Section titled “personal_identifiers : Literal[‘unknown’, ‘included’, ‘excluded’]”class prefactor_http.models.agent_instance.DataRisk(, action_profile: ActionProfile, params_data_categories: DataCategories, result_data_categories: DataCategories, **extra_data: Any)
Section titled “class prefactor_http.models.agent_instance.DataRisk(, action_profile: ActionProfile, params_data_categories: DataCategories, result_data_categories: DataCategories, **extra_data: Any)”Bases: BaseModel
Data risk specification for a span type.
action_profile
Section titled “action_profile”Actions this span performs
- Type: ActionProfile
params_data_categories
Section titled “params_data_categories”Data categories present in params
- Type: DataCategories
result_data_categories
Section titled “result_data_categories”Data categories present in result
- Type: DataCategories
action_profile : ActionProfile
Section titled “action_profile : ActionProfile”model_config = {‘extra’: ‘allow’}
Section titled “model_config = {‘extra’: ‘allow’}”Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
params_data_categories : DataCategories
Section titled “params_data_categories : DataCategories”result_data_categories : DataCategories
Section titled “result_data_categories : DataCategories”class prefactor_http.models.agent_instance.FinishInstanceRequest(, status: Literal[‘complete’, ‘failed’, ‘cancelled’] | None = None, timestamp: str | None = None, idempotency_key: str | None = None)
Section titled “class prefactor_http.models.agent_instance.FinishInstanceRequest(, status: Literal[‘complete’, ‘failed’, ‘cancelled’] | None = None, timestamp: str | None = None, idempotency_key: str | None = None)”Bases: BaseModel
Request to finish an agent instance.
status
Section titled “status”Optional finish status (complete, failed, cancelled)
- Type: FinishStatus | None
timestamp
Section titled “timestamp”Optional ISO 8601 timestamp (defaults to current time)
- Type: str | None
idempotency_key
Section titled “idempotency_key”Optional idempotency key
- Type: str | None
idempotency_key : str | None
Section titled “idempotency_key : str | None”model_config = {}
Section titled “model_config = {}”Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
status : FinishStatus | None
Section titled “status : FinishStatus | None”timestamp : str | None
Section titled “timestamp : str | None”class prefactor_http.models.agent_instance.RegisterAgentInstanceRequest(, agent_id: str, agent_version: AgentVersionForRegister, agent_schema_version: AgentSchemaVersionForRegister, id: str | None = None, idempotency_key: str | None = None, update_current_version: bool | None = None)
Section titled “class prefactor_http.models.agent_instance.RegisterAgentInstanceRequest(, agent_id: str, agent_version: AgentVersionForRegister, agent_schema_version: AgentSchemaVersionForRegister, id: str | None = None, idempotency_key: str | None = None, update_current_version: bool | None = None)”Bases: BaseModel
Request to register a new agent instance.
agent_id
Section titled “agent_id”ID of the agent to create an instance for
- Type: str
agent_version
Section titled “agent_version”Version information for the agent
- Type: AgentVersionForRegister
agent_schema_version
Section titled “agent_schema_version”Schema version for the agent
Optional custom ID for the instance
- Type: str | None
idempotency_key
Section titled “idempotency_key”Optional idempotency key
- Type: str | None
update_current_version
Section titled “update_current_version”Whether to update the current version
- Type: bool | None
agent_id : str
Section titled “agent_id : str”agent_schema_version : AgentSchemaVersionForRegister
Section titled “agent_schema_version : AgentSchemaVersionForRegister”id : str | None
Section titled “id : str | None”idempotency_key : str | None
Section titled “idempotency_key : str | None”model_config = {}
Section titled “model_config = {}”Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
update_current_version : bool | None
Section titled “update_current_version : bool | None”class prefactor_http.models.agent_instance.SpanTypeSchemaForCreate(, name: str, params_schema: dict, result_schema: dict | None = None, title: str | None = None, description: str | None = None, template: str | None = None, data_risk: DataRisk | None = None)
Section titled “class prefactor_http.models.agent_instance.SpanTypeSchemaForCreate(, name: str, params_schema: dict, result_schema: dict | None = None, title: str | None = None, description: str | None = None, template: str | None = None, data_risk: DataRisk | None = None)”Bases: BaseModel
Span type schema details for registration.
Name of the span type
- Type: str
params_schema
Section titled “params_schema”JSON schema for span parameters
- Type: dict
result_schema
Section titled “result_schema”Optional JSON schema for span results
- Type: dict | None
Optional human-readable title
- Type: str | None
description
Section titled “description”Optional description
- Type: str | None
template
Section titled “template”Optional template string
- Type: str | None
data_risk
Section titled “data_risk”Optional data risk classification
- Type: DataRisk | None
data_risk : DataRisk | None
Section titled “data_risk : DataRisk | None”description : str | None
Section titled “description : str | None”model_config = {}
Section titled “model_config = {}”Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
name : str
Section titled “name : str”params_schema : dict
Section titled “params_schema : dict”result_schema : dict | None
Section titled “result_schema : dict | None”template : str | None
Section titled “template : str | None”title : str | None
Section titled “title : str | None”class prefactor_http.models.agent_instance.TimestampRequest(, timestamp: str | None = None, idempotency_key: str | None = None)
Section titled “class prefactor_http.models.agent_instance.TimestampRequest(, timestamp: str | None = None, idempotency_key: str | None = None)”Bases: BaseModel
Request with optional timestamp for start/finish operations.
timestamp
Section titled “timestamp”Optional ISO 8601 timestamp (defaults to current time)
- Type: str | None
idempotency_key
Section titled “idempotency_key”Optional idempotency key
- Type: str | None
idempotency_key : str | None
Section titled “idempotency_key : str | None”model_config = {}
Section titled “model_config = {}”Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].