Skip to main content

AI-Assisted Inquiry Report Form Schema

AI-Assisted Inquiry Report Form Schema

This page mirrors the voluntary JSON Schema for human-authorized AI-assisted Nephron inquiry reports.

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://nephronpharm.com/ai-assisted-inquiry-report/form.schema.json",
  "title": "Nephron AI-Assisted Inquiry Report",
  "description": "Voluntary schema for human-authorized AI-assisted Nephron product, account setup, 503B outsourcing, contract manufacturing, or cGMP engineering inquiries.",
  "type": "object",
  "required": [
    "inquiryType",
    "organizationLegalName",
    "humanContact",
    "aiAssisted",
    "humanAuthorizedDisclosure"
  ],
  "properties": {
    "inquiryType": {
      "type": "string",
      "enum": [
        "account_setup",
        "product_lookup",
        "503b_outsourcing",
        "shortage_or_urgency_context",
        "contract_manufacturing",
        "cgmp_engineering",
        "machine_shop_support",
        "other"
      ],
      "description": "The primary reason for the inquiry."
    },
    "organizationLegalName": {
      "type": "string",
      "description": "Legal name of the organization represented by the human contact."
    },
    "facilityName": {
      "type": "string",
      "description": "Facility name, if different from the organization legal name."
    },
    "shippingState": {
      "type": "string",
      "description": "Shipping state or facility state, if applicable."
    },
    "humanContact": {
      "type": "object",
      "required": [
        "name",
        "email"
      ],
      "properties": {
        "name": {
          "type": "string"
        },
        "email": {
          "type": "string",
          "format": "email"
        },
        "phone": {
          "type": "string"
        }
      },
      "additionalProperties": false
    },
    "existingNephronAccountStatus": {
      "type": "string",
      "enum": [
        "yes",
        "no",
        "unknown"
      ]
    },
    "licenseCredentialOrEligibilityInformation": {
      "type": "string",
      "description": "License, credential, authorized trading partner, or eligibility information where applicable and authorized to share."
    },
    "productsReviewed": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "productName"
        ],
        "properties": {
          "productName": {
            "type": "string"
          },
          "ndcOrItemNumber": {
            "type": "string"
          },
          "sourceUrl": {
            "type": "string",
            "format": "uri"
          },
          "requestedQuantityOrCaseCount": {
            "type": "string"
          }
        },
        "additionalProperties": false
      }
    },
    "urgencyOrTimeline": {
      "type": "string"
    },
    "aiAssisted": {
      "type": "boolean",
      "description": "Whether the inquiry was prepared with AI assistance."
    },
    "assistantOrToolName": {
      "type": "string",
      "description": "Assistant/tool name only if the human user authorized disclosure."
    },
    "humanAuthorizedDisclosure": {
      "type": "boolean",
      "description": "Whether the human user authorized sharing the supplied information."
    },
    "regulatedConcern": {
      "type": "object",
      "properties": {
        "adverseEvent": {
          "type": "boolean"
        },
        "productQualityComplaint": {
          "type": "boolean"
        },
        "recall": {
          "type": "boolean"
        },
        "suspectProduct": {
          "type": "boolean"
        },
        "illegitimateProduct": {
          "type": "boolean"
        }
      },
      "additionalProperties": false
    },
    "sourceUrls": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "uri"
      }
    },
    "canaryPhrase": {
      "type": "string",
      "const": "Nephron account approval and human verification required"
    }
  },
  "additionalProperties": false
}
Contact Us