{
  "graphql_types": [
    {
      "id": "gql_type_anthropic_bridge",
      "category": "type",
      "name": "AnthropicCitationBridge",
      "sdl_snippet": "type AnthropicCitationBridge {\n  documentIndex: Int\n  documentTitle: String\n  startCharIndex: Int\n  endCharIndex: Int\n  citedText: String\n}",
      "description": "Bridge fields mapping the Citation type onto the Anthropic Citations API response shape (document index/title, character span, verbatim cited text).",
      "source_note": "references/citation.graphqls (style-graphql skill), lines 83-96, citing docs.anthropic.com/en/docs/build-with-claude/citations.",
      "created_at": "2026-07-02 04:47:17",
      "cite_as": "https://subagentgraphql.com/api/graphql-types/gql_type_anthropic_bridge"
    },
    {
      "id": "gql_type_citation",
      "category": "type",
      "name": "Citation",
      "sdl_snippet": "type Citation {\n  id: ID!\n  type: CSLType!\n  title: String!\n  author: [CSLName!]\n  issued: CSLDate\n  containerTitle: String\n  publisher: String\n  url: String\n  doi: String\n  anthropic: AnthropicCitationBridge\n  prov: ProvO\n}",
      "description": "The canonical Citation GraphQL type: a strict subset of CSL-JSON v1.0.2, maps 1:1 to the Citation Zod schema (src/style-skills/citation.schema.ts). Injected into any SDL document by injectCitationType(doc).",
      "source_note": "references/citation.graphqls (style-graphql skill), lines 1-43; also summarized in SKILL.md Citation type SDL section.",
      "created_at": "2026-07-02 04:47:17",
      "cite_as": "https://subagentgraphql.com/api/graphql-types/gql_type_citation"
    },
    {
      "id": "gql_type_csldate",
      "category": "type",
      "name": "CSLDate",
      "sdl_snippet": "type CSLDate {\n  dateParts: [[Int]]\n  literal: String\n}",
      "description": "Publication date shape used by Citation.issued. dateParts is a nested array of [year, month?, day?]; literal is free text when date-parts are unavailable.",
      "source_note": "references/citation.graphqls (style-graphql skill), lines 52-57.",
      "created_at": "2026-07-02 04:47:17",
      "cite_as": "https://subagentgraphql.com/api/graphql-types/gql_type_csldate"
    },
    {
      "id": "gql_type_cslname",
      "category": "type",
      "name": "CSLName",
      "sdl_snippet": "type CSLName {\n  family: String\n  given: String\n  literal: String\n}",
      "description": "Author name shape used by Citation.author. literal is for institutional or single-name authors.",
      "source_note": "references/citation.graphqls (style-graphql skill), lines 45-50.",
      "created_at": "2026-07-02 04:47:17",
      "cite_as": "https://subagentgraphql.com/api/graphql-types/gql_type_cslname"
    },
    {
      "id": "gql_type_provenance",
      "category": "type",
      "name": "Provenance",
      "sdl_snippet": "type Provenance {\n  source: ProvenanceSource!\n  schemaRef: String\n  agentId: String\n  freshness: String\n  reviewer: String\n  reviewerPassed: Boolean\n  citations: [Citation!]!\n}",
      "description": "Provenance footer type appended to every style-skill output; mirrors the pattern from an Anthropic self-service analytics blog post. Note: SKILL.md own Provenance in GraphQL responses example shows a simpler 5-field Provenance shape (source, agentId, schemaRef, freshness, reviewer as String!) for query results -- the bundled references/citation.graphqls file defines a richer 7-field version with a ProvenanceSource enum and reviewerPassed/citations fields. Both are real, from two different places in the skill; this row documents the references/citation.graphqls version.",
      "source_note": "references/citation.graphqls (style-graphql skill), lines 111-123.",
      "created_at": "2026-07-02 04:47:34",
      "cite_as": "https://subagentgraphql.com/api/graphql-types/gql_type_provenance"
    },
    {
      "id": "gql_type_provo",
      "category": "type",
      "name": "ProvO",
      "sdl_snippet": "type ProvO {\n  wasDerivedFrom: [String!]\n  generatedAtTime: String\n  wasAttributedTo: String\n}",
      "description": "W3C PROV-O provenance fragment: wasDerivedFrom (source entity IRIs), generatedAtTime (ISO-8601), wasAttributedTo (agent IRI).",
      "source_note": "references/citation.graphqls (style-graphql skill), lines 98-109, citing w3.org/TR/prov-o/.",
      "created_at": "2026-07-02 04:47:34",
      "cite_as": "https://subagentgraphql.com/api/graphql-types/gql_type_provo"
    },
    {
      "id": "gql_type_queryresult",
      "category": "type",
      "name": "QueryResult",
      "sdl_snippet": "type QueryResult {\n  data: String!\n  citations: [Citation!]!\n  provenance: Provenance!\n}",
      "description": "Example root type shape shown in SKILL.md for a GraphQL response that contains cited content: add a provenance field to the root Query or relevant type.",
      "source_note": "SKILL.md, Provenance in GraphQL responses section, style-graphql skill.",
      "created_at": "2026-07-02 04:47:34",
      "cite_as": "https://subagentgraphql.com/api/graphql-types/gql_type_queryresult"
    }
  ]
}