FacetFlux
pim.schemas.set.defaultAiRole
Set the schema's default LLM role/context (the system-prompt-style preamble used in AI ops). Pass null to clear. Response: { schemaId, defaultAiRole }. Errors: { error: { code: 'not_found' | 'bad_input', ... } }.
Remote revuo:facetflux
Other tools also called pim.schemas.set.defaultAiRole?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"schemaId": {
"description": "Schema id.",
"type": "string"
},
"defaultAiRole": {
"description": "Default role text. Plain text only — no HTML/XML markup.",
"type": [
"string",
"null"
]
}
},
"required": [
"schemaId",
"defaultAiRole"
]
}