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

# Put Artifact Alias Route



## OpenAPI

````yaml /api/openapi.json put /api/internal/regime/v2/artifact-aliases
openapi: 3.1.0
info:
  title: Sequency Graph API
  description: >

    # Sequency Graph-Native Trading API


    Graph-native API for trading intelligence, built on FalkorDB.


    ## Features


    - **Screener**: Filter stocks using graph-native queries with relationship
    expansion

    - **Stock Detail**: Complete stock context with all relationships

    - **Confluence Scoring**: Setup quality assessment with weighted components

    - **Strategy Matching**: Find matching options strategies via graph
    traversal

    - **Market Context**: Current market-wide context for trading decisions


    ## Data Sources


    All data is sourced from the FalkorDB knowledge graph, populated by:

    - Pattern detector (Go) - Technical indicators, patterns

    - Graph sync service - Levels, volume profiles, news, day classification
  version: 1.0.0
servers: []
security: []
paths:
  /api/internal/regime/v2/artifact-aliases:
    put:
      tags:
        - regime-vnext-internal
      summary: Put Artifact Alias Route
      operationId: put_artifact_alias_route_api_internal_regime_v2_artifact_aliases_put
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ArtifactAliasUpdate'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ArtifactAlias'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ArtifactAliasUpdate:
      properties:
        alias_name:
          type: string
          title: Alias Name
          default: latest
        artifact_type:
          type: string
          enum:
            - snapshot
            - evidence
            - policy
            - manifest
          title: Artifact Type
          default: evidence
        artifact_id:
          type: string
          title: Artifact Id
        asset_scope:
          $ref: '#/components/schemas/AssetScope'
        horizon_profile:
          $ref: '#/components/schemas/HorizonProfile'
        policy_status:
          type: string
          enum:
            - approved
            - unapproved
            - any
          title: Policy Status
          default: approved
        logic_version:
          type: string
          title: Logic Version
        variant:
          type: string
          title: Variant
        run_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Run Id
        decision_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Decision Id
      additionalProperties: false
      type: object
      required:
        - artifact_id
        - horizon_profile
        - logic_version
        - variant
      title: ArtifactAliasUpdate
    ArtifactAlias:
      properties:
        alias_name:
          type: string
          title: Alias Name
          default: latest
        artifact_type:
          type: string
          enum:
            - snapshot
            - evidence
            - policy
            - manifest
          title: Artifact Type
        artifact_id:
          type: string
          title: Artifact Id
        updated_at:
          type: string
          format: date-time
          title: Updated At
        asset_scope:
          $ref: '#/components/schemas/AssetScope'
        horizon_profile:
          $ref: '#/components/schemas/HorizonProfile'
        policy_status:
          type: string
          enum:
            - approved
            - unapproved
            - any
          title: Policy Status
          default: approved
        logic_version:
          type: string
          title: Logic Version
        variant:
          type: string
          title: Variant
        actor:
          anyOf:
            - type: string
            - type: 'null'
          title: Actor
        run_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Run Id
        decision_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Decision Id
        sha256:
          anyOf:
            - type: string
            - type: 'null'
          title: Sha256
      additionalProperties: false
      type: object
      required:
        - artifact_type
        - artifact_id
        - updated_at
        - asset_scope
        - horizon_profile
        - logic_version
        - variant
      title: ArtifactAlias
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    AssetScope:
      properties:
        kind:
          type: string
          enum:
            - market_index
            - symbol
            - universe
            - portfolio
          title: Kind
          default: market_index
        primary_asset:
          type: string
          title: Primary Asset
          default: SPY
        universe:
          items:
            type: string
          type: array
          maxItems: 500
          title: Universe
      additionalProperties: false
      type: object
      title: AssetScope
    HorizonProfile:
      type: string
      enum:
        - macro
        - swing
        - intraday
      title: HorizonProfile
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````