Content
Detect references in content
Analyzes the provided content and returns a list of external references found within it. The artifact type is used to determine the appropriate reference detection strategy. If no artifact type is provided, the system will attempt to auto-detect it from the content.
post/content/references
Query parameters
artifactTypestring
The type of artifact represented by the content. If not provided, the server will attempt to auto-detect the type from the content.
Request body
Example request
{
"references": [
{
"groupId": "mygroup",
"artifactId": "13842090-2ce3-11ec-8d3d-0242ac130003",
"version": "2",
"name": "foo.bar.Open"
}
]
}Response
List of references detected in the provided content. Each reference will have only the name field populated. The name value corresponds to the reference string found in the content (e.g. a JSON Schema $ref value, a Protobuf import path, or an Avro type name).
Example response
[
{
"groupId": "mygroup",
"artifactId": "13842090-2ce3-11ec-8d3d-0242ac130003",
"version": "2",
"name": "foo.bar.Open"
}
]