Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save expiscornovus/bfcd54f686d596abe50d28e28002c41f to your computer and use it in GitHub Desktop.
Save expiscornovus/bfcd54f686d596abe50d28e28002c41f to your computer and use it in GitHub Desktop.
Microsoft Dataverse Search Rows schema
{
"type": "array",
"items": {
"type": "object",
"properties": {
"@@search.score": {
"type": "number"
},
"@@search.highlights": {
"type": "object",
"properties": {
"description": {
"type": "array",
"items": {
"type": "string"
}
},
"keywords": {
"type": "array",
"items": {
"type": "string"
}
},
"title": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"@@search.entityname": {
"type": "string"
},
"@@search.objectid": {
"type": "string"
},
"@@search.objecttypecode": {
"type": "integer"
},
"title": {
"type": "string"
},
"statecode": {
"type": "array",
"items": {
"type": "string"
}
},
"statuscode": {
"type": "array",
"items": {
"type": "string"
}
},
"createdon": {
"type": "string"
},
"modifiedon": {
"type": "string"
},
"keywords": {
"type": "string"
},
"msdyn_isingestedarticle": {
"type": "boolean"
},
"rating": {
"type": "integer"
},
"majorversionnumber": {
"type": "integer"
},
"isprimary": {
"type": "boolean"
},
"isrootarticle": {
"type": "boolean"
},
"islatestversion": {
"type": "boolean"
},
"description": {
"type": "string"
},
"knowledgearticleviews": {
"type": "integer"
},
"articlepublicnumber": {
"type": "string"
},
"content": {
"type": "string"
},
"@@search.languagelocaleid.logicalname": {
"type": "string"
},
"languagelocaleid": {
"type": "string"
},
"languagelocaleidname": {
"type": "string"
},
"minorversionnumber": {
"type": "integer"
},
"msdyn_isingestedarticle@OData.Community.Display.V1.FormattedValue": {
"type": "string"
},
"isprimary@OData.Community.Display.V1.FormattedValue": {
"type": "string"
},
"isrootarticle@OData.Community.Display.V1.FormattedValue": {
"type": "string"
},
"islatestversion@OData.Community.Display.V1.FormattedValue": {
"type": "string"
}
},
"required": [
"@@search.score",
"@@search.highlights",
"@@search.entityname",
"@@search.objectid",
"@@search.objecttypecode",
"title",
"statecode",
"statuscode",
"createdon",
"modifiedon",
"keywords",
"msdyn_isingestedarticle",
"rating",
"majorversionnumber",
"isprimary",
"isrootarticle",
"islatestversion",
"description",
"knowledgearticleviews",
"articlepublicnumber",
"content",
"@@search.languagelocaleid.logicalname",
"languagelocaleid",
"languagelocaleidname",
"minorversionnumber",
"msdyn_isingestedarticle@OData.Community.Display.V1.FormattedValue",
"isprimary@OData.Community.Display.V1.FormattedValue",
"isrootarticle@OData.Community.Display.V1.FormattedValue",
"islatestversion@OData.Community.Display.V1.FormattedValue"
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment